StorySectionCfg.lua 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265
  1. local StorySectionCfg = {
  2. [10002]={
  3. ['Id']=10002,
  4. ['Type']=3,
  5. ['Content']={{12162,1},'Congratulation','Card12162'},
  6. ['ArtType']=1,
  7. ['ArtRes']='Card_ic/card_dazuiniao01',
  8. ['StartDropMoveTime']=0,
  9. ['StartDropDlgId']=0,
  10. ['EndDropDlgId']=0,
  11. ['ClickDlgId']=1740,
  12. ['TriggerDlgId']=1740,
  13. ['CanSkip']=true,
  14. ['ForceGuideId']=0,
  15. },
  16. [10013]={
  17. ['Id']=10013,
  18. ['Type']=1,
  19. ['Content']={54},
  20. ['ArtType']=1,
  21. ['ArtRes']='UIFunOpen/ic_open_activity',
  22. ['StartDropMoveTime']=0,
  23. ['StartDropDlgId']=0,
  24. ['EndDropDlgId']=0,
  25. ['ClickDlgId']=179,
  26. ['TriggerDlgId']=169,
  27. ['CanSkip']=true,
  28. ['ForceGuideId']=0,
  29. },
  30. [100006]={
  31. ['Id']=100006,
  32. ['Type']=3,
  33. ['Content']={{517,2},'Congratulation','Item507'},
  34. ['ArtType']=1,
  35. ['ArtRes']='Common/ic_res_petpiece_mvp',
  36. ['StartDropPos']={-900,-80},
  37. ['StartDropMoveTime']=1.0,
  38. ['StartDropDlgId']=262,
  39. ['EndDropDlgId']=0,
  40. ['ClickDlgId']=264,
  41. ['TriggerDlgId']=264,
  42. ['CanSkip']=true,
  43. ['ForceGuideId']=0,
  44. },
  45. [100012]={
  46. ['Id']=100012,
  47. ['Type']=3,
  48. ['Content']={{101,2},'Congratulation','Item101'},
  49. ['ArtType']=1,
  50. ['ArtRes']='Items/elunium',
  51. ['StartDropPos']={306,-80},
  52. ['StartDropMoveTime']=1.0,
  53. ['StartDropDlgId']=0,
  54. ['EndDropDlgId']=0,
  55. ['ClickDlgId']=265,
  56. ['TriggerDlgId']=265,
  57. ['CanSkip']=true,
  58. ['ForceGuideId']=0,
  59. },
  60. [100018]={
  61. ['Id']=100018,
  62. ['Type']=3,
  63. ['Content']={{494,10},'Congratulation','Item494'},
  64. ['ArtType']=1,
  65. ['ArtRes']='Items/Item_RandomStone',
  66. ['StartDropMoveTime']=0,
  67. ['StartDropDlgId']=0,
  68. ['EndDropDlgId']=0,
  69. ['ClickDlgId']=266,
  70. ['TriggerDlgId']=266,
  71. ['CanSkip']=true,
  72. ['ForceGuideId']=0,
  73. },
  74. [100024]={
  75. ['Id']=100024,
  76. ['Type']=3,
  77. ['Content']={{115,2},'Congratulation','Item115'},
  78. ['ArtType']=1,
  79. ['ArtRes']='Common/ic_moon_key',
  80. ['StartDropPos']={921,46},
  81. ['StartDropMoveTime']=1.0,
  82. ['StartDropDlgId']=0,
  83. ['EndDropDlgId']=0,
  84. ['ClickDlgId']=267,
  85. ['TriggerDlgId']=267,
  86. ['CanSkip']=true,
  87. ['ForceGuideId']=0,
  88. },
  89. [100030]={
  90. ['Id']=100030,
  91. ['Type']=3,
  92. ['Content']={{12840,5},'Congratulation','Item12840'},
  93. ['ArtType']=1,
  94. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  95. ['StartDropMoveTime']=0,
  96. ['StartDropDlgId']=0,
  97. ['EndDropDlgId']=0,
  98. ['ClickDlgId']=268,
  99. ['TriggerDlgId']=268,
  100. ['CanSkip']=true,
  101. ['ForceGuideId']=0,
  102. },
  103. [100036]={
  104. ['Id']=100036,
  105. ['Type']=3,
  106. ['Content']={607,'Congratulation','Item607'},
  107. ['ArtType']=1,
  108. ['ArtRes']='Items/EquipmentBox3',
  109. ['StartDropMoveTime']=0,
  110. ['StartDropDlgId']=0,
  111. ['EndDropDlgId']=0,
  112. ['ClickDlgId']=269,
  113. ['TriggerDlgId']=269,
  114. ['CanSkip']=true,
  115. ['ForceGuideId']=0,
  116. },
  117. [100042]={
  118. ['Id']=100042,
  119. ['Type']=3,
  120. ['Content']={{11,50000},'Congratulation','Item11'},
  121. ['ArtType']=1,
  122. ['ArtRes']='Common/ic_res_skillexp',
  123. ['StartDropMoveTime']=0,
  124. ['StartDropDlgId']=0,
  125. ['EndDropDlgId']=0,
  126. ['ClickDlgId']=270,
  127. ['TriggerDlgId']=270,
  128. ['CanSkip']=true,
  129. ['ForceGuideId']=0,
  130. },
  131. [100048]={
  132. ['Id']=100048,
  133. ['Type']=1,
  134. ['Content']={65},
  135. ['ArtType']=1,
  136. ['ArtRes']='UIFunOpen/ic_open_keepsake',
  137. ['StartDropPos']={275,427},
  138. ['StartDropMoveTime']=1.0,
  139. ['StartDropDlgId']=0,
  140. ['EndDropDlgId']=0,
  141. ['ClickDlgId']=271,
  142. ['TriggerDlgId']=271,
  143. ['CanSkip']=true,
  144. ['ForceGuideId']=0,
  145. },
  146. [100054]={
  147. ['Id']=100054,
  148. ['Type']=3,
  149. ['Content']={522,'Congratulation','Item522'},
  150. ['ArtType']=1,
  151. ['ArtRes']='Common/ic_res_petegg_purple',
  152. ['StartDropMoveTime']=0,
  153. ['StartDropDlgId']=0,
  154. ['EndDropDlgId']=0,
  155. ['ClickDlgId']=272,
  156. ['TriggerDlgId']=272,
  157. ['CanSkip']=true,
  158. ['ForceGuideId']=0,
  159. },
  160. [100060]={
  161. ['Id']=100060,
  162. ['Type']=5,
  163. ['ArtType']=2,
  164. ['ArtRes']='UIBigMap/PointRoleItemNaght',
  165. ['StartDropMoveTime']=0,
  166. ['StartDropDlgId']=0,
  167. ['EndDropDlgId']=263,
  168. ['ClickDlgId']=273,
  169. ['TriggerDlgId']=273,
  170. ['CanSkip']=true,
  171. ['ForceGuideId']=0,
  172. },
  173. [110007]={
  174. ['Id']=110007,
  175. ['Type']=3,
  176. ['Content']={{517,2},'Congratulation','Item507'},
  177. ['ArtType']=1,
  178. ['ArtRes']='Common/ic_res_petpiece_mvp',
  179. ['StartDropPos']={357,-140},
  180. ['StartDropMoveTime']=1.0,
  181. ['StartDropDlgId']=282,
  182. ['EndDropDlgId']=0,
  183. ['ClickDlgId']=284,
  184. ['TriggerDlgId']=284,
  185. ['CanSkip']=true,
  186. ['ForceGuideId']=0,
  187. },
  188. [110014]={
  189. ['Id']=110014,
  190. ['Type']=3,
  191. ['Content']={{101,2},'Congratulation','Item101'},
  192. ['ArtType']=1,
  193. ['ArtRes']='Items/elunium',
  194. ['StartDropPos']={-587,-140},
  195. ['StartDropMoveTime']=1.0,
  196. ['StartDropDlgId']=0,
  197. ['EndDropDlgId']=0,
  198. ['ClickDlgId']=285,
  199. ['TriggerDlgId']=285,
  200. ['CanSkip']=true,
  201. ['ForceGuideId']=0,
  202. },
  203. [110021]={
  204. ['Id']=110021,
  205. ['Type']=3,
  206. ['Content']={{494,10},'Congratulation','Item494'},
  207. ['ArtType']=1,
  208. ['ArtRes']='Items/Item_RandomStone',
  209. ['StartDropMoveTime']=0,
  210. ['StartDropDlgId']=0,
  211. ['EndDropDlgId']=0,
  212. ['ClickDlgId']=286,
  213. ['TriggerDlgId']=286,
  214. ['CanSkip']=true,
  215. ['ForceGuideId']=0,
  216. },
  217. [110028]={
  218. ['Id']=110028,
  219. ['Type']=1,
  220. ['Content']={45},
  221. ['ArtType']=1,
  222. ['ArtRes']='UIFunOpen/ic_open_petslot4',
  223. ['StartDropMoveTime']=0,
  224. ['StartDropDlgId']=0,
  225. ['EndDropDlgId']=0,
  226. ['ClickDlgId']=287,
  227. ['TriggerDlgId']=287,
  228. ['CanSkip']=true,
  229. ['ForceGuideId']=0,
  230. },
  231. [110035]={
  232. ['Id']=110035,
  233. ['Type']=3,
  234. ['Content']={{12840,5},'Congratulation','Item12840'},
  235. ['ArtType']=1,
  236. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  237. ['StartDropPos']={-183,376},
  238. ['StartDropMoveTime']=1.0,
  239. ['StartDropDlgId']=0,
  240. ['EndDropDlgId']=0,
  241. ['ClickDlgId']=288,
  242. ['TriggerDlgId']=288,
  243. ['CanSkip']=true,
  244. ['ForceGuideId']=0,
  245. },
  246. [110042]={
  247. ['Id']=110042,
  248. ['Type']=3,
  249. ['Content']={607,'Congratulation','Item607'},
  250. ['ArtType']=1,
  251. ['ArtRes']='Items/EquipmentBox3',
  252. ['StartDropMoveTime']=0,
  253. ['StartDropDlgId']=0,
  254. ['EndDropDlgId']=0,
  255. ['ClickDlgId']=289,
  256. ['TriggerDlgId']=289,
  257. ['CanSkip']=true,
  258. ['ForceGuideId']=0,
  259. },
  260. [110049]={
  261. ['Id']=110049,
  262. ['Type']=3,
  263. ['Content']={{495,2},'Congratulation','Item495'},
  264. ['ArtType']=1,
  265. ['ArtRes']='Items/item_dye_green',
  266. ['StartDropMoveTime']=0,
  267. ['StartDropDlgId']=0,
  268. ['EndDropDlgId']=0,
  269. ['ClickDlgId']=290,
  270. ['TriggerDlgId']=290,
  271. ['CanSkip']=true,
  272. ['ForceGuideId']=0,
  273. },
  274. [110056]={
  275. ['Id']=110056,
  276. ['Type']=3,
  277. ['Content']={{115,2},'Congratulation','Item115'},
  278. ['ArtType']=1,
  279. ['ArtRes']='Common/ic_moon_key',
  280. ['StartDropMoveTime']=0,
  281. ['StartDropDlgId']=0,
  282. ['EndDropDlgId']=0,
  283. ['ClickDlgId']=291,
  284. ['TriggerDlgId']=291,
  285. ['CanSkip']=true,
  286. ['ForceGuideId']=0,
  287. },
  288. [110063]={
  289. ['Id']=110063,
  290. ['Type']=3,
  291. ['Content']={264,'Congratulation','Item264'},
  292. ['ArtType']=1,
  293. ['ArtRes']='Common/ic_res_contract',
  294. ['StartDropPos']={557,376},
  295. ['StartDropMoveTime']=1.0,
  296. ['StartDropDlgId']=0,
  297. ['EndDropDlgId']=0,
  298. ['ClickDlgId']=292,
  299. ['TriggerDlgId']=292,
  300. ['CanSkip']=true,
  301. ['ForceGuideId']=0,
  302. },
  303. [110070]={
  304. ['Id']=110070,
  305. ['Type']=5,
  306. ['ArtType']=2,
  307. ['ArtRes']='UIBigMap/PointRoleItemDetale',
  308. ['StartDropMoveTime']=0,
  309. ['StartDropDlgId']=0,
  310. ['EndDropDlgId']=283,
  311. ['ClickDlgId']=293,
  312. ['TriggerDlgId']=293,
  313. ['CanSkip']=true,
  314. ['ForceGuideId']=0,
  315. },
  316. [120008]={
  317. ['Id']=120008,
  318. ['Type']=3,
  319. ['Content']={{517,2},'Congratulation','Item507'},
  320. ['ArtType']=1,
  321. ['ArtRes']='Common/ic_res_petpiece_mvp',
  322. ['StartDropPos']={-25,-240},
  323. ['StartDropMoveTime']=1.0,
  324. ['StartDropDlgId']=302,
  325. ['EndDropDlgId']=0,
  326. ['ClickDlgId']=304,
  327. ['TriggerDlgId']=304,
  328. ['CanSkip']=true,
  329. ['ForceGuideId']=0,
  330. },
  331. [120016]={
  332. ['Id']=120016,
  333. ['Type']=3,
  334. ['Content']={{101,2},'Congratulation','Item101'},
  335. ['ArtType']=1,
  336. ['ArtRes']='Items/elunium',
  337. ['StartDropMoveTime']=0,
  338. ['StartDropDlgId']=0,
  339. ['EndDropDlgId']=0,
  340. ['ClickDlgId']=305,
  341. ['TriggerDlgId']=305,
  342. ['CanSkip']=true,
  343. ['ForceGuideId']=0,
  344. },
  345. [120024]={
  346. ['Id']=120024,
  347. ['Type']=3,
  348. ['Content']={{494,10},'Congratulation','Item494'},
  349. ['ArtType']=1,
  350. ['ArtRes']='Items/Item_RandomStone',
  351. ['StartDropMoveTime']=0,
  352. ['StartDropDlgId']=0,
  353. ['EndDropDlgId']=0,
  354. ['ClickDlgId']=306,
  355. ['TriggerDlgId']=306,
  356. ['CanSkip']=true,
  357. ['ForceGuideId']=0,
  358. },
  359. [120032]={
  360. ['Id']=120032,
  361. ['Type']=3,
  362. ['Content']={{12840,5},'Congratulation','Item12840'},
  363. ['ArtType']=1,
  364. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  365. ['StartDropPos']={-455,-240},
  366. ['StartDropMoveTime']=1.0,
  367. ['StartDropDlgId']=0,
  368. ['EndDropDlgId']=0,
  369. ['ClickDlgId']=307,
  370. ['TriggerDlgId']=307,
  371. ['CanSkip']=true,
  372. ['ForceGuideId']=0,
  373. },
  374. [120040]={
  375. ['Id']=120040,
  376. ['Type']=3,
  377. ['Content']={114,'Congratulation','Item114'},
  378. ['ArtType']=1,
  379. ['ArtRes']='Common/ic_res_sbook_gold',
  380. ['StartDropMoveTime']=0,
  381. ['StartDropDlgId']=0,
  382. ['EndDropDlgId']=0,
  383. ['ClickDlgId']=308,
  384. ['TriggerDlgId']=308,
  385. ['CanSkip']=true,
  386. ['ForceGuideId']=0,
  387. },
  388. [120048]={
  389. ['Id']=120048,
  390. ['Type']=3,
  391. ['Content']={607,'Congratulation','Item607'},
  392. ['ArtType']=1,
  393. ['ArtRes']='Items/EquipmentBox3',
  394. ['StartDropMoveTime']=0,
  395. ['StartDropDlgId']=0,
  396. ['EndDropDlgId']=0,
  397. ['ClickDlgId']=309,
  398. ['TriggerDlgId']=309,
  399. ['CanSkip']=true,
  400. ['ForceGuideId']=0,
  401. },
  402. [120056]={
  403. ['Id']=120056,
  404. ['Type']=3,
  405. ['Content']={{495,2},'Congratulation','Item495'},
  406. ['ArtType']=1,
  407. ['ArtRes']='Items/item_dye_green',
  408. ['StartDropPos']={313,200},
  409. ['StartDropMoveTime']=1.0,
  410. ['StartDropDlgId']=0,
  411. ['EndDropDlgId']=0,
  412. ['ClickDlgId']=310,
  413. ['TriggerDlgId']=310,
  414. ['CanSkip']=true,
  415. ['ForceGuideId']=0,
  416. },
  417. [120064]={
  418. ['Id']=120064,
  419. ['Type']=3,
  420. ['Content']={{115,2},'Congratulation','Item115'},
  421. ['ArtType']=1,
  422. ['ArtRes']='Common/ic_moon_key',
  423. ['StartDropMoveTime']=0,
  424. ['StartDropDlgId']=0,
  425. ['EndDropDlgId']=0,
  426. ['ClickDlgId']=311,
  427. ['TriggerDlgId']=311,
  428. ['CanSkip']=true,
  429. ['ForceGuideId']=0,
  430. },
  431. [120072]={
  432. ['Id']=120072,
  433. ['Type']=3,
  434. ['Content']={522,'Congratulation','Item522'},
  435. ['ArtType']=1,
  436. ['ArtRes']='Common/ic_res_petegg_purple',
  437. ['StartDropMoveTime']=0,
  438. ['StartDropDlgId']=0,
  439. ['EndDropDlgId']=0,
  440. ['ClickDlgId']=312,
  441. ['TriggerDlgId']=312,
  442. ['CanSkip']=true,
  443. ['ForceGuideId']=0,
  444. },
  445. [120080]={
  446. ['Id']=120080,
  447. ['Type']=5,
  448. ['ArtType']=2,
  449. ['ArtRes']='UIBigMap/PointRoleItemRock',
  450. ['StartDropMoveTime']=0,
  451. ['StartDropDlgId']=0,
  452. ['EndDropDlgId']=303,
  453. ['ClickDlgId']=313,
  454. ['TriggerDlgId']=313,
  455. ['CanSkip']=true,
  456. ['ForceGuideId']=0,
  457. },
  458. [130009]={
  459. ['Id']=130009,
  460. ['Type']=3,
  461. ['Content']={{517,2},'Congratulation','Item507'},
  462. ['ArtType']=1,
  463. ['ArtRes']='Common/ic_res_petpiece_mvp',
  464. ['StartDropPos']={-57,242},
  465. ['StartDropMoveTime']=1.0,
  466. ['StartDropDlgId']=322,
  467. ['EndDropDlgId']=0,
  468. ['ClickDlgId']=324,
  469. ['TriggerDlgId']=324,
  470. ['CanSkip']=true,
  471. ['ForceGuideId']=0,
  472. },
  473. [130018]={
  474. ['Id']=130018,
  475. ['Type']=3,
  476. ['Content']={{101,2},'Congratulation','Item101'},
  477. ['ArtType']=1,
  478. ['ArtRes']='Items/elunium',
  479. ['StartDropMoveTime']=0,
  480. ['StartDropDlgId']=0,
  481. ['EndDropDlgId']=0,
  482. ['ClickDlgId']=325,
  483. ['TriggerDlgId']=325,
  484. ['CanSkip']=true,
  485. ['ForceGuideId']=0,
  486. },
  487. [130027]={
  488. ['Id']=130027,
  489. ['Type']=3,
  490. ['Content']={{494,10},'Congratulation','Item494'},
  491. ['ArtType']=1,
  492. ['ArtRes']='Items/Item_RandomStone',
  493. ['StartDropMoveTime']=0,
  494. ['StartDropDlgId']=0,
  495. ['EndDropDlgId']=0,
  496. ['ClickDlgId']=326,
  497. ['TriggerDlgId']=326,
  498. ['CanSkip']=true,
  499. ['ForceGuideId']=0,
  500. },
  501. [130036]={
  502. ['Id']=130036,
  503. ['Type']=3,
  504. ['Content']={{12840,5},'Congratulation','Item12840'},
  505. ['ArtType']=1,
  506. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  507. ['StartDropMoveTime']=0,
  508. ['StartDropDlgId']=0,
  509. ['EndDropDlgId']=0,
  510. ['ClickDlgId']=327,
  511. ['TriggerDlgId']=327,
  512. ['CanSkip']=true,
  513. ['ForceGuideId']=0,
  514. },
  515. [130045]={
  516. ['Id']=130045,
  517. ['Type']=3,
  518. ['Content']={114,'Congratulation','Item114'},
  519. ['ArtType']=1,
  520. ['ArtRes']='Common/ic_res_sbook_gold',
  521. ['StartDropMoveTime']=0,
  522. ['StartDropDlgId']=0,
  523. ['EndDropDlgId']=0,
  524. ['ClickDlgId']=328,
  525. ['TriggerDlgId']=328,
  526. ['CanSkip']=true,
  527. ['ForceGuideId']=0,
  528. },
  529. [130054]={
  530. ['Id']=130054,
  531. ['Type']=3,
  532. ['Content']={607,'Congratulation','Item607'},
  533. ['ArtType']=1,
  534. ['ArtRes']='Items/EquipmentBox3',
  535. ['StartDropMoveTime']=0,
  536. ['StartDropDlgId']=0,
  537. ['EndDropDlgId']=0,
  538. ['ClickDlgId']=329,
  539. ['TriggerDlgId']=329,
  540. ['CanSkip']=true,
  541. ['ForceGuideId']=0,
  542. },
  543. [130063]={
  544. ['Id']=130063,
  545. ['Type']=1,
  546. ['Content']={17},
  547. ['ArtType']=1,
  548. ['ArtRes']='UIFunOpen/ic_open_zbjl',
  549. ['StartDropMoveTime']=0,
  550. ['StartDropDlgId']=0,
  551. ['EndDropDlgId']=0,
  552. ['ClickDlgId']=330,
  553. ['TriggerDlgId']=330,
  554. ['CanSkip']=true,
  555. ['ForceGuideId']=0,
  556. },
  557. [130072]={
  558. ['Id']=130072,
  559. ['Type']=3,
  560. ['Content']={{115,2},'Congratulation','Item115'},
  561. ['ArtType']=1,
  562. ['ArtRes']='Common/ic_moon_key',
  563. ['StartDropMoveTime']=0,
  564. ['StartDropDlgId']=0,
  565. ['EndDropDlgId']=0,
  566. ['ClickDlgId']=331,
  567. ['TriggerDlgId']=331,
  568. ['CanSkip']=true,
  569. ['ForceGuideId']=0,
  570. },
  571. [130081]={
  572. ['Id']=130081,
  573. ['Type']=3,
  574. ['Content']={522,'Congratulation','Item522'},
  575. ['ArtType']=1,
  576. ['ArtRes']='Common/ic_res_petegg_purple',
  577. ['StartDropPos']={230,-7},
  578. ['StartDropMoveTime']=1.0,
  579. ['StartDropDlgId']=0,
  580. ['EndDropDlgId']=0,
  581. ['ClickDlgId']=332,
  582. ['TriggerDlgId']=332,
  583. ['CanSkip']=true,
  584. ['ForceGuideId']=0,
  585. },
  586. [130090]={
  587. ['Id']=130090,
  588. ['Type']=5,
  589. ['ArtType']=2,
  590. ['ArtRes']='UIBigMap/PointRoleItemPyuriel',
  591. ['StartDropMoveTime']=0,
  592. ['StartDropDlgId']=0,
  593. ['EndDropDlgId']=323,
  594. ['ClickDlgId']=333,
  595. ['TriggerDlgId']=333,
  596. ['CanSkip']=true,
  597. ['ForceGuideId']=0,
  598. },
  599. [140010]={
  600. ['Id']=140010,
  601. ['Type']=3,
  602. ['Content']={{517,2},'Congratulation','Item507'},
  603. ['ArtType']=1,
  604. ['ArtRes']='Common/ic_res_petpiece_mvp',
  605. ['StartDropPos']={-557,150},
  606. ['StartDropMoveTime']=1.0,
  607. ['StartDropDlgId']=342,
  608. ['EndDropDlgId']=0,
  609. ['ClickDlgId']=344,
  610. ['TriggerDlgId']=344,
  611. ['CanSkip']=true,
  612. ['ForceGuideId']=0,
  613. },
  614. [140020]={
  615. ['Id']=140020,
  616. ['Type']=1,
  617. ['Content']={46},
  618. ['ArtType']=1,
  619. ['ArtRes']='UIFunOpen/ic_open_petslot5',
  620. ['StartDropMoveTime']=0,
  621. ['StartDropDlgId']=0,
  622. ['EndDropDlgId']=0,
  623. ['ClickDlgId']=345,
  624. ['TriggerDlgId']=345,
  625. ['CanSkip']=true,
  626. ['ForceGuideId']=0,
  627. },
  628. [140030]={
  629. ['Id']=140030,
  630. ['Type']=3,
  631. ['Content']={{494,10},'Congratulation','Item494'},
  632. ['ArtType']=1,
  633. ['ArtRes']='Items/Item_RandomStone',
  634. ['StartDropPos']={445,32},
  635. ['StartDropMoveTime']=1.0,
  636. ['StartDropDlgId']=0,
  637. ['EndDropDlgId']=0,
  638. ['ClickDlgId']=346,
  639. ['TriggerDlgId']=346,
  640. ['CanSkip']=true,
  641. ['ForceGuideId']=0,
  642. },
  643. [140040]={
  644. ['Id']=140040,
  645. ['Type']=3,
  646. ['Content']={{12840,5},'Congratulation','Item12840'},
  647. ['ArtType']=1,
  648. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  649. ['StartDropMoveTime']=0,
  650. ['StartDropDlgId']=0,
  651. ['EndDropDlgId']=0,
  652. ['ClickDlgId']=347,
  653. ['TriggerDlgId']=347,
  654. ['CanSkip']=true,
  655. ['ForceGuideId']=0,
  656. },
  657. [140050]={
  658. ['Id']=140050,
  659. ['Type']=3,
  660. ['Content']={114,'Congratulation','Item114'},
  661. ['ArtType']=1,
  662. ['ArtRes']='Common/ic_res_sbook_gold',
  663. ['StartDropMoveTime']=0,
  664. ['StartDropDlgId']=0,
  665. ['EndDropDlgId']=0,
  666. ['ClickDlgId']=348,
  667. ['TriggerDlgId']=348,
  668. ['CanSkip']=true,
  669. ['ForceGuideId']=0,
  670. },
  671. [140060]={
  672. ['Id']=140060,
  673. ['Type']=3,
  674. ['Content']={607,'Congratulation','Item607'},
  675. ['ArtType']=1,
  676. ['ArtRes']='Items/EquipmentBox3',
  677. ['StartDropMoveTime']=0,
  678. ['StartDropDlgId']=0,
  679. ['EndDropDlgId']=0,
  680. ['ClickDlgId']=349,
  681. ['TriggerDlgId']=349,
  682. ['CanSkip']=true,
  683. ['ForceGuideId']=0,
  684. },
  685. [140070]={
  686. ['Id']=140070,
  687. ['Type']=3,
  688. ['Content']={{495,2},'Congratulation','Item495'},
  689. ['ArtType']=1,
  690. ['ArtRes']='Items/item_dye_green',
  691. ['StartDropMoveTime']=0,
  692. ['StartDropDlgId']=0,
  693. ['EndDropDlgId']=0,
  694. ['ClickDlgId']=350,
  695. ['TriggerDlgId']=350,
  696. ['CanSkip']=true,
  697. ['ForceGuideId']=0,
  698. },
  699. [140080]={
  700. ['Id']=140080,
  701. ['Type']=3,
  702. ['Content']={{115,2},'Congratulation','Item115'},
  703. ['ArtType']=1,
  704. ['ArtRes']='Common/ic_moon_key',
  705. ['StartDropMoveTime']=0,
  706. ['StartDropDlgId']=0,
  707. ['EndDropDlgId']=0,
  708. ['ClickDlgId']=351,
  709. ['TriggerDlgId']=351,
  710. ['CanSkip']=true,
  711. ['ForceGuideId']=0,
  712. },
  713. [140090]={
  714. ['Id']=140090,
  715. ['Type']=3,
  716. ['Content']={264,'Congratulation','Item264'},
  717. ['ArtType']=1,
  718. ['ArtRes']='Common/ic_res_contract',
  719. ['StartDropMoveTime']=0,
  720. ['StartDropDlgId']=0,
  721. ['EndDropDlgId']=0,
  722. ['ClickDlgId']=352,
  723. ['TriggerDlgId']=352,
  724. ['CanSkip']=true,
  725. ['ForceGuideId']=0,
  726. },
  727. [140100]={
  728. ['Id']=140100,
  729. ['Type']=5,
  730. ['ArtType']=2,
  731. ['ArtRes']='UIBigMap/PointRoleItemLora',
  732. ['StartDropMoveTime']=0,
  733. ['StartDropDlgId']=0,
  734. ['EndDropDlgId']=343,
  735. ['ClickDlgId']=353,
  736. ['TriggerDlgId']=353,
  737. ['CanSkip']=true,
  738. ['ForceGuideId']=0,
  739. },
  740. [150010]={
  741. ['Id']=150010,
  742. ['Type']=3,
  743. ['Content']={{517,2},'Congratulation','Item507'},
  744. ['ArtType']=1,
  745. ['ArtRes']='Common/ic_res_petpiece_mvp',
  746. ['StartDropPos']={-173,-285},
  747. ['StartDropMoveTime']=1.0,
  748. ['StartDropDlgId']=362,
  749. ['EndDropDlgId']=0,
  750. ['ClickDlgId']=364,
  751. ['TriggerDlgId']=364,
  752. ['CanSkip']=true,
  753. ['ForceGuideId']=0,
  754. },
  755. [150020]={
  756. ['Id']=150020,
  757. ['Type']=3,
  758. ['Content']={{101,2},'Congratulation','Item101'},
  759. ['ArtType']=1,
  760. ['ArtRes']='Items/elunium',
  761. ['StartDropMoveTime']=0,
  762. ['StartDropDlgId']=0,
  763. ['EndDropDlgId']=0,
  764. ['ClickDlgId']=365,
  765. ['TriggerDlgId']=365,
  766. ['CanSkip']=true,
  767. ['ForceGuideId']=0,
  768. },
  769. [150030]={
  770. ['Id']=150030,
  771. ['Type']=3,
  772. ['Content']={{494,10},'Congratulation','Item494'},
  773. ['ArtType']=1,
  774. ['ArtRes']='Items/Item_RandomStone',
  775. ['StartDropPos']={582,-924},
  776. ['StartDropMoveTime']=1.0,
  777. ['StartDropDlgId']=0,
  778. ['EndDropDlgId']=0,
  779. ['ClickDlgId']=366,
  780. ['TriggerDlgId']=366,
  781. ['CanSkip']=true,
  782. ['ForceGuideId']=0,
  783. },
  784. [150040]={
  785. ['Id']=150040,
  786. ['Type']=3,
  787. ['Content']={{12840,5},'Congratulation','Item12840'},
  788. ['ArtType']=1,
  789. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  790. ['StartDropMoveTime']=0,
  791. ['StartDropDlgId']=0,
  792. ['EndDropDlgId']=0,
  793. ['ClickDlgId']=367,
  794. ['TriggerDlgId']=367,
  795. ['CanSkip']=true,
  796. ['ForceGuideId']=0,
  797. },
  798. [150050]={
  799. ['Id']=150050,
  800. ['Type']=3,
  801. ['Content']={114,'Congratulation','Item114'},
  802. ['ArtType']=1,
  803. ['ArtRes']='Common/ic_res_sbook_gold',
  804. ['StartDropMoveTime']=0,
  805. ['StartDropDlgId']=0,
  806. ['EndDropDlgId']=0,
  807. ['ClickDlgId']=368,
  808. ['TriggerDlgId']=368,
  809. ['CanSkip']=true,
  810. ['ForceGuideId']=0,
  811. },
  812. [150060]={
  813. ['Id']=150060,
  814. ['Type']=3,
  815. ['Content']={607,'Congratulation','Item607'},
  816. ['ArtType']=1,
  817. ['ArtRes']='Items/EquipmentBox3',
  818. ['StartDropMoveTime']=0,
  819. ['StartDropDlgId']=0,
  820. ['EndDropDlgId']=0,
  821. ['ClickDlgId']=369,
  822. ['TriggerDlgId']=369,
  823. ['CanSkip']=true,
  824. ['ForceGuideId']=0,
  825. },
  826. [150070]={
  827. ['Id']=150070,
  828. ['Type']=3,
  829. ['Content']={110,'Congratulation','Item110'},
  830. ['ArtType']=1,
  831. ['ArtRes']='Items/110_KnotOfFate',
  832. ['StartDropPos']={-328,469},
  833. ['StartDropMoveTime']=1.0,
  834. ['StartDropDlgId']=0,
  835. ['EndDropDlgId']=0,
  836. ['ClickDlgId']=370,
  837. ['TriggerDlgId']=370,
  838. ['CanSkip']=true,
  839. ['ForceGuideId']=0,
  840. },
  841. [150080]={
  842. ['Id']=150080,
  843. ['Type']=3,
  844. ['Content']={{115,2},'Congratulation','Item115'},
  845. ['ArtType']=1,
  846. ['ArtRes']='Common/ic_moon_key',
  847. ['StartDropMoveTime']=0,
  848. ['StartDropDlgId']=0,
  849. ['EndDropDlgId']=0,
  850. ['ClickDlgId']=371,
  851. ['TriggerDlgId']=371,
  852. ['CanSkip']=true,
  853. ['ForceGuideId']=0,
  854. },
  855. [150090]={
  856. ['Id']=150090,
  857. ['Type']=3,
  858. ['Content']={522,'Congratulation','Item522'},
  859. ['ArtType']=1,
  860. ['ArtRes']='Common/ic_res_petegg_purple',
  861. ['StartDropMoveTime']=0,
  862. ['StartDropDlgId']=0,
  863. ['EndDropDlgId']=0,
  864. ['ClickDlgId']=372,
  865. ['TriggerDlgId']=372,
  866. ['CanSkip']=true,
  867. ['ForceGuideId']=0,
  868. },
  869. [150100]={
  870. ['Id']=150100,
  871. ['Type']=5,
  872. ['ArtType']=2,
  873. ['ArtRes']='UIBigMap/PointRoleItemGoldenbug',
  874. ['StartDropMoveTime']=0,
  875. ['StartDropDlgId']=0,
  876. ['EndDropDlgId']=363,
  877. ['ClickDlgId']=373,
  878. ['TriggerDlgId']=373,
  879. ['CanSkip']=true,
  880. ['ForceGuideId']=0,
  881. },
  882. [160010]={
  883. ['Id']=160010,
  884. ['Type']=3,
  885. ['Content']={{517,2},'Congratulation','Item507'},
  886. ['ArtType']=1,
  887. ['ArtRes']='Common/ic_res_petpiece_mvp',
  888. ['StartDropPos']={-165,95},
  889. ['StartDropMoveTime']=1.0,
  890. ['StartDropDlgId']=382,
  891. ['EndDropDlgId']=0,
  892. ['ClickDlgId']=384,
  893. ['TriggerDlgId']=384,
  894. ['CanSkip']=true,
  895. ['ForceGuideId']=0,
  896. },
  897. [160020]={
  898. ['Id']=160020,
  899. ['Type']=3,
  900. ['Content']={{101,2},'Congratulation','Item101'},
  901. ['ArtType']=1,
  902. ['ArtRes']='Items/elunium',
  903. ['StartDropMoveTime']=0,
  904. ['StartDropDlgId']=0,
  905. ['EndDropDlgId']=0,
  906. ['ClickDlgId']=385,
  907. ['TriggerDlgId']=385,
  908. ['CanSkip']=true,
  909. ['ForceGuideId']=0,
  910. },
  911. [160030]={
  912. ['Id']=160030,
  913. ['Type']=3,
  914. ['Content']={{494,10},'Congratulation','Item494'},
  915. ['ArtType']=1,
  916. ['ArtRes']='Items/Item_RandomStone',
  917. ['StartDropMoveTime']=0,
  918. ['StartDropDlgId']=0,
  919. ['EndDropDlgId']=0,
  920. ['ClickDlgId']=386,
  921. ['TriggerDlgId']=386,
  922. ['CanSkip']=true,
  923. ['ForceGuideId']=0,
  924. },
  925. [160040]={
  926. ['Id']=160040,
  927. ['Type']=3,
  928. ['Content']={{12840,5},'Congratulation','Item12840'},
  929. ['ArtType']=1,
  930. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  931. ['StartDropMoveTime']=0,
  932. ['StartDropDlgId']=0,
  933. ['EndDropDlgId']=0,
  934. ['ClickDlgId']=387,
  935. ['TriggerDlgId']=387,
  936. ['CanSkip']=true,
  937. ['ForceGuideId']=0,
  938. },
  939. [160050]={
  940. ['Id']=160050,
  941. ['Type']=3,
  942. ['Content']={{102,2},'Congratulation','Item102'},
  943. ['ArtType']=1,
  944. ['ArtRes']='Items/oridecon',
  945. ['StartDropMoveTime']=0,
  946. ['StartDropDlgId']=0,
  947. ['EndDropDlgId']=0,
  948. ['ClickDlgId']=388,
  949. ['TriggerDlgId']=388,
  950. ['CanSkip']=true,
  951. ['ForceGuideId']=0,
  952. },
  953. [160060]={
  954. ['Id']=160060,
  955. ['Type']=3,
  956. ['Content']={607,'Congratulation','Item607'},
  957. ['ArtType']=1,
  958. ['ArtRes']='Items/EquipmentBox3',
  959. ['StartDropMoveTime']=0,
  960. ['StartDropDlgId']=0,
  961. ['EndDropDlgId']=0,
  962. ['ClickDlgId']=389,
  963. ['TriggerDlgId']=389,
  964. ['CanSkip']=true,
  965. ['ForceGuideId']=0,
  966. },
  967. [160070]={
  968. ['Id']=160070,
  969. ['Type']=3,
  970. ['Content']={{495,2},'Congratulation','Item495'},
  971. ['ArtType']=1,
  972. ['ArtRes']='Items/item_dye_green',
  973. ['StartDropMoveTime']=0,
  974. ['StartDropDlgId']=0,
  975. ['EndDropDlgId']=0,
  976. ['ClickDlgId']=390,
  977. ['TriggerDlgId']=390,
  978. ['CanSkip']=true,
  979. ['ForceGuideId']=0,
  980. },
  981. [160080]={
  982. ['Id']=160080,
  983. ['Type']=3,
  984. ['Content']={{115,2},'Congratulation','Item115'},
  985. ['ArtType']=1,
  986. ['ArtRes']='Common/ic_moon_key',
  987. ['StartDropMoveTime']=0,
  988. ['StartDropDlgId']=0,
  989. ['EndDropDlgId']=0,
  990. ['ClickDlgId']=391,
  991. ['TriggerDlgId']=391,
  992. ['CanSkip']=true,
  993. ['ForceGuideId']=0,
  994. },
  995. [160090]={
  996. ['Id']=160090,
  997. ['Type']=3,
  998. ['Content']={522,'Congratulation','Item522'},
  999. ['ArtType']=1,
  1000. ['ArtRes']='Common/ic_res_petegg_purple',
  1001. ['StartDropPos']={226,169},
  1002. ['StartDropMoveTime']=1.0,
  1003. ['StartDropDlgId']=0,
  1004. ['EndDropDlgId']=0,
  1005. ['ClickDlgId']=392,
  1006. ['TriggerDlgId']=392,
  1007. ['CanSkip']=true,
  1008. ['ForceGuideId']=0,
  1009. },
  1010. [160100]={
  1011. ['Id']=160100,
  1012. ['Type']=5,
  1013. ['ArtType']=2,
  1014. ['ArtRes']='UIBigMap/PointRoleItemIfrit',
  1015. ['StartDropMoveTime']=0,
  1016. ['StartDropDlgId']=0,
  1017. ['EndDropDlgId']=383,
  1018. ['ClickDlgId']=393,
  1019. ['TriggerDlgId']=393,
  1020. ['CanSkip']=true,
  1021. ['ForceGuideId']=0,
  1022. },
  1023. [170010]={
  1024. ['Id']=170010,
  1025. ['Type']=3,
  1026. ['Content']={{517,2},'Congratulation','Item507'},
  1027. ['ArtType']=1,
  1028. ['ArtRes']='Common/ic_res_petpiece_mvp',
  1029. ['StartDropPos']={-615,207},
  1030. ['StartDropMoveTime']=1.0,
  1031. ['StartDropDlgId']=402,
  1032. ['EndDropDlgId']=0,
  1033. ['ClickDlgId']=404,
  1034. ['TriggerDlgId']=404,
  1035. ['CanSkip']=true,
  1036. ['ForceGuideId']=0,
  1037. },
  1038. [170020]={
  1039. ['Id']=170020,
  1040. ['Type']=3,
  1041. ['Content']={{101,2},'Congratulation','Item101'},
  1042. ['ArtType']=1,
  1043. ['ArtRes']='Items/elunium',
  1044. ['StartDropMoveTime']=0,
  1045. ['StartDropDlgId']=0,
  1046. ['EndDropDlgId']=0,
  1047. ['ClickDlgId']=405,
  1048. ['TriggerDlgId']=405,
  1049. ['CanSkip']=true,
  1050. ['ForceGuideId']=0,
  1051. },
  1052. [170030]={
  1053. ['Id']=170030,
  1054. ['Type']=3,
  1055. ['Content']={{494,10},'Congratulation','Item494'},
  1056. ['ArtType']=1,
  1057. ['ArtRes']='Items/Item_RandomStone',
  1058. ['StartDropPos']={142,133},
  1059. ['StartDropMoveTime']=1.0,
  1060. ['StartDropDlgId']=0,
  1061. ['EndDropDlgId']=0,
  1062. ['ClickDlgId']=406,
  1063. ['TriggerDlgId']=406,
  1064. ['CanSkip']=true,
  1065. ['ForceGuideId']=0,
  1066. },
  1067. [170040]={
  1068. ['Id']=170040,
  1069. ['Type']=3,
  1070. ['Content']={{12840,5},'Congratulation','Item12840'},
  1071. ['ArtType']=1,
  1072. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  1073. ['StartDropMoveTime']=0,
  1074. ['StartDropDlgId']=0,
  1075. ['EndDropDlgId']=0,
  1076. ['ClickDlgId']=407,
  1077. ['TriggerDlgId']=407,
  1078. ['CanSkip']=true,
  1079. ['ForceGuideId']=0,
  1080. },
  1081. [170050]={
  1082. ['Id']=170050,
  1083. ['Type']=3,
  1084. ['Content']={{102,2},'Congratulation','Item102'},
  1085. ['ArtType']=1,
  1086. ['ArtRes']='Items/oridecon',
  1087. ['StartDropMoveTime']=0,
  1088. ['StartDropDlgId']=0,
  1089. ['EndDropDlgId']=0,
  1090. ['ClickDlgId']=408,
  1091. ['TriggerDlgId']=408,
  1092. ['CanSkip']=true,
  1093. ['ForceGuideId']=0,
  1094. },
  1095. [170060]={
  1096. ['Id']=170060,
  1097. ['Type']=3,
  1098. ['Content']={607,'Congratulation','Item607'},
  1099. ['ArtType']=1,
  1100. ['ArtRes']='Items/EquipmentBox3',
  1101. ['StartDropMoveTime']=0,
  1102. ['StartDropDlgId']=0,
  1103. ['EndDropDlgId']=0,
  1104. ['ClickDlgId']=409,
  1105. ['TriggerDlgId']=409,
  1106. ['CanSkip']=true,
  1107. ['ForceGuideId']=0,
  1108. },
  1109. [170070]={
  1110. ['Id']=170070,
  1111. ['Type']=3,
  1112. ['Content']={{495,2},'Congratulation','Item495'},
  1113. ['ArtType']=1,
  1114. ['ArtRes']='Items/item_dye_green',
  1115. ['StartDropMoveTime']=0,
  1116. ['StartDropDlgId']=0,
  1117. ['EndDropDlgId']=0,
  1118. ['ClickDlgId']=410,
  1119. ['TriggerDlgId']=410,
  1120. ['CanSkip']=true,
  1121. ['ForceGuideId']=0,
  1122. },
  1123. [170080]={
  1124. ['Id']=170080,
  1125. ['Type']=3,
  1126. ['Content']={{115,2},'Congratulation','Item115'},
  1127. ['ArtType']=1,
  1128. ['ArtRes']='Common/ic_moon_key',
  1129. ['StartDropMoveTime']=0,
  1130. ['StartDropDlgId']=0,
  1131. ['EndDropDlgId']=0,
  1132. ['ClickDlgId']=411,
  1133. ['TriggerDlgId']=411,
  1134. ['CanSkip']=true,
  1135. ['ForceGuideId']=0,
  1136. },
  1137. [170090]={
  1138. ['Id']=170090,
  1139. ['Type']=3,
  1140. ['Content']={522,'Congratulation','Item522'},
  1141. ['ArtType']=1,
  1142. ['ArtRes']='Common/ic_res_petegg_purple',
  1143. ['StartDropPos']={510,-133},
  1144. ['StartDropMoveTime']=1.0,
  1145. ['StartDropDlgId']=0,
  1146. ['EndDropDlgId']=0,
  1147. ['ClickDlgId']=412,
  1148. ['TriggerDlgId']=412,
  1149. ['CanSkip']=true,
  1150. ['ForceGuideId']=0,
  1151. },
  1152. [170100]={
  1153. ['Id']=170100,
  1154. ['Type']=5,
  1155. ['ArtType']=2,
  1156. ['ArtRes']='UIBigMap/PointRoleItemMuspellskoll',
  1157. ['StartDropMoveTime']=0,
  1158. ['StartDropDlgId']=0,
  1159. ['EndDropDlgId']=403,
  1160. ['ClickDlgId']=413,
  1161. ['TriggerDlgId']=413,
  1162. ['CanSkip']=true,
  1163. ['ForceGuideId']=0,
  1164. },
  1165. [180010]={
  1166. ['Id']=180010,
  1167. ['Type']=3,
  1168. ['Content']={{517,2},'Congratulation','Item507'},
  1169. ['ArtType']=1,
  1170. ['ArtRes']='Common/ic_res_petpiece_mvp',
  1171. ['StartDropPos']={853,-119},
  1172. ['StartDropMoveTime']=1.0,
  1173. ['StartDropDlgId']=422,
  1174. ['EndDropDlgId']=0,
  1175. ['ClickDlgId']=424,
  1176. ['TriggerDlgId']=424,
  1177. ['CanSkip']=true,
  1178. ['ForceGuideId']=0,
  1179. },
  1180. [180020]={
  1181. ['Id']=180020,
  1182. ['Type']=1,
  1183. ['Content']={47},
  1184. ['ArtType']=1,
  1185. ['ArtRes']='UIFunOpen/ic_open_petslot6',
  1186. ['StartDropMoveTime']=0,
  1187. ['StartDropDlgId']=0,
  1188. ['EndDropDlgId']=0,
  1189. ['ClickDlgId']=425,
  1190. ['TriggerDlgId']=425,
  1191. ['CanSkip']=true,
  1192. ['ForceGuideId']=0,
  1193. },
  1194. [180030]={
  1195. ['Id']=180030,
  1196. ['Type']=3,
  1197. ['Content']={{494,10},'Congratulation','Item494'},
  1198. ['ArtType']=1,
  1199. ['ArtRes']='Items/Item_RandomStone',
  1200. ['StartDropMoveTime']=0,
  1201. ['StartDropDlgId']=0,
  1202. ['EndDropDlgId']=0,
  1203. ['ClickDlgId']=426,
  1204. ['TriggerDlgId']=426,
  1205. ['CanSkip']=true,
  1206. ['ForceGuideId']=0,
  1207. },
  1208. [180040]={
  1209. ['Id']=180040,
  1210. ['Type']=3,
  1211. ['Content']={{115,2},'Congratulation','Item115'},
  1212. ['ArtType']=1,
  1213. ['ArtRes']='Common/ic_moon_key',
  1214. ['StartDropMoveTime']=0,
  1215. ['StartDropDlgId']=0,
  1216. ['EndDropDlgId']=0,
  1217. ['ClickDlgId']=427,
  1218. ['TriggerDlgId']=427,
  1219. ['CanSkip']=true,
  1220. ['ForceGuideId']=0,
  1221. },
  1222. [180050]={
  1223. ['Id']=180050,
  1224. ['Type']=3,
  1225. ['Content']={{12840,5},'Congratulation','Item12840'},
  1226. ['ArtType']=1,
  1227. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  1228. ['StartDropMoveTime']=0,
  1229. ['StartDropDlgId']=0,
  1230. ['EndDropDlgId']=0,
  1231. ['ClickDlgId']=428,
  1232. ['TriggerDlgId']=428,
  1233. ['CanSkip']=true,
  1234. ['ForceGuideId']=0,
  1235. },
  1236. [180060]={
  1237. ['Id']=180060,
  1238. ['Type']=3,
  1239. ['Content']={607,'Congratulation','Item607'},
  1240. ['ArtType']=1,
  1241. ['ArtRes']='Items/EquipmentBox3',
  1242. ['StartDropMoveTime']=0,
  1243. ['StartDropDlgId']=0,
  1244. ['EndDropDlgId']=0,
  1245. ['ClickDlgId']=429,
  1246. ['TriggerDlgId']=429,
  1247. ['CanSkip']=true,
  1248. ['ForceGuideId']=0,
  1249. },
  1250. [180070]={
  1251. ['Id']=180070,
  1252. ['Type']=3,
  1253. ['Content']={{495,2},'Congratulation','Item495'},
  1254. ['ArtType']=1,
  1255. ['ArtRes']='Items/item_dye_green',
  1256. ['StartDropMoveTime']=0,
  1257. ['StartDropDlgId']=0,
  1258. ['EndDropDlgId']=0,
  1259. ['ClickDlgId']=430,
  1260. ['TriggerDlgId']=430,
  1261. ['CanSkip']=true,
  1262. ['ForceGuideId']=0,
  1263. },
  1264. [180080]={
  1265. ['Id']=180080,
  1266. ['Type']=3,
  1267. ['Content']={{115,2},'Congratulation','Item115'},
  1268. ['ArtType']=1,
  1269. ['ArtRes']='Common/ic_moon_key',
  1270. ['StartDropMoveTime']=0,
  1271. ['StartDropDlgId']=0,
  1272. ['EndDropDlgId']=0,
  1273. ['ClickDlgId']=431,
  1274. ['TriggerDlgId']=431,
  1275. ['CanSkip']=true,
  1276. ['ForceGuideId']=0,
  1277. },
  1278. [180090]={
  1279. ['Id']=180090,
  1280. ['Type']=3,
  1281. ['Content']={264,'Congratulation','Item264'},
  1282. ['ArtType']=1,
  1283. ['ArtRes']='Common/ic_res_contract',
  1284. ['StartDropMoveTime']=0,
  1285. ['StartDropDlgId']=0,
  1286. ['EndDropDlgId']=0,
  1287. ['ClickDlgId']=432,
  1288. ['TriggerDlgId']=432,
  1289. ['CanSkip']=true,
  1290. ['ForceGuideId']=0,
  1291. },
  1292. [180100]={
  1293. ['Id']=180100,
  1294. ['Type']=5,
  1295. ['ArtType']=2,
  1296. ['ArtRes']='UIBigMap/PointRoleItemSurtur',
  1297. ['StartDropMoveTime']=0,
  1298. ['StartDropDlgId']=0,
  1299. ['EndDropDlgId']=423,
  1300. ['ClickDlgId']=433,
  1301. ['TriggerDlgId']=433,
  1302. ['CanSkip']=true,
  1303. ['ForceGuideId']=0,
  1304. },
  1305. [190010]={
  1306. ['Id']=190010,
  1307. ['Type']=3,
  1308. ['Content']={{517,2},'Congratulation','Item507'},
  1309. ['ArtType']=1,
  1310. ['ArtRes']='Common/ic_res_petpiece_mvp',
  1311. ['StartDropPos']={-852,0},
  1312. ['StartDropMoveTime']=1.0,
  1313. ['StartDropDlgId']=442,
  1314. ['EndDropDlgId']=0,
  1315. ['ClickDlgId']=444,
  1316. ['TriggerDlgId']=444,
  1317. ['CanSkip']=true,
  1318. ['ForceGuideId']=0,
  1319. },
  1320. [190020]={
  1321. ['Id']=190020,
  1322. ['Type']=3,
  1323. ['Content']={{101,2},'Congratulation','Item101'},
  1324. ['ArtType']=1,
  1325. ['ArtRes']='Items/elunium',
  1326. ['StartDropPos']={-8,145},
  1327. ['StartDropMoveTime']=1.0,
  1328. ['StartDropDlgId']=0,
  1329. ['EndDropDlgId']=0,
  1330. ['ClickDlgId']=445,
  1331. ['TriggerDlgId']=445,
  1332. ['CanSkip']=true,
  1333. ['ForceGuideId']=0,
  1334. },
  1335. [190030]={
  1336. ['Id']=190030,
  1337. ['Type']=3,
  1338. ['Content']={{494,20},'Congratulation','Item494'},
  1339. ['ArtType']=1,
  1340. ['ArtRes']='Items/Item_RandomStone',
  1341. ['StartDropMoveTime']=0,
  1342. ['StartDropDlgId']=0,
  1343. ['EndDropDlgId']=0,
  1344. ['ClickDlgId']=446,
  1345. ['TriggerDlgId']=446,
  1346. ['CanSkip']=true,
  1347. ['ForceGuideId']=0,
  1348. },
  1349. [190040]={
  1350. ['Id']=190040,
  1351. ['Type']=3,
  1352. ['Content']={{115,3},'Congratulation','Item115'},
  1353. ['ArtType']=1,
  1354. ['ArtRes']='Common/ic_moon_key',
  1355. ['StartDropMoveTime']=0,
  1356. ['StartDropDlgId']=0,
  1357. ['EndDropDlgId']=0,
  1358. ['ClickDlgId']=447,
  1359. ['TriggerDlgId']=447,
  1360. ['CanSkip']=true,
  1361. ['ForceGuideId']=0,
  1362. },
  1363. [190050]={
  1364. ['Id']=190050,
  1365. ['Type']=3,
  1366. ['Content']={{12840,5},'Congratulation','Item12840'},
  1367. ['ArtType']=1,
  1368. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  1369. ['StartDropMoveTime']=0,
  1370. ['StartDropDlgId']=0,
  1371. ['EndDropDlgId']=0,
  1372. ['ClickDlgId']=448,
  1373. ['TriggerDlgId']=448,
  1374. ['CanSkip']=true,
  1375. ['ForceGuideId']=0,
  1376. },
  1377. [190060]={
  1378. ['Id']=190060,
  1379. ['Type']=3,
  1380. ['Content']={607,'Congratulation','Item607'},
  1381. ['ArtType']=1,
  1382. ['ArtRes']='Items/EquipmentBox3',
  1383. ['StartDropMoveTime']=0,
  1384. ['StartDropDlgId']=0,
  1385. ['EndDropDlgId']=0,
  1386. ['ClickDlgId']=449,
  1387. ['TriggerDlgId']=449,
  1388. ['CanSkip']=true,
  1389. ['ForceGuideId']=0,
  1390. },
  1391. [190070]={
  1392. ['Id']=190070,
  1393. ['Type']=3,
  1394. ['Content']={{496,2},'Congratulation','Item496'},
  1395. ['ArtType']=1,
  1396. ['ArtRes']='Items/item_dye_bluedye',
  1397. ['StartDropPos']={710,0},
  1398. ['StartDropMoveTime']=1.0,
  1399. ['StartDropDlgId']=0,
  1400. ['EndDropDlgId']=0,
  1401. ['ClickDlgId']=450,
  1402. ['TriggerDlgId']=450,
  1403. ['CanSkip']=true,
  1404. ['ForceGuideId']=0,
  1405. },
  1406. [190080]={
  1407. ['Id']=190080,
  1408. ['Type']=3,
  1409. ['Content']={{115,2},'Congratulation','Item115'},
  1410. ['ArtType']=1,
  1411. ['ArtRes']='Common/ic_moon_key',
  1412. ['StartDropMoveTime']=0,
  1413. ['StartDropDlgId']=0,
  1414. ['EndDropDlgId']=0,
  1415. ['ClickDlgId']=451,
  1416. ['TriggerDlgId']=451,
  1417. ['CanSkip']=true,
  1418. ['ForceGuideId']=0,
  1419. },
  1420. [190090]={
  1421. ['Id']=190090,
  1422. ['Type']=3,
  1423. ['Content']={522,'Congratulation','Item522'},
  1424. ['ArtType']=1,
  1425. ['ArtRes']='Common/ic_res_petegg_purple',
  1426. ['StartDropMoveTime']=0,
  1427. ['StartDropDlgId']=0,
  1428. ['EndDropDlgId']=0,
  1429. ['ClickDlgId']=452,
  1430. ['TriggerDlgId']=452,
  1431. ['CanSkip']=true,
  1432. ['ForceGuideId']=0,
  1433. },
  1434. [190100]={
  1435. ['Id']=190100,
  1436. ['Type']=5,
  1437. ['ArtType']=2,
  1438. ['ArtRes']='UIBigMap/PointRoleItemDrake',
  1439. ['StartDropPos']={111,0},
  1440. ['StartDropMoveTime']=1.0,
  1441. ['StartDropDlgId']=0,
  1442. ['EndDropDlgId']=443,
  1443. ['ClickDlgId']=453,
  1444. ['TriggerDlgId']=453,
  1445. ['CanSkip']=true,
  1446. ['ForceGuideId']=0,
  1447. },
  1448. [200010]={
  1449. ['Id']=200010,
  1450. ['Type']=3,
  1451. ['Content']={{517,2},'Congratulation','Item507'},
  1452. ['ArtType']=1,
  1453. ['ArtRes']='Common/ic_res_petpiece_mvp',
  1454. ['StartDropPos']={-260,7},
  1455. ['StartDropMoveTime']=1.0,
  1456. ['StartDropDlgId']=462,
  1457. ['EndDropDlgId']=0,
  1458. ['ClickDlgId']=464,
  1459. ['TriggerDlgId']=464,
  1460. ['CanSkip']=true,
  1461. ['ForceGuideId']=0,
  1462. },
  1463. [200020]={
  1464. ['Id']=200020,
  1465. ['Type']=3,
  1466. ['Content']={{101,2},'Congratulation','Item101'},
  1467. ['ArtType']=1,
  1468. ['ArtRes']='Items/elunium',
  1469. ['StartDropMoveTime']=0,
  1470. ['StartDropDlgId']=0,
  1471. ['EndDropDlgId']=0,
  1472. ['ClickDlgId']=465,
  1473. ['TriggerDlgId']=465,
  1474. ['CanSkip']=true,
  1475. ['ForceGuideId']=0,
  1476. },
  1477. [200030]={
  1478. ['Id']=200030,
  1479. ['Type']=3,
  1480. ['Content']={{494,20},'Congratulation','Item494'},
  1481. ['ArtType']=1,
  1482. ['ArtRes']='Items/Item_RandomStone',
  1483. ['StartDropPos']={130,0},
  1484. ['StartDropMoveTime']=1.0,
  1485. ['StartDropDlgId']=0,
  1486. ['EndDropDlgId']=0,
  1487. ['ClickDlgId']=466,
  1488. ['TriggerDlgId']=466,
  1489. ['CanSkip']=true,
  1490. ['ForceGuideId']=0,
  1491. },
  1492. [200040]={
  1493. ['Id']=200040,
  1494. ['Type']=3,
  1495. ['Content']={{115,3},'Congratulation','Item115'},
  1496. ['ArtType']=1,
  1497. ['ArtRes']='Common/ic_moon_key',
  1498. ['StartDropMoveTime']=0,
  1499. ['StartDropDlgId']=0,
  1500. ['EndDropDlgId']=0,
  1501. ['ClickDlgId']=467,
  1502. ['TriggerDlgId']=467,
  1503. ['CanSkip']=true,
  1504. ['ForceGuideId']=0,
  1505. },
  1506. [200050]={
  1507. ['Id']=200050,
  1508. ['Type']=3,
  1509. ['Content']={{12840,5},'Congratulation','Item12840'},
  1510. ['ArtType']=1,
  1511. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  1512. ['StartDropMoveTime']=0,
  1513. ['StartDropDlgId']=0,
  1514. ['EndDropDlgId']=0,
  1515. ['ClickDlgId']=468,
  1516. ['TriggerDlgId']=468,
  1517. ['CanSkip']=true,
  1518. ['ForceGuideId']=0,
  1519. },
  1520. [200060]={
  1521. ['Id']=200060,
  1522. ['Type']=3,
  1523. ['Content']={607,'Congratulation','Item607'},
  1524. ['ArtType']=1,
  1525. ['ArtRes']='Items/EquipmentBox3',
  1526. ['StartDropPos']={-240,8},
  1527. ['StartDropMoveTime']=1.0,
  1528. ['StartDropDlgId']=0,
  1529. ['EndDropDlgId']=0,
  1530. ['ClickDlgId']=469,
  1531. ['TriggerDlgId']=469,
  1532. ['CanSkip']=true,
  1533. ['ForceGuideId']=0,
  1534. },
  1535. [200070]={
  1536. ['Id']=200070,
  1537. ['Type']=3,
  1538. ['Content']={{496,2},'Congratulation','Item496'},
  1539. ['ArtType']=1,
  1540. ['ArtRes']='Items/item_dye_bluedye',
  1541. ['StartDropMoveTime']=0,
  1542. ['StartDropDlgId']=0,
  1543. ['EndDropDlgId']=0,
  1544. ['ClickDlgId']=470,
  1545. ['TriggerDlgId']=470,
  1546. ['CanSkip']=true,
  1547. ['ForceGuideId']=0,
  1548. },
  1549. [200080]={
  1550. ['Id']=200080,
  1551. ['Type']=3,
  1552. ['Content']={{115,2},'Congratulation','Item115'},
  1553. ['ArtType']=1,
  1554. ['ArtRes']='Common/ic_moon_key',
  1555. ['StartDropMoveTime']=0,
  1556. ['StartDropDlgId']=0,
  1557. ['EndDropDlgId']=0,
  1558. ['ClickDlgId']=471,
  1559. ['TriggerDlgId']=471,
  1560. ['CanSkip']=true,
  1561. ['ForceGuideId']=0,
  1562. },
  1563. [200090]={
  1564. ['Id']=200090,
  1565. ['Type']=3,
  1566. ['Content']={522,'Congratulation','Item522'},
  1567. ['ArtType']=1,
  1568. ['ArtRes']='Common/ic_res_petegg_purple',
  1569. ['StartDropMoveTime']=0,
  1570. ['StartDropDlgId']=0,
  1571. ['EndDropDlgId']=0,
  1572. ['ClickDlgId']=472,
  1573. ['TriggerDlgId']=472,
  1574. ['CanSkip']=true,
  1575. ['ForceGuideId']=0,
  1576. },
  1577. [200100]={
  1578. ['Id']=200100,
  1579. ['Type']=5,
  1580. ['ArtType']=2,
  1581. ['ArtRes']='UIBigMap/PointRoleItemQueenscaraba',
  1582. ['StartDropPos']={480,0},
  1583. ['StartDropMoveTime']=1.0,
  1584. ['StartDropDlgId']=0,
  1585. ['EndDropDlgId']=463,
  1586. ['ClickDlgId']=473,
  1587. ['TriggerDlgId']=473,
  1588. ['CanSkip']=true,
  1589. ['ForceGuideId']=0,
  1590. },
  1591. [210010]={
  1592. ['Id']=210010,
  1593. ['Type']=3,
  1594. ['Content']={{517,2},'Congratulation','Item507'},
  1595. ['ArtType']=1,
  1596. ['ArtRes']='Common/ic_res_petpiece_mvp',
  1597. ['StartDropPos']={-580,205},
  1598. ['StartDropMoveTime']=1.0,
  1599. ['StartDropDlgId']=482,
  1600. ['EndDropDlgId']=0,
  1601. ['ClickDlgId']=484,
  1602. ['TriggerDlgId']=484,
  1603. ['CanSkip']=true,
  1604. ['ForceGuideId']=0,
  1605. },
  1606. [210020]={
  1607. ['Id']=210020,
  1608. ['Type']=3,
  1609. ['Content']={{101,2},'Congratulation','Item101'},
  1610. ['ArtType']=1,
  1611. ['ArtRes']='Items/elunium',
  1612. ['StartDropMoveTime']=0,
  1613. ['StartDropDlgId']=0,
  1614. ['EndDropDlgId']=0,
  1615. ['ClickDlgId']=485,
  1616. ['TriggerDlgId']=485,
  1617. ['CanSkip']=true,
  1618. ['ForceGuideId']=0,
  1619. },
  1620. [210030]={
  1621. ['Id']=210030,
  1622. ['Type']=3,
  1623. ['Content']={{494,20},'Congratulation','Item494'},
  1624. ['ArtType']=1,
  1625. ['ArtRes']='Items/Item_RandomStone',
  1626. ['StartDropMoveTime']=0,
  1627. ['StartDropDlgId']=0,
  1628. ['EndDropDlgId']=0,
  1629. ['ClickDlgId']=486,
  1630. ['TriggerDlgId']=486,
  1631. ['CanSkip']=true,
  1632. ['ForceGuideId']=0,
  1633. },
  1634. [210040]={
  1635. ['Id']=210040,
  1636. ['Type']=3,
  1637. ['Content']={{115,3},'Congratulation','Item115'},
  1638. ['ArtType']=1,
  1639. ['ArtRes']='Common/ic_moon_key',
  1640. ['StartDropPos']={-178,450},
  1641. ['StartDropMoveTime']=1.0,
  1642. ['StartDropDlgId']=0,
  1643. ['EndDropDlgId']=0,
  1644. ['ClickDlgId']=487,
  1645. ['TriggerDlgId']=487,
  1646. ['CanSkip']=true,
  1647. ['ForceGuideId']=0,
  1648. },
  1649. [210050]={
  1650. ['Id']=210050,
  1651. ['Type']=3,
  1652. ['Content']={{12840,5},'Congratulation','Item12840'},
  1653. ['ArtType']=1,
  1654. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  1655. ['StartDropMoveTime']=0,
  1656. ['StartDropDlgId']=0,
  1657. ['EndDropDlgId']=0,
  1658. ['ClickDlgId']=488,
  1659. ['TriggerDlgId']=488,
  1660. ['CanSkip']=true,
  1661. ['ForceGuideId']=0,
  1662. },
  1663. [210060]={
  1664. ['Id']=210060,
  1665. ['Type']=3,
  1666. ['Content']={607,'Congratulation','Item607'},
  1667. ['ArtType']=1,
  1668. ['ArtRes']='Items/EquipmentBox3',
  1669. ['StartDropMoveTime']=0,
  1670. ['StartDropDlgId']=0,
  1671. ['EndDropDlgId']=0,
  1672. ['ClickDlgId']=489,
  1673. ['TriggerDlgId']=489,
  1674. ['CanSkip']=true,
  1675. ['ForceGuideId']=0,
  1676. },
  1677. [210070]={
  1678. ['Id']=210070,
  1679. ['Type']=3,
  1680. ['Content']={{496,2},'Congratulation','Item496'},
  1681. ['ArtType']=1,
  1682. ['ArtRes']='Items/item_dye_bluedye',
  1683. ['StartDropMoveTime']=0,
  1684. ['StartDropDlgId']=0,
  1685. ['EndDropDlgId']=0,
  1686. ['ClickDlgId']=490,
  1687. ['TriggerDlgId']=490,
  1688. ['CanSkip']=true,
  1689. ['ForceGuideId']=0,
  1690. },
  1691. [210080]={
  1692. ['Id']=210080,
  1693. ['Type']=3,
  1694. ['Content']={{115,2},'Congratulation','Item115'},
  1695. ['ArtType']=1,
  1696. ['ArtRes']='Common/ic_moon_key',
  1697. ['StartDropPos']={380,-365},
  1698. ['StartDropMoveTime']=1.0,
  1699. ['StartDropDlgId']=0,
  1700. ['EndDropDlgId']=0,
  1701. ['ClickDlgId']=491,
  1702. ['TriggerDlgId']=491,
  1703. ['CanSkip']=true,
  1704. ['ForceGuideId']=0,
  1705. },
  1706. [210090]={
  1707. ['Id']=210090,
  1708. ['Type']=3,
  1709. ['Content']={522,'Congratulation','Item522'},
  1710. ['ArtType']=1,
  1711. ['ArtRes']='Common/ic_res_petegg_purple',
  1712. ['StartDropMoveTime']=0,
  1713. ['StartDropDlgId']=0,
  1714. ['EndDropDlgId']=0,
  1715. ['ClickDlgId']=492,
  1716. ['TriggerDlgId']=492,
  1717. ['CanSkip']=true,
  1718. ['ForceGuideId']=0,
  1719. },
  1720. [210100]={
  1721. ['Id']=210100,
  1722. ['Type']=5,
  1723. ['ArtType']=2,
  1724. ['ArtRes']='UIBigMap/PointRoleItemAtroce',
  1725. ['StartDropMoveTime']=0,
  1726. ['StartDropDlgId']=0,
  1727. ['EndDropDlgId']=483,
  1728. ['ClickDlgId']=493,
  1729. ['TriggerDlgId']=493,
  1730. ['CanSkip']=true,
  1731. ['ForceGuideId']=0,
  1732. },
  1733. [220010]={
  1734. ['Id']=220010,
  1735. ['Type']=3,
  1736. ['Content']={{517,2},'Congratulation','Item507'},
  1737. ['ArtType']=1,
  1738. ['ArtRes']='Common/ic_res_petpiece_mvp',
  1739. ['StartDropPos']={43,-100},
  1740. ['StartDropMoveTime']=1.0,
  1741. ['StartDropDlgId']=502,
  1742. ['EndDropDlgId']=0,
  1743. ['ClickDlgId']=504,
  1744. ['TriggerDlgId']=504,
  1745. ['CanSkip']=true,
  1746. ['ForceGuideId']=0,
  1747. },
  1748. [220020]={
  1749. ['Id']=220020,
  1750. ['Type']=3,
  1751. ['Content']={{101,2},'Congratulation','Item101'},
  1752. ['ArtType']=1,
  1753. ['ArtRes']='Items/elunium',
  1754. ['StartDropMoveTime']=0,
  1755. ['StartDropDlgId']=0,
  1756. ['EndDropDlgId']=0,
  1757. ['ClickDlgId']=505,
  1758. ['TriggerDlgId']=505,
  1759. ['CanSkip']=true,
  1760. ['ForceGuideId']=0,
  1761. },
  1762. [220030]={
  1763. ['Id']=220030,
  1764. ['Type']=3,
  1765. ['Content']={{494,20},'Congratulation','Item494'},
  1766. ['ArtType']=1,
  1767. ['ArtRes']='Items/Item_RandomStone',
  1768. ['StartDropMoveTime']=0,
  1769. ['StartDropDlgId']=0,
  1770. ['EndDropDlgId']=0,
  1771. ['ClickDlgId']=506,
  1772. ['TriggerDlgId']=506,
  1773. ['CanSkip']=true,
  1774. ['ForceGuideId']=0,
  1775. },
  1776. [220040]={
  1777. ['Id']=220040,
  1778. ['Type']=3,
  1779. ['Content']={{115,3},'Congratulation','Item115'},
  1780. ['ArtType']=1,
  1781. ['ArtRes']='Common/ic_moon_key',
  1782. ['StartDropMoveTime']=0,
  1783. ['StartDropDlgId']=0,
  1784. ['EndDropDlgId']=0,
  1785. ['ClickDlgId']=507,
  1786. ['TriggerDlgId']=507,
  1787. ['CanSkip']=true,
  1788. ['ForceGuideId']=0,
  1789. },
  1790. [220050]={
  1791. ['Id']=220050,
  1792. ['Type']=3,
  1793. ['Content']={{12840,5},'Congratulation','Item12840'},
  1794. ['ArtType']=1,
  1795. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  1796. ['StartDropPos']={300,0},
  1797. ['StartDropMoveTime']=1.0,
  1798. ['StartDropDlgId']=0,
  1799. ['EndDropDlgId']=0,
  1800. ['ClickDlgId']=508,
  1801. ['TriggerDlgId']=508,
  1802. ['CanSkip']=true,
  1803. ['ForceGuideId']=0,
  1804. },
  1805. [220060]={
  1806. ['Id']=220060,
  1807. ['Type']=3,
  1808. ['Content']={607,'Congratulation','Item607'},
  1809. ['ArtType']=1,
  1810. ['ArtRes']='Items/EquipmentBox3',
  1811. ['StartDropMoveTime']=0,
  1812. ['StartDropDlgId']=0,
  1813. ['EndDropDlgId']=0,
  1814. ['ClickDlgId']=509,
  1815. ['TriggerDlgId']=509,
  1816. ['CanSkip']=true,
  1817. ['ForceGuideId']=0,
  1818. },
  1819. [220070]={
  1820. ['Id']=220070,
  1821. ['Type']=3,
  1822. ['Content']={{496,2},'Congratulation','Item496'},
  1823. ['ArtType']=1,
  1824. ['ArtRes']='Items/item_dye_bluedye',
  1825. ['StartDropPos']={-285,85},
  1826. ['StartDropMoveTime']=1.0,
  1827. ['StartDropDlgId']=0,
  1828. ['EndDropDlgId']=0,
  1829. ['ClickDlgId']=510,
  1830. ['TriggerDlgId']=510,
  1831. ['CanSkip']=true,
  1832. ['ForceGuideId']=0,
  1833. },
  1834. [220080]={
  1835. ['Id']=220080,
  1836. ['Type']=3,
  1837. ['Content']={{115,2},'Congratulation','Item115'},
  1838. ['ArtType']=1,
  1839. ['ArtRes']='Common/ic_moon_key',
  1840. ['StartDropMoveTime']=0,
  1841. ['StartDropDlgId']=0,
  1842. ['EndDropDlgId']=0,
  1843. ['ClickDlgId']=511,
  1844. ['TriggerDlgId']=511,
  1845. ['CanSkip']=true,
  1846. ['ForceGuideId']=0,
  1847. },
  1848. [220090]={
  1849. ['Id']=220090,
  1850. ['Type']=3,
  1851. ['Content']={264,'Congratulation','Item264'},
  1852. ['ArtType']=1,
  1853. ['ArtRes']='Common/ic_res_contract',
  1854. ['StartDropMoveTime']=0,
  1855. ['StartDropDlgId']=0,
  1856. ['EndDropDlgId']=0,
  1857. ['ClickDlgId']=512,
  1858. ['TriggerDlgId']=512,
  1859. ['CanSkip']=true,
  1860. ['ForceGuideId']=0,
  1861. },
  1862. [220100]={
  1863. ['Id']=220100,
  1864. ['Type']=5,
  1865. ['ArtType']=2,
  1866. ['ArtRes']='UIBigMap/PointRoleItemGullinbursti',
  1867. ['StartDropMoveTime']=0,
  1868. ['StartDropDlgId']=0,
  1869. ['EndDropDlgId']=503,
  1870. ['ClickDlgId']=513,
  1871. ['TriggerDlgId']=513,
  1872. ['CanSkip']=true,
  1873. ['ForceGuideId']=0,
  1874. },
  1875. [230010]={
  1876. ['Id']=230010,
  1877. ['Type']=3,
  1878. ['Content']={{517,2},'Congratulation','Item507'},
  1879. ['ArtType']=1,
  1880. ['ArtRes']='Common/ic_res_petpiece_mvp',
  1881. ['StartDropPos']={-326,2},
  1882. ['StartDropMoveTime']=1.0,
  1883. ['StartDropDlgId']=522,
  1884. ['EndDropDlgId']=0,
  1885. ['ClickDlgId']=524,
  1886. ['TriggerDlgId']=524,
  1887. ['CanSkip']=true,
  1888. ['ForceGuideId']=0,
  1889. },
  1890. [230020]={
  1891. ['Id']=230020,
  1892. ['Type']=3,
  1893. ['Content']={{101,2},'Congratulation','Item101'},
  1894. ['ArtType']=1,
  1895. ['ArtRes']='Items/elunium',
  1896. ['StartDropMoveTime']=0,
  1897. ['StartDropDlgId']=0,
  1898. ['EndDropDlgId']=0,
  1899. ['ClickDlgId']=525,
  1900. ['TriggerDlgId']=525,
  1901. ['CanSkip']=true,
  1902. ['ForceGuideId']=0,
  1903. },
  1904. [230030]={
  1905. ['Id']=230030,
  1906. ['Type']=3,
  1907. ['Content']={{494,20},'Congratulation','Item494'},
  1908. ['ArtType']=1,
  1909. ['ArtRes']='Items/Item_RandomStone',
  1910. ['StartDropMoveTime']=0,
  1911. ['StartDropDlgId']=0,
  1912. ['EndDropDlgId']=0,
  1913. ['ClickDlgId']=526,
  1914. ['TriggerDlgId']=526,
  1915. ['CanSkip']=true,
  1916. ['ForceGuideId']=0,
  1917. },
  1918. [230040]={
  1919. ['Id']=230040,
  1920. ['Type']=3,
  1921. ['Content']={{115,3},'Congratulation','Item115'},
  1922. ['ArtType']=1,
  1923. ['ArtRes']='Common/ic_moon_key',
  1924. ['StartDropMoveTime']=0,
  1925. ['StartDropDlgId']=0,
  1926. ['EndDropDlgId']=0,
  1927. ['ClickDlgId']=527,
  1928. ['TriggerDlgId']=527,
  1929. ['CanSkip']=true,
  1930. ['ForceGuideId']=0,
  1931. },
  1932. [230050]={
  1933. ['Id']=230050,
  1934. ['Type']=3,
  1935. ['Content']={{12840,5},'Congratulation','Item12840'},
  1936. ['ArtType']=1,
  1937. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  1938. ['StartDropMoveTime']=0,
  1939. ['StartDropDlgId']=0,
  1940. ['EndDropDlgId']=0,
  1941. ['ClickDlgId']=528,
  1942. ['TriggerDlgId']=528,
  1943. ['CanSkip']=true,
  1944. ['ForceGuideId']=0,
  1945. },
  1946. [230060]={
  1947. ['Id']=230060,
  1948. ['Type']=3,
  1949. ['Content']={607,'Congratulation','Item607'},
  1950. ['ArtType']=1,
  1951. ['ArtRes']='Items/EquipmentBox3',
  1952. ['StartDropPos']={500,0},
  1953. ['StartDropMoveTime']=1.0,
  1954. ['StartDropDlgId']=0,
  1955. ['EndDropDlgId']=0,
  1956. ['ClickDlgId']=529,
  1957. ['TriggerDlgId']=529,
  1958. ['CanSkip']=true,
  1959. ['ForceGuideId']=0,
  1960. },
  1961. [230070]={
  1962. ['Id']=230070,
  1963. ['Type']=3,
  1964. ['Content']={{496,2},'Congratulation','Item496'},
  1965. ['ArtType']=1,
  1966. ['ArtRes']='Items/item_dye_bluedye',
  1967. ['StartDropMoveTime']=0,
  1968. ['StartDropDlgId']=0,
  1969. ['EndDropDlgId']=0,
  1970. ['ClickDlgId']=530,
  1971. ['TriggerDlgId']=530,
  1972. ['CanSkip']=true,
  1973. ['ForceGuideId']=0,
  1974. },
  1975. [230080]={
  1976. ['Id']=230080,
  1977. ['Type']=3,
  1978. ['Content']={{115,2},'Congratulation','Item115'},
  1979. ['ArtType']=1,
  1980. ['ArtRes']='Common/ic_moon_key',
  1981. ['StartDropMoveTime']=0,
  1982. ['StartDropDlgId']=0,
  1983. ['EndDropDlgId']=0,
  1984. ['ClickDlgId']=531,
  1985. ['TriggerDlgId']=531,
  1986. ['CanSkip']=true,
  1987. ['ForceGuideId']=0,
  1988. },
  1989. [230090]={
  1990. ['Id']=230090,
  1991. ['Type']=3,
  1992. ['Content']={522,'Congratulation','Item522'},
  1993. ['ArtType']=1,
  1994. ['ArtRes']='Common/ic_res_petegg_purple',
  1995. ['StartDropMoveTime']=0,
  1996. ['StartDropDlgId']=0,
  1997. ['EndDropDlgId']=0,
  1998. ['ClickDlgId']=532,
  1999. ['TriggerDlgId']=532,
  2000. ['CanSkip']=true,
  2001. ['ForceGuideId']=0,
  2002. },
  2003. [230100]={
  2004. ['Id']=230100,
  2005. ['Type']=5,
  2006. ['ArtType']=2,
  2007. ['ArtRes']='UIBigMap/PointRoleItemRSX0806',
  2008. ['StartDropMoveTime']=0,
  2009. ['StartDropDlgId']=0,
  2010. ['EndDropDlgId']=523,
  2011. ['ClickDlgId']=533,
  2012. ['TriggerDlgId']=533,
  2013. ['CanSkip']=true,
  2014. ['ForceGuideId']=0,
  2015. },
  2016. [240010]={
  2017. ['Id']=240010,
  2018. ['Type']=3,
  2019. ['Content']={{517,2},'Congratulation','Item507'},
  2020. ['ArtType']=1,
  2021. ['ArtRes']='Common/ic_res_petpiece_mvp',
  2022. ['StartDropPos']={500,0},
  2023. ['StartDropMoveTime']=1.0,
  2024. ['StartDropDlgId']=542,
  2025. ['EndDropDlgId']=0,
  2026. ['ClickDlgId']=544,
  2027. ['TriggerDlgId']=544,
  2028. ['CanSkip']=true,
  2029. ['ForceGuideId']=0,
  2030. },
  2031. [240020]={
  2032. ['Id']=240020,
  2033. ['Type']=3,
  2034. ['Content']={{101,2},'Congratulation','Item101'},
  2035. ['ArtType']=1,
  2036. ['ArtRes']='Items/elunium',
  2037. ['StartDropMoveTime']=0,
  2038. ['StartDropDlgId']=0,
  2039. ['EndDropDlgId']=0,
  2040. ['ClickDlgId']=545,
  2041. ['TriggerDlgId']=545,
  2042. ['CanSkip']=true,
  2043. ['ForceGuideId']=0,
  2044. },
  2045. [240030]={
  2046. ['Id']=240030,
  2047. ['Type']=3,
  2048. ['Content']={{494,20},'Congratulation','Item494'},
  2049. ['ArtType']=1,
  2050. ['ArtRes']='Items/Item_RandomStone',
  2051. ['StartDropPos']={-240,0},
  2052. ['StartDropMoveTime']=1.0,
  2053. ['StartDropDlgId']=0,
  2054. ['EndDropDlgId']=0,
  2055. ['ClickDlgId']=546,
  2056. ['TriggerDlgId']=546,
  2057. ['CanSkip']=true,
  2058. ['ForceGuideId']=0,
  2059. },
  2060. [240040]={
  2061. ['Id']=240040,
  2062. ['Type']=3,
  2063. ['Content']={{115,3},'Congratulation','Item115'},
  2064. ['ArtType']=1,
  2065. ['ArtRes']='Common/ic_moon_key',
  2066. ['StartDropMoveTime']=0,
  2067. ['StartDropDlgId']=0,
  2068. ['EndDropDlgId']=0,
  2069. ['ClickDlgId']=547,
  2070. ['TriggerDlgId']=547,
  2071. ['CanSkip']=true,
  2072. ['ForceGuideId']=0,
  2073. },
  2074. [240050]={
  2075. ['Id']=240050,
  2076. ['Type']=3,
  2077. ['Content']={{12840,5},'Congratulation','Item12840'},
  2078. ['ArtType']=1,
  2079. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  2080. ['StartDropPos']={-500,0},
  2081. ['StartDropMoveTime']=1.0,
  2082. ['StartDropDlgId']=0,
  2083. ['EndDropDlgId']=0,
  2084. ['ClickDlgId']=548,
  2085. ['TriggerDlgId']=548,
  2086. ['CanSkip']=true,
  2087. ['ForceGuideId']=0,
  2088. },
  2089. [240060]={
  2090. ['Id']=240060,
  2091. ['Type']=3,
  2092. ['Content']={607,'Congratulation','Item607'},
  2093. ['ArtType']=1,
  2094. ['ArtRes']='Items/EquipmentBox3',
  2095. ['StartDropMoveTime']=0,
  2096. ['StartDropDlgId']=0,
  2097. ['EndDropDlgId']=0,
  2098. ['ClickDlgId']=549,
  2099. ['TriggerDlgId']=549,
  2100. ['CanSkip']=true,
  2101. ['ForceGuideId']=0,
  2102. },
  2103. [240070]={
  2104. ['Id']=240070,
  2105. ['Type']=3,
  2106. ['Content']={{496,2},'Congratulation','Item496'},
  2107. ['ArtType']=1,
  2108. ['ArtRes']='Items/item_dye_bluedye',
  2109. ['StartDropMoveTime']=0,
  2110. ['StartDropDlgId']=0,
  2111. ['EndDropDlgId']=0,
  2112. ['ClickDlgId']=550,
  2113. ['TriggerDlgId']=550,
  2114. ['CanSkip']=true,
  2115. ['ForceGuideId']=0,
  2116. },
  2117. [240080]={
  2118. ['Id']=240080,
  2119. ['Type']=3,
  2120. ['Content']={{115,2},'Congratulation','Item115'},
  2121. ['ArtType']=1,
  2122. ['ArtRes']='Common/ic_moon_key',
  2123. ['StartDropPos']={166,0},
  2124. ['StartDropMoveTime']=1.0,
  2125. ['StartDropDlgId']=0,
  2126. ['EndDropDlgId']=0,
  2127. ['ClickDlgId']=551,
  2128. ['TriggerDlgId']=551,
  2129. ['CanSkip']=true,
  2130. ['ForceGuideId']=0,
  2131. },
  2132. [240090]={
  2133. ['Id']=240090,
  2134. ['Type']=3,
  2135. ['Content']={522,'Congratulation','Item522'},
  2136. ['ArtType']=1,
  2137. ['ArtRes']='Common/ic_res_petegg_purple',
  2138. ['StartDropMoveTime']=0,
  2139. ['StartDropDlgId']=0,
  2140. ['EndDropDlgId']=0,
  2141. ['ClickDlgId']=552,
  2142. ['TriggerDlgId']=552,
  2143. ['CanSkip']=true,
  2144. ['ForceGuideId']=0,
  2145. },
  2146. [240100]={
  2147. ['Id']=240100,
  2148. ['Type']=5,
  2149. ['ArtType']=2,
  2150. ['ArtRes']='UIBigMap/PointRoleItemAndvari',
  2151. ['StartDropMoveTime']=0,
  2152. ['StartDropDlgId']=0,
  2153. ['EndDropDlgId']=543,
  2154. ['ClickDlgId']=553,
  2155. ['TriggerDlgId']=553,
  2156. ['CanSkip']=true,
  2157. ['ForceGuideId']=0,
  2158. },
  2159. [250010]={
  2160. ['Id']=250010,
  2161. ['Type']=3,
  2162. ['Content']={{517,2},'Congratulation','Item507'},
  2163. ['ArtType']=1,
  2164. ['ArtRes']='Common/ic_res_petpiece_mvp',
  2165. ['StartDropPos']={538,0},
  2166. ['StartDropMoveTime']=1.0,
  2167. ['StartDropDlgId']=562,
  2168. ['EndDropDlgId']=0,
  2169. ['ClickDlgId']=564,
  2170. ['TriggerDlgId']=564,
  2171. ['CanSkip']=true,
  2172. ['ForceGuideId']=0,
  2173. },
  2174. [250020]={
  2175. ['Id']=250020,
  2176. ['Type']=3,
  2177. ['Content']={{101,2},'Congratulation','Item101'},
  2178. ['ArtType']=1,
  2179. ['ArtRes']='Items/elunium',
  2180. ['StartDropMoveTime']=0,
  2181. ['StartDropDlgId']=0,
  2182. ['EndDropDlgId']=0,
  2183. ['ClickDlgId']=565,
  2184. ['TriggerDlgId']=565,
  2185. ['CanSkip']=true,
  2186. ['ForceGuideId']=0,
  2187. },
  2188. [250030]={
  2189. ['Id']=250030,
  2190. ['Type']=3,
  2191. ['Content']={{494,20},'Congratulation','Item494'},
  2192. ['ArtType']=1,
  2193. ['ArtRes']='Items/Item_RandomStone',
  2194. ['StartDropMoveTime']=0,
  2195. ['StartDropDlgId']=0,
  2196. ['EndDropDlgId']=0,
  2197. ['ClickDlgId']=566,
  2198. ['TriggerDlgId']=566,
  2199. ['CanSkip']=true,
  2200. ['ForceGuideId']=0,
  2201. },
  2202. [250040]={
  2203. ['Id']=250040,
  2204. ['Type']=3,
  2205. ['Content']={{115,3},'Congratulation','Item115'},
  2206. ['ArtType']=1,
  2207. ['ArtRes']='Common/ic_moon_key',
  2208. ['StartDropPos']={-322,0},
  2209. ['StartDropMoveTime']=1.0,
  2210. ['StartDropDlgId']=0,
  2211. ['EndDropDlgId']=0,
  2212. ['ClickDlgId']=567,
  2213. ['TriggerDlgId']=567,
  2214. ['CanSkip']=true,
  2215. ['ForceGuideId']=0,
  2216. },
  2217. [250050]={
  2218. ['Id']=250050,
  2219. ['Type']=3,
  2220. ['Content']={{12840,5},'Congratulation','Item12840'},
  2221. ['ArtType']=1,
  2222. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  2223. ['StartDropMoveTime']=0,
  2224. ['StartDropDlgId']=0,
  2225. ['EndDropDlgId']=0,
  2226. ['ClickDlgId']=568,
  2227. ['TriggerDlgId']=568,
  2228. ['CanSkip']=true,
  2229. ['ForceGuideId']=0,
  2230. },
  2231. [250060]={
  2232. ['Id']=250060,
  2233. ['Type']=3,
  2234. ['Content']={607,'Congratulation','Item607'},
  2235. ['ArtType']=1,
  2236. ['ArtRes']='Items/EquipmentBox3',
  2237. ['StartDropMoveTime']=0,
  2238. ['StartDropDlgId']=0,
  2239. ['EndDropDlgId']=0,
  2240. ['ClickDlgId']=569,
  2241. ['TriggerDlgId']=569,
  2242. ['CanSkip']=true,
  2243. ['ForceGuideId']=0,
  2244. },
  2245. [250070]={
  2246. ['Id']=250070,
  2247. ['Type']=3,
  2248. ['Content']={{496,2},'Congratulation','Item496'},
  2249. ['ArtType']=1,
  2250. ['ArtRes']='Items/item_dye_bluedye',
  2251. ['StartDropMoveTime']=0,
  2252. ['StartDropDlgId']=0,
  2253. ['EndDropDlgId']=0,
  2254. ['ClickDlgId']=570,
  2255. ['TriggerDlgId']=570,
  2256. ['CanSkip']=true,
  2257. ['ForceGuideId']=0,
  2258. },
  2259. [250080]={
  2260. ['Id']=250080,
  2261. ['Type']=3,
  2262. ['Content']={{115,2},'Congratulation','Item115'},
  2263. ['ArtType']=1,
  2264. ['ArtRes']='Common/ic_moon_key',
  2265. ['StartDropPos']={68,293},
  2266. ['StartDropMoveTime']=1.0,
  2267. ['StartDropDlgId']=0,
  2268. ['EndDropDlgId']=0,
  2269. ['ClickDlgId']=571,
  2270. ['TriggerDlgId']=571,
  2271. ['CanSkip']=true,
  2272. ['ForceGuideId']=0,
  2273. },
  2274. [250090]={
  2275. ['Id']=250090,
  2276. ['Type']=3,
  2277. ['Content']={522,'Congratulation','Item522'},
  2278. ['ArtType']=1,
  2279. ['ArtRes']='Common/ic_res_petegg_purple',
  2280. ['StartDropMoveTime']=0,
  2281. ['StartDropDlgId']=0,
  2282. ['EndDropDlgId']=0,
  2283. ['ClickDlgId']=572,
  2284. ['TriggerDlgId']=572,
  2285. ['CanSkip']=true,
  2286. ['ForceGuideId']=0,
  2287. },
  2288. [250100]={
  2289. ['Id']=250100,
  2290. ['Type']=5,
  2291. ['ArtType']=2,
  2292. ['ArtRes']='UIBigMap/PointRoleItemFafnir',
  2293. ['StartDropMoveTime']=0,
  2294. ['StartDropDlgId']=0,
  2295. ['EndDropDlgId']=563,
  2296. ['ClickDlgId']=573,
  2297. ['TriggerDlgId']=573,
  2298. ['CanSkip']=true,
  2299. ['ForceGuideId']=0,
  2300. },
  2301. [260010]={
  2302. ['Id']=260010,
  2303. ['Type']=3,
  2304. ['Content']={{517,2},'Congratulation','Item507'},
  2305. ['ArtType']=1,
  2306. ['ArtRes']='Common/ic_res_petpiece_mvp',
  2307. ['StartDropPos']={60,200},
  2308. ['StartDropMoveTime']=1.0,
  2309. ['StartDropDlgId']=582,
  2310. ['EndDropDlgId']=0,
  2311. ['ClickDlgId']=584,
  2312. ['TriggerDlgId']=584,
  2313. ['CanSkip']=true,
  2314. ['ForceGuideId']=0,
  2315. },
  2316. [260020]={
  2317. ['Id']=260020,
  2318. ['Type']=3,
  2319. ['Content']={{101,2},'Congratulation','Item101'},
  2320. ['ArtType']=1,
  2321. ['ArtRes']='Items/elunium',
  2322. ['StartDropPos']={355,123},
  2323. ['StartDropMoveTime']=1.0,
  2324. ['StartDropDlgId']=0,
  2325. ['EndDropDlgId']=0,
  2326. ['ClickDlgId']=585,
  2327. ['TriggerDlgId']=585,
  2328. ['CanSkip']=true,
  2329. ['ForceGuideId']=0,
  2330. },
  2331. [260030]={
  2332. ['Id']=260030,
  2333. ['Type']=3,
  2334. ['Content']={{494,20},'Congratulation','Item494'},
  2335. ['ArtType']=1,
  2336. ['ArtRes']='Items/Item_RandomStone',
  2337. ['StartDropMoveTime']=0,
  2338. ['StartDropDlgId']=0,
  2339. ['EndDropDlgId']=0,
  2340. ['ClickDlgId']=586,
  2341. ['TriggerDlgId']=586,
  2342. ['CanSkip']=true,
  2343. ['ForceGuideId']=0,
  2344. },
  2345. [260040]={
  2346. ['Id']=260040,
  2347. ['Type']=3,
  2348. ['Content']={{115,3},'Congratulation','Item115'},
  2349. ['ArtType']=1,
  2350. ['ArtRes']='Common/ic_moon_key',
  2351. ['StartDropMoveTime']=0,
  2352. ['StartDropDlgId']=0,
  2353. ['EndDropDlgId']=0,
  2354. ['ClickDlgId']=587,
  2355. ['TriggerDlgId']=587,
  2356. ['CanSkip']=true,
  2357. ['ForceGuideId']=0,
  2358. },
  2359. [260050]={
  2360. ['Id']=260050,
  2361. ['Type']=3,
  2362. ['Content']={{12840,5},'Congratulation','Item12840'},
  2363. ['ArtType']=1,
  2364. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  2365. ['StartDropMoveTime']=0,
  2366. ['StartDropDlgId']=0,
  2367. ['EndDropDlgId']=0,
  2368. ['ClickDlgId']=588,
  2369. ['TriggerDlgId']=588,
  2370. ['CanSkip']=true,
  2371. ['ForceGuideId']=0,
  2372. },
  2373. [260060]={
  2374. ['Id']=260060,
  2375. ['Type']=3,
  2376. ['Content']={607,'Congratulation','Item607'},
  2377. ['ArtType']=1,
  2378. ['ArtRes']='Items/EquipmentBox3',
  2379. ['StartDropMoveTime']=0,
  2380. ['StartDropDlgId']=0,
  2381. ['EndDropDlgId']=0,
  2382. ['ClickDlgId']=589,
  2383. ['TriggerDlgId']=589,
  2384. ['CanSkip']=true,
  2385. ['ForceGuideId']=0,
  2386. },
  2387. [260070]={
  2388. ['Id']=260070,
  2389. ['Type']=3,
  2390. ['Content']={{496,2},'Congratulation','Item496'},
  2391. ['ArtType']=1,
  2392. ['ArtRes']='Items/item_dye_bluedye',
  2393. ['StartDropMoveTime']=0,
  2394. ['StartDropDlgId']=0,
  2395. ['EndDropDlgId']=0,
  2396. ['ClickDlgId']=590,
  2397. ['TriggerDlgId']=590,
  2398. ['CanSkip']=true,
  2399. ['ForceGuideId']=0,
  2400. },
  2401. [260080]={
  2402. ['Id']=260080,
  2403. ['Type']=3,
  2404. ['Content']={{115,2},'Congratulation','Item115'},
  2405. ['ArtType']=1,
  2406. ['ArtRes']='Common/ic_moon_key',
  2407. ['StartDropPos']={-455,-230},
  2408. ['StartDropMoveTime']=1.0,
  2409. ['StartDropDlgId']=0,
  2410. ['EndDropDlgId']=0,
  2411. ['ClickDlgId']=591,
  2412. ['TriggerDlgId']=591,
  2413. ['CanSkip']=true,
  2414. ['ForceGuideId']=0,
  2415. },
  2416. [260090]={
  2417. ['Id']=260090,
  2418. ['Type']=3,
  2419. ['Content']={522,'Congratulation','Item522'},
  2420. ['ArtType']=1,
  2421. ['ArtRes']='Common/ic_res_petegg_purple',
  2422. ['StartDropMoveTime']=0,
  2423. ['StartDropDlgId']=0,
  2424. ['EndDropDlgId']=0,
  2425. ['ClickDlgId']=592,
  2426. ['TriggerDlgId']=592,
  2427. ['CanSkip']=true,
  2428. ['ForceGuideId']=0,
  2429. },
  2430. [260100]={
  2431. ['Id']=260100,
  2432. ['Type']=5,
  2433. ['ArtType']=2,
  2434. ['ArtRes']='UIBigMap/PointRoleItemAlvis',
  2435. ['StartDropMoveTime']=0,
  2436. ['StartDropDlgId']=0,
  2437. ['EndDropDlgId']=583,
  2438. ['ClickDlgId']=593,
  2439. ['TriggerDlgId']=593,
  2440. ['CanSkip']=true,
  2441. ['ForceGuideId']=0,
  2442. },
  2443. [270010]={
  2444. ['Id']=270010,
  2445. ['Type']=3,
  2446. ['Content']={{517,2},'Congratulation','Item507'},
  2447. ['ArtType']=1,
  2448. ['ArtRes']='Common/ic_res_petpiece_mvp',
  2449. ['StartDropPos']={-76,265},
  2450. ['StartDropMoveTime']=1.0,
  2451. ['StartDropDlgId']=602,
  2452. ['EndDropDlgId']=0,
  2453. ['ClickDlgId']=604,
  2454. ['TriggerDlgId']=604,
  2455. ['CanSkip']=true,
  2456. ['ForceGuideId']=0,
  2457. },
  2458. [270020]={
  2459. ['Id']=270020,
  2460. ['Type']=3,
  2461. ['Content']={{101,2},'Congratulation','Item101'},
  2462. ['ArtType']=1,
  2463. ['ArtRes']='Items/elunium',
  2464. ['StartDropPos']={-446,2},
  2465. ['StartDropMoveTime']=1.0,
  2466. ['StartDropDlgId']=0,
  2467. ['EndDropDlgId']=0,
  2468. ['ClickDlgId']=605,
  2469. ['TriggerDlgId']=605,
  2470. ['CanSkip']=true,
  2471. ['ForceGuideId']=0,
  2472. },
  2473. [270030]={
  2474. ['Id']=270030,
  2475. ['Type']=3,
  2476. ['Content']={{494,20},'Congratulation','Item494'},
  2477. ['ArtType']=1,
  2478. ['ArtRes']='Items/Item_RandomStone',
  2479. ['StartDropMoveTime']=0,
  2480. ['StartDropDlgId']=0,
  2481. ['EndDropDlgId']=0,
  2482. ['ClickDlgId']=606,
  2483. ['TriggerDlgId']=606,
  2484. ['CanSkip']=true,
  2485. ['ForceGuideId']=0,
  2486. },
  2487. [270040]={
  2488. ['Id']=270040,
  2489. ['Type']=3,
  2490. ['Content']={{115,3},'Congratulation','Item115'},
  2491. ['ArtType']=1,
  2492. ['ArtRes']='Common/ic_moon_key',
  2493. ['StartDropMoveTime']=0,
  2494. ['StartDropDlgId']=0,
  2495. ['EndDropDlgId']=0,
  2496. ['ClickDlgId']=607,
  2497. ['TriggerDlgId']=607,
  2498. ['CanSkip']=true,
  2499. ['ForceGuideId']=0,
  2500. },
  2501. [270050]={
  2502. ['Id']=270050,
  2503. ['Type']=3,
  2504. ['Content']={{12840,5},'Congratulation','Item12840'},
  2505. ['ArtType']=1,
  2506. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  2507. ['StartDropMoveTime']=0,
  2508. ['StartDropDlgId']=0,
  2509. ['EndDropDlgId']=0,
  2510. ['ClickDlgId']=608,
  2511. ['TriggerDlgId']=608,
  2512. ['CanSkip']=true,
  2513. ['ForceGuideId']=0,
  2514. },
  2515. [270060]={
  2516. ['Id']=270060,
  2517. ['Type']=3,
  2518. ['Content']={607,'Congratulation','Item607'},
  2519. ['ArtType']=1,
  2520. ['ArtRes']='Items/EquipmentBox3',
  2521. ['StartDropPos']={318,166},
  2522. ['StartDropMoveTime']=1.0,
  2523. ['StartDropDlgId']=0,
  2524. ['EndDropDlgId']=0,
  2525. ['ClickDlgId']=609,
  2526. ['TriggerDlgId']=609,
  2527. ['CanSkip']=true,
  2528. ['ForceGuideId']=0,
  2529. },
  2530. [270070]={
  2531. ['Id']=270070,
  2532. ['Type']=3,
  2533. ['Content']={{496,2},'Congratulation','Item496'},
  2534. ['ArtType']=1,
  2535. ['ArtRes']='Items/item_dye_bluedye',
  2536. ['StartDropMoveTime']=0,
  2537. ['StartDropDlgId']=0,
  2538. ['EndDropDlgId']=0,
  2539. ['ClickDlgId']=610,
  2540. ['TriggerDlgId']=610,
  2541. ['CanSkip']=true,
  2542. ['ForceGuideId']=0,
  2543. },
  2544. [270080]={
  2545. ['Id']=270080,
  2546. ['Type']=3,
  2547. ['Content']={{115,2},'Congratulation','Item115'},
  2548. ['ArtType']=1,
  2549. ['ArtRes']='Common/ic_moon_key',
  2550. ['StartDropMoveTime']=0,
  2551. ['StartDropDlgId']=0,
  2552. ['EndDropDlgId']=0,
  2553. ['ClickDlgId']=611,
  2554. ['TriggerDlgId']=611,
  2555. ['CanSkip']=true,
  2556. ['ForceGuideId']=0,
  2557. },
  2558. [270090]={
  2559. ['Id']=270090,
  2560. ['Type']=3,
  2561. ['Content']={264,'Congratulation','Item264'},
  2562. ['ArtType']=1,
  2563. ['ArtRes']='Common/ic_res_contract',
  2564. ['StartDropMoveTime']=0,
  2565. ['StartDropDlgId']=0,
  2566. ['EndDropDlgId']=0,
  2567. ['ClickDlgId']=612,
  2568. ['TriggerDlgId']=612,
  2569. ['CanSkip']=true,
  2570. ['ForceGuideId']=0,
  2571. },
  2572. [270100]={
  2573. ['Id']=270100,
  2574. ['Type']=5,
  2575. ['ArtType']=2,
  2576. ['ArtRes']='UIBigMap/PointRoleItemRegin',
  2577. ['StartDropMoveTime']=0,
  2578. ['StartDropDlgId']=0,
  2579. ['EndDropDlgId']=603,
  2580. ['ClickDlgId']=613,
  2581. ['TriggerDlgId']=613,
  2582. ['CanSkip']=true,
  2583. ['ForceGuideId']=0,
  2584. },
  2585. [280010]={
  2586. ['Id']=280010,
  2587. ['Type']=3,
  2588. ['Content']={{517,2},'Congratulation','Item507'},
  2589. ['ArtType']=1,
  2590. ['ArtRes']='Common/ic_res_petpiece_mvp',
  2591. ['StartDropPos']={-262,254},
  2592. ['StartDropMoveTime']=1.0,
  2593. ['StartDropDlgId']=622,
  2594. ['EndDropDlgId']=0,
  2595. ['ClickDlgId']=624,
  2596. ['TriggerDlgId']=624,
  2597. ['CanSkip']=true,
  2598. ['ForceGuideId']=0,
  2599. },
  2600. [280020]={
  2601. ['Id']=280020,
  2602. ['Type']=3,
  2603. ['Content']={{101,2},'Congratulation','Item101'},
  2604. ['ArtType']=1,
  2605. ['ArtRes']='Items/elunium',
  2606. ['StartDropMoveTime']=0,
  2607. ['StartDropDlgId']=0,
  2608. ['EndDropDlgId']=0,
  2609. ['ClickDlgId']=625,
  2610. ['TriggerDlgId']=625,
  2611. ['CanSkip']=true,
  2612. ['ForceGuideId']=0,
  2613. },
  2614. [280030]={
  2615. ['Id']=280030,
  2616. ['Type']=3,
  2617. ['Content']={{494,20},'Congratulation','Item494'},
  2618. ['ArtType']=1,
  2619. ['ArtRes']='Items/Item_RandomStone',
  2620. ['StartDropMoveTime']=0,
  2621. ['StartDropDlgId']=0,
  2622. ['EndDropDlgId']=0,
  2623. ['ClickDlgId']=626,
  2624. ['TriggerDlgId']=626,
  2625. ['CanSkip']=true,
  2626. ['ForceGuideId']=0,
  2627. },
  2628. [280040]={
  2629. ['Id']=280040,
  2630. ['Type']=3,
  2631. ['Content']={{115,3},'Congratulation','Item115'},
  2632. ['ArtType']=1,
  2633. ['ArtRes']='Common/ic_moon_key',
  2634. ['StartDropMoveTime']=0,
  2635. ['StartDropDlgId']=0,
  2636. ['EndDropDlgId']=0,
  2637. ['ClickDlgId']=627,
  2638. ['TriggerDlgId']=627,
  2639. ['CanSkip']=true,
  2640. ['ForceGuideId']=0,
  2641. },
  2642. [280050]={
  2643. ['Id']=280050,
  2644. ['Type']=3,
  2645. ['Content']={{12840,5},'Congratulation','Item12840'},
  2646. ['ArtType']=1,
  2647. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  2648. ['StartDropMoveTime']=0,
  2649. ['StartDropDlgId']=0,
  2650. ['EndDropDlgId']=0,
  2651. ['ClickDlgId']=628,
  2652. ['TriggerDlgId']=628,
  2653. ['CanSkip']=true,
  2654. ['ForceGuideId']=0,
  2655. },
  2656. [280060]={
  2657. ['Id']=280060,
  2658. ['Type']=3,
  2659. ['Content']={607,'Congratulation','Item607'},
  2660. ['ArtType']=1,
  2661. ['ArtRes']='Items/EquipmentBox3',
  2662. ['StartDropPos']={478,64},
  2663. ['StartDropMoveTime']=1.0,
  2664. ['StartDropDlgId']=0,
  2665. ['EndDropDlgId']=0,
  2666. ['ClickDlgId']=629,
  2667. ['TriggerDlgId']=629,
  2668. ['CanSkip']=true,
  2669. ['ForceGuideId']=0,
  2670. },
  2671. [280070]={
  2672. ['Id']=280070,
  2673. ['Type']=3,
  2674. ['Content']={{496,2},'Congratulation','Item496'},
  2675. ['ArtType']=1,
  2676. ['ArtRes']='Items/item_dye_bluedye',
  2677. ['StartDropMoveTime']=0,
  2678. ['StartDropDlgId']=0,
  2679. ['EndDropDlgId']=0,
  2680. ['ClickDlgId']=630,
  2681. ['TriggerDlgId']=630,
  2682. ['CanSkip']=true,
  2683. ['ForceGuideId']=0,
  2684. },
  2685. [280080]={
  2686. ['Id']=280080,
  2687. ['Type']=3,
  2688. ['Content']={{115,2},'Congratulation','Item115'},
  2689. ['ArtType']=1,
  2690. ['ArtRes']='Common/ic_moon_key',
  2691. ['StartDropMoveTime']=0,
  2692. ['StartDropDlgId']=0,
  2693. ['EndDropDlgId']=0,
  2694. ['ClickDlgId']=631,
  2695. ['TriggerDlgId']=631,
  2696. ['CanSkip']=true,
  2697. ['ForceGuideId']=0,
  2698. },
  2699. [280090]={
  2700. ['Id']=280090,
  2701. ['Type']=3,
  2702. ['Content']={522,'Congratulation','Item522'},
  2703. ['ArtType']=1,
  2704. ['ArtRes']='Common/ic_res_petegg_purple',
  2705. ['StartDropMoveTime']=0,
  2706. ['StartDropDlgId']=0,
  2707. ['EndDropDlgId']=0,
  2708. ['ClickDlgId']=632,
  2709. ['TriggerDlgId']=632,
  2710. ['CanSkip']=true,
  2711. ['ForceGuideId']=0,
  2712. },
  2713. [280100]={
  2714. ['Id']=280100,
  2715. ['Type']=5,
  2716. ['ArtType']=2,
  2717. ['ArtRes']='UIBigMap/PointRoleItemLordofdeath',
  2718. ['StartDropMoveTime']=0,
  2719. ['StartDropDlgId']=0,
  2720. ['EndDropDlgId']=623,
  2721. ['ClickDlgId']=633,
  2722. ['TriggerDlgId']=633,
  2723. ['CanSkip']=true,
  2724. ['ForceGuideId']=0,
  2725. },
  2726. [290010]={
  2727. ['Id']=290010,
  2728. ['Type']=3,
  2729. ['Content']={{517,2},'Congratulation','Item507'},
  2730. ['ArtType']=1,
  2731. ['ArtRes']='Common/ic_res_petpiece_mvp',
  2732. ['StartDropPos']={222,-155},
  2733. ['StartDropMoveTime']=1.0,
  2734. ['StartDropDlgId']=642,
  2735. ['EndDropDlgId']=0,
  2736. ['ClickDlgId']=644,
  2737. ['TriggerDlgId']=644,
  2738. ['CanSkip']=true,
  2739. ['ForceGuideId']=0,
  2740. },
  2741. [290020]={
  2742. ['Id']=290020,
  2743. ['Type']=3,
  2744. ['Content']={{101,2},'Congratulation','Item101'},
  2745. ['ArtType']=1,
  2746. ['ArtRes']='Items/elunium',
  2747. ['StartDropMoveTime']=0,
  2748. ['StartDropDlgId']=0,
  2749. ['EndDropDlgId']=0,
  2750. ['ClickDlgId']=645,
  2751. ['TriggerDlgId']=645,
  2752. ['CanSkip']=true,
  2753. ['ForceGuideId']=0,
  2754. },
  2755. [290030]={
  2756. ['Id']=290030,
  2757. ['Type']=3,
  2758. ['Content']={{494,20},'Congratulation','Item494'},
  2759. ['ArtType']=1,
  2760. ['ArtRes']='Items/Item_RandomStone',
  2761. ['StartDropPos']={396,64},
  2762. ['StartDropMoveTime']=1.0,
  2763. ['StartDropDlgId']=0,
  2764. ['EndDropDlgId']=0,
  2765. ['ClickDlgId']=646,
  2766. ['TriggerDlgId']=646,
  2767. ['CanSkip']=true,
  2768. ['ForceGuideId']=0,
  2769. },
  2770. [290040]={
  2771. ['Id']=290040,
  2772. ['Type']=3,
  2773. ['Content']={{115,3},'Congratulation','Item115'},
  2774. ['ArtType']=1,
  2775. ['ArtRes']='Common/ic_moon_key',
  2776. ['StartDropMoveTime']=0,
  2777. ['StartDropDlgId']=0,
  2778. ['EndDropDlgId']=0,
  2779. ['ClickDlgId']=647,
  2780. ['TriggerDlgId']=647,
  2781. ['CanSkip']=true,
  2782. ['ForceGuideId']=0,
  2783. },
  2784. [290050]={
  2785. ['Id']=290050,
  2786. ['Type']=3,
  2787. ['Content']={{12840,5},'Congratulation','Item12840'},
  2788. ['ArtType']=1,
  2789. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  2790. ['StartDropMoveTime']=0,
  2791. ['StartDropDlgId']=0,
  2792. ['EndDropDlgId']=0,
  2793. ['ClickDlgId']=648,
  2794. ['TriggerDlgId']=648,
  2795. ['CanSkip']=true,
  2796. ['ForceGuideId']=0,
  2797. },
  2798. [290060]={
  2799. ['Id']=290060,
  2800. ['Type']=3,
  2801. ['Content']={607,'Congratulation','Item607'},
  2802. ['ArtType']=1,
  2803. ['ArtRes']='Items/EquipmentBox3',
  2804. ['StartDropPos']={-408,334},
  2805. ['StartDropMoveTime']=1.0,
  2806. ['StartDropDlgId']=0,
  2807. ['EndDropDlgId']=0,
  2808. ['ClickDlgId']=649,
  2809. ['TriggerDlgId']=649,
  2810. ['CanSkip']=true,
  2811. ['ForceGuideId']=0,
  2812. },
  2813. [290070]={
  2814. ['Id']=290070,
  2815. ['Type']=3,
  2816. ['Content']={{496,2},'Congratulation','Item496'},
  2817. ['ArtType']=1,
  2818. ['ArtRes']='Items/item_dye_bluedye',
  2819. ['StartDropMoveTime']=0,
  2820. ['StartDropDlgId']=0,
  2821. ['EndDropDlgId']=0,
  2822. ['ClickDlgId']=650,
  2823. ['TriggerDlgId']=650,
  2824. ['CanSkip']=true,
  2825. ['ForceGuideId']=0,
  2826. },
  2827. [290080]={
  2828. ['Id']=290080,
  2829. ['Type']=3,
  2830. ['Content']={{115,2},'Congratulation','Item115'},
  2831. ['ArtType']=1,
  2832. ['ArtRes']='Common/ic_moon_key',
  2833. ['StartDropMoveTime']=0,
  2834. ['StartDropDlgId']=0,
  2835. ['EndDropDlgId']=0,
  2836. ['ClickDlgId']=651,
  2837. ['TriggerDlgId']=651,
  2838. ['CanSkip']=true,
  2839. ['ForceGuideId']=0,
  2840. },
  2841. [290090]={
  2842. ['Id']=290090,
  2843. ['Type']=3,
  2844. ['Content']={522,'Congratulation','Item522'},
  2845. ['ArtType']=1,
  2846. ['ArtRes']='Common/ic_res_petegg_purple',
  2847. ['StartDropMoveTime']=0,
  2848. ['StartDropDlgId']=0,
  2849. ['EndDropDlgId']=0,
  2850. ['ClickDlgId']=652,
  2851. ['TriggerDlgId']=652,
  2852. ['CanSkip']=true,
  2853. ['ForceGuideId']=0,
  2854. },
  2855. [290100]={
  2856. ['Id']=290100,
  2857. ['Type']=5,
  2858. ['ArtType']=2,
  2859. ['ArtRes']='UIBigMap/PointRoleItemGarm',
  2860. ['StartDropMoveTime']=0,
  2861. ['StartDropDlgId']=0,
  2862. ['EndDropDlgId']=643,
  2863. ['ClickDlgId']=653,
  2864. ['TriggerDlgId']=653,
  2865. ['CanSkip']=true,
  2866. ['ForceGuideId']=0,
  2867. },
  2868. [300010]={
  2869. ['Id']=300010,
  2870. ['Type']=3,
  2871. ['Content']={{517,2},'Congratulation','Item507'},
  2872. ['ArtType']=1,
  2873. ['ArtRes']='Common/ic_res_petpiece_mvp',
  2874. ['StartDropPos']={390,177},
  2875. ['StartDropMoveTime']=1.0,
  2876. ['StartDropDlgId']=662,
  2877. ['EndDropDlgId']=0,
  2878. ['ClickDlgId']=664,
  2879. ['TriggerDlgId']=664,
  2880. ['CanSkip']=true,
  2881. ['ForceGuideId']=0,
  2882. },
  2883. [300020]={
  2884. ['Id']=300020,
  2885. ['Type']=3,
  2886. ['Content']={{101,2},'Congratulation','Item101'},
  2887. ['ArtType']=1,
  2888. ['ArtRes']='Items/elunium',
  2889. ['StartDropMoveTime']=0,
  2890. ['StartDropDlgId']=0,
  2891. ['EndDropDlgId']=0,
  2892. ['ClickDlgId']=665,
  2893. ['TriggerDlgId']=665,
  2894. ['CanSkip']=true,
  2895. ['ForceGuideId']=0,
  2896. },
  2897. [300030]={
  2898. ['Id']=300030,
  2899. ['Type']=3,
  2900. ['Content']={{494,20},'Congratulation','Item494'},
  2901. ['ArtType']=1,
  2902. ['ArtRes']='Items/Item_RandomStone',
  2903. ['StartDropPos']={650,60},
  2904. ['StartDropMoveTime']=1.0,
  2905. ['StartDropDlgId']=0,
  2906. ['EndDropDlgId']=0,
  2907. ['ClickDlgId']=666,
  2908. ['TriggerDlgId']=666,
  2909. ['CanSkip']=true,
  2910. ['ForceGuideId']=0,
  2911. },
  2912. [300040]={
  2913. ['Id']=300040,
  2914. ['Type']=3,
  2915. ['Content']={{115,3},'Congratulation','Item115'},
  2916. ['ArtType']=1,
  2917. ['ArtRes']='Common/ic_moon_key',
  2918. ['StartDropMoveTime']=0,
  2919. ['StartDropDlgId']=0,
  2920. ['EndDropDlgId']=0,
  2921. ['ClickDlgId']=667,
  2922. ['TriggerDlgId']=667,
  2923. ['CanSkip']=true,
  2924. ['ForceGuideId']=0,
  2925. },
  2926. [300050]={
  2927. ['Id']=300050,
  2928. ['Type']=3,
  2929. ['Content']={{12840,5},'Congratulation','Item12840'},
  2930. ['ArtType']=1,
  2931. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  2932. ['StartDropPos']={13,-47},
  2933. ['StartDropMoveTime']=1.0,
  2934. ['StartDropDlgId']=0,
  2935. ['EndDropDlgId']=0,
  2936. ['ClickDlgId']=668,
  2937. ['TriggerDlgId']=668,
  2938. ['CanSkip']=true,
  2939. ['ForceGuideId']=0,
  2940. },
  2941. [300060]={
  2942. ['Id']=300060,
  2943. ['Type']=3,
  2944. ['Content']={607,'Congratulation','Item607'},
  2945. ['ArtType']=1,
  2946. ['ArtRes']='Items/EquipmentBox3',
  2947. ['StartDropMoveTime']=0,
  2948. ['StartDropDlgId']=0,
  2949. ['EndDropDlgId']=0,
  2950. ['ClickDlgId']=669,
  2951. ['TriggerDlgId']=669,
  2952. ['CanSkip']=true,
  2953. ['ForceGuideId']=0,
  2954. },
  2955. [300070]={
  2956. ['Id']=300070,
  2957. ['Type']=3,
  2958. ['Content']={{496,2},'Congratulation','Item496'},
  2959. ['ArtType']=1,
  2960. ['ArtRes']='Items/item_dye_bluedye',
  2961. ['StartDropMoveTime']=0,
  2962. ['StartDropDlgId']=0,
  2963. ['EndDropDlgId']=0,
  2964. ['ClickDlgId']=670,
  2965. ['TriggerDlgId']=670,
  2966. ['CanSkip']=true,
  2967. ['ForceGuideId']=0,
  2968. },
  2969. [300080]={
  2970. ['Id']=300080,
  2971. ['Type']=3,
  2972. ['Content']={{115,2},'Congratulation','Item115'},
  2973. ['ArtType']=1,
  2974. ['ArtRes']='Common/ic_moon_key',
  2975. ['StartDropMoveTime']=0,
  2976. ['StartDropDlgId']=0,
  2977. ['EndDropDlgId']=0,
  2978. ['ClickDlgId']=671,
  2979. ['TriggerDlgId']=671,
  2980. ['CanSkip']=true,
  2981. ['ForceGuideId']=0,
  2982. },
  2983. [300090]={
  2984. ['Id']=300090,
  2985. ['Type']=3,
  2986. ['Content']={522,'Congratulation','Item522'},
  2987. ['ArtType']=1,
  2988. ['ArtRes']='Common/ic_res_petegg_purple',
  2989. ['StartDropPos']={-670,-71},
  2990. ['StartDropMoveTime']=1.0,
  2991. ['StartDropDlgId']=0,
  2992. ['EndDropDlgId']=0,
  2993. ['ClickDlgId']=672,
  2994. ['TriggerDlgId']=672,
  2995. ['CanSkip']=true,
  2996. ['ForceGuideId']=0,
  2997. },
  2998. [300100]={
  2999. ['Id']=300100,
  3000. ['Type']=5,
  3001. ['ArtType']=2,
  3002. ['ArtRes']='UIBigMap/PointRoleItemKtullanux',
  3003. ['StartDropMoveTime']=0,
  3004. ['StartDropDlgId']=0,
  3005. ['EndDropDlgId']=663,
  3006. ['ClickDlgId']=673,
  3007. ['TriggerDlgId']=673,
  3008. ['CanSkip']=true,
  3009. ['ForceGuideId']=0,
  3010. },
  3011. [310010]={
  3012. ['Id']=310010,
  3013. ['Type']=3,
  3014. ['Content']={{517,2},'Congratulation','Item507'},
  3015. ['ArtType']=1,
  3016. ['ArtRes']='Common/ic_res_petpiece_mvp',
  3017. ['StartDropPos']={-164,-40},
  3018. ['StartDropMoveTime']=1.0,
  3019. ['StartDropDlgId']=682,
  3020. ['EndDropDlgId']=0,
  3021. ['ClickDlgId']=684,
  3022. ['TriggerDlgId']=684,
  3023. ['CanSkip']=true,
  3024. ['ForceGuideId']=0,
  3025. },
  3026. [310020]={
  3027. ['Id']=310020,
  3028. ['Type']=3,
  3029. ['Content']={{101,2},'Congratulation','Item101'},
  3030. ['ArtType']=1,
  3031. ['ArtRes']='Items/elunium',
  3032. ['StartDropPos']={-360,-3},
  3033. ['StartDropMoveTime']=1.0,
  3034. ['StartDropDlgId']=0,
  3035. ['EndDropDlgId']=0,
  3036. ['ClickDlgId']=685,
  3037. ['TriggerDlgId']=685,
  3038. ['CanSkip']=true,
  3039. ['ForceGuideId']=0,
  3040. },
  3041. [310030]={
  3042. ['Id']=310030,
  3043. ['Type']=3,
  3044. ['Content']={{494,20},'Congratulation','Item494'},
  3045. ['ArtType']=1,
  3046. ['ArtRes']='Items/Item_RandomStone',
  3047. ['StartDropMoveTime']=0,
  3048. ['StartDropDlgId']=0,
  3049. ['EndDropDlgId']=0,
  3050. ['ClickDlgId']=686,
  3051. ['TriggerDlgId']=686,
  3052. ['CanSkip']=true,
  3053. ['ForceGuideId']=0,
  3054. },
  3055. [310040]={
  3056. ['Id']=310040,
  3057. ['Type']=3,
  3058. ['Content']={{115,3},'Congratulation','Item115'},
  3059. ['ArtType']=1,
  3060. ['ArtRes']='Common/ic_moon_key',
  3061. ['StartDropPos']={-38,252},
  3062. ['StartDropMoveTime']=1.0,
  3063. ['StartDropDlgId']=0,
  3064. ['EndDropDlgId']=0,
  3065. ['ClickDlgId']=687,
  3066. ['TriggerDlgId']=687,
  3067. ['CanSkip']=true,
  3068. ['ForceGuideId']=0,
  3069. },
  3070. [310050]={
  3071. ['Id']=310050,
  3072. ['Type']=3,
  3073. ['Content']={{12840,5},'Congratulation','Item12840'},
  3074. ['ArtType']=1,
  3075. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  3076. ['StartDropMoveTime']=0,
  3077. ['StartDropDlgId']=0,
  3078. ['EndDropDlgId']=0,
  3079. ['ClickDlgId']=688,
  3080. ['TriggerDlgId']=688,
  3081. ['CanSkip']=true,
  3082. ['ForceGuideId']=0,
  3083. },
  3084. [310060]={
  3085. ['Id']=310060,
  3086. ['Type']=3,
  3087. ['Content']={607,'Congratulation','Item607'},
  3088. ['ArtType']=1,
  3089. ['ArtRes']='Items/EquipmentBox3',
  3090. ['StartDropMoveTime']=0,
  3091. ['StartDropDlgId']=0,
  3092. ['EndDropDlgId']=0,
  3093. ['ClickDlgId']=689,
  3094. ['TriggerDlgId']=689,
  3095. ['CanSkip']=true,
  3096. ['ForceGuideId']=0,
  3097. },
  3098. [310070]={
  3099. ['Id']=310070,
  3100. ['Type']=3,
  3101. ['Content']={{496,2},'Congratulation','Item496'},
  3102. ['ArtType']=1,
  3103. ['ArtRes']='Items/item_dye_bluedye',
  3104. ['StartDropMoveTime']=0,
  3105. ['StartDropDlgId']=0,
  3106. ['EndDropDlgId']=0,
  3107. ['ClickDlgId']=690,
  3108. ['TriggerDlgId']=690,
  3109. ['CanSkip']=true,
  3110. ['ForceGuideId']=0,
  3111. },
  3112. [310080]={
  3113. ['Id']=310080,
  3114. ['Type']=3,
  3115. ['Content']={{115,2},'Congratulation','Item115'},
  3116. ['ArtType']=1,
  3117. ['ArtRes']='Common/ic_moon_key',
  3118. ['StartDropMoveTime']=0,
  3119. ['StartDropDlgId']=0,
  3120. ['EndDropDlgId']=0,
  3121. ['ClickDlgId']=691,
  3122. ['TriggerDlgId']=691,
  3123. ['CanSkip']=true,
  3124. ['ForceGuideId']=0,
  3125. },
  3126. [310090]={
  3127. ['Id']=310090,
  3128. ['Type']=3,
  3129. ['Content']={264,'Congratulation','Item264'},
  3130. ['ArtType']=1,
  3131. ['ArtRes']='Common/ic_res_contract',
  3132. ['StartDropMoveTime']=0,
  3133. ['StartDropDlgId']=0,
  3134. ['EndDropDlgId']=0,
  3135. ['ClickDlgId']=692,
  3136. ['TriggerDlgId']=692,
  3137. ['CanSkip']=true,
  3138. ['ForceGuideId']=0,
  3139. },
  3140. [310100]={
  3141. ['Id']=310100,
  3142. ['Type']=5,
  3143. ['ArtType']=2,
  3144. ['ArtRes']='UIBigMap/PointRoleItemSarahIrine',
  3145. ['StartDropMoveTime']=0,
  3146. ['StartDropDlgId']=0,
  3147. ['EndDropDlgId']=683,
  3148. ['ClickDlgId']=693,
  3149. ['TriggerDlgId']=693,
  3150. ['CanSkip']=true,
  3151. ['ForceGuideId']=0,
  3152. },
  3153. [320010]={
  3154. ['Id']=320010,
  3155. ['Type']=3,
  3156. ['Content']={{517,2},'Congratulation','Item507'},
  3157. ['ArtType']=1,
  3158. ['ArtRes']='Common/ic_res_petpiece_mvp',
  3159. ['StartDropPos']={-76,265},
  3160. ['StartDropMoveTime']=1.0,
  3161. ['StartDropDlgId']=702,
  3162. ['EndDropDlgId']=0,
  3163. ['ClickDlgId']=704,
  3164. ['TriggerDlgId']=704,
  3165. ['CanSkip']=true,
  3166. ['ForceGuideId']=0,
  3167. },
  3168. [320020]={
  3169. ['Id']=320020,
  3170. ['Type']=3,
  3171. ['Content']={{101,2},'Congratulation','Item101'},
  3172. ['ArtType']=1,
  3173. ['ArtRes']='Items/elunium',
  3174. ['StartDropPos']={-446,2},
  3175. ['StartDropMoveTime']=1.0,
  3176. ['StartDropDlgId']=0,
  3177. ['EndDropDlgId']=0,
  3178. ['ClickDlgId']=705,
  3179. ['TriggerDlgId']=705,
  3180. ['CanSkip']=true,
  3181. ['ForceGuideId']=0,
  3182. },
  3183. [320030]={
  3184. ['Id']=320030,
  3185. ['Type']=3,
  3186. ['Content']={{494,20},'Congratulation','Item494'},
  3187. ['ArtType']=1,
  3188. ['ArtRes']='Items/Item_RandomStone',
  3189. ['StartDropMoveTime']=0,
  3190. ['StartDropDlgId']=0,
  3191. ['EndDropDlgId']=0,
  3192. ['ClickDlgId']=706,
  3193. ['TriggerDlgId']=706,
  3194. ['CanSkip']=true,
  3195. ['ForceGuideId']=0,
  3196. },
  3197. [320040]={
  3198. ['Id']=320040,
  3199. ['Type']=3,
  3200. ['Content']={{115,3},'Congratulation','Item115'},
  3201. ['ArtType']=1,
  3202. ['ArtRes']='Common/ic_moon_key',
  3203. ['StartDropMoveTime']=0,
  3204. ['StartDropDlgId']=0,
  3205. ['EndDropDlgId']=0,
  3206. ['ClickDlgId']=707,
  3207. ['TriggerDlgId']=707,
  3208. ['CanSkip']=true,
  3209. ['ForceGuideId']=0,
  3210. },
  3211. [320050]={
  3212. ['Id']=320050,
  3213. ['Type']=3,
  3214. ['Content']={{12840,5},'Congratulation','Item12840'},
  3215. ['ArtType']=1,
  3216. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  3217. ['StartDropMoveTime']=0,
  3218. ['StartDropDlgId']=0,
  3219. ['EndDropDlgId']=0,
  3220. ['ClickDlgId']=708,
  3221. ['TriggerDlgId']=708,
  3222. ['CanSkip']=true,
  3223. ['ForceGuideId']=0,
  3224. },
  3225. [320060]={
  3226. ['Id']=320060,
  3227. ['Type']=3,
  3228. ['Content']={607,'Congratulation','Item607'},
  3229. ['ArtType']=1,
  3230. ['ArtRes']='Items/EquipmentBox3',
  3231. ['StartDropPos']={318,166},
  3232. ['StartDropMoveTime']=1.0,
  3233. ['StartDropDlgId']=0,
  3234. ['EndDropDlgId']=0,
  3235. ['ClickDlgId']=709,
  3236. ['TriggerDlgId']=709,
  3237. ['CanSkip']=true,
  3238. ['ForceGuideId']=0,
  3239. },
  3240. [320070]={
  3241. ['Id']=320070,
  3242. ['Type']=3,
  3243. ['Content']={{496,2},'Congratulation','Item496'},
  3244. ['ArtType']=1,
  3245. ['ArtRes']='Items/item_dye_bluedye',
  3246. ['StartDropMoveTime']=0,
  3247. ['StartDropDlgId']=0,
  3248. ['EndDropDlgId']=0,
  3249. ['ClickDlgId']=710,
  3250. ['TriggerDlgId']=710,
  3251. ['CanSkip']=true,
  3252. ['ForceGuideId']=0,
  3253. },
  3254. [320080]={
  3255. ['Id']=320080,
  3256. ['Type']=3,
  3257. ['Content']={{115,2},'Congratulation','Item115'},
  3258. ['ArtType']=1,
  3259. ['ArtRes']='Common/ic_moon_key',
  3260. ['StartDropMoveTime']=0,
  3261. ['StartDropDlgId']=0,
  3262. ['EndDropDlgId']=0,
  3263. ['ClickDlgId']=711,
  3264. ['TriggerDlgId']=711,
  3265. ['CanSkip']=true,
  3266. ['ForceGuideId']=0,
  3267. },
  3268. [320090]={
  3269. ['Id']=320090,
  3270. ['Type']=3,
  3271. ['Content']={522,'Congratulation','Item522'},
  3272. ['ArtType']=1,
  3273. ['ArtRes']='Common/ic_res_petegg_purple',
  3274. ['StartDropMoveTime']=0,
  3275. ['StartDropDlgId']=0,
  3276. ['EndDropDlgId']=0,
  3277. ['ClickDlgId']=712,
  3278. ['TriggerDlgId']=712,
  3279. ['CanSkip']=true,
  3280. ['ForceGuideId']=0,
  3281. },
  3282. [320100]={
  3283. ['Id']=320100,
  3284. ['Type']=5,
  3285. ['ArtType']=2,
  3286. ['ArtRes']='UIBigMap/PointRoleItemShadowdragon',
  3287. ['StartDropMoveTime']=0,
  3288. ['StartDropDlgId']=0,
  3289. ['EndDropDlgId']=703,
  3290. ['ClickDlgId']=713,
  3291. ['TriggerDlgId']=713,
  3292. ['CanSkip']=true,
  3293. ['ForceGuideId']=0,
  3294. },
  3295. [330010]={
  3296. ['Id']=330010,
  3297. ['Type']=3,
  3298. ['Content']={{517,2},'Congratulation','Item507'},
  3299. ['ArtType']=1,
  3300. ['ArtRes']='Common/ic_res_petpiece_mvp',
  3301. ['StartDropPos']={-140,580},
  3302. ['StartDropMoveTime']=1.0,
  3303. ['StartDropDlgId']=722,
  3304. ['EndDropDlgId']=0,
  3305. ['ClickDlgId']=724,
  3306. ['TriggerDlgId']=724,
  3307. ['CanSkip']=true,
  3308. ['ForceGuideId']=0,
  3309. },
  3310. [330020]={
  3311. ['Id']=330020,
  3312. ['Type']=3,
  3313. ['Content']={{101,2},'Congratulation','Item101'},
  3314. ['ArtType']=1,
  3315. ['ArtRes']='Items/elunium',
  3316. ['StartDropMoveTime']=0,
  3317. ['StartDropDlgId']=0,
  3318. ['EndDropDlgId']=0,
  3319. ['ClickDlgId']=725,
  3320. ['TriggerDlgId']=725,
  3321. ['CanSkip']=true,
  3322. ['ForceGuideId']=0,
  3323. },
  3324. [330030]={
  3325. ['Id']=330030,
  3326. ['Type']=3,
  3327. ['Content']={{494,20},'Congratulation','Item494'},
  3328. ['ArtType']=1,
  3329. ['ArtRes']='Items/Item_RandomStone',
  3330. ['StartDropMoveTime']=0,
  3331. ['StartDropDlgId']=0,
  3332. ['EndDropDlgId']=0,
  3333. ['ClickDlgId']=726,
  3334. ['TriggerDlgId']=726,
  3335. ['CanSkip']=true,
  3336. ['ForceGuideId']=0,
  3337. },
  3338. [330040]={
  3339. ['Id']=330040,
  3340. ['Type']=3,
  3341. ['Content']={{115,3},'Congratulation','Item115'},
  3342. ['ArtType']=1,
  3343. ['ArtRes']='Common/ic_moon_key',
  3344. ['StartDropMoveTime']=0,
  3345. ['StartDropDlgId']=0,
  3346. ['EndDropDlgId']=0,
  3347. ['ClickDlgId']=727,
  3348. ['TriggerDlgId']=727,
  3349. ['CanSkip']=true,
  3350. ['ForceGuideId']=0,
  3351. },
  3352. [330050]={
  3353. ['Id']=330050,
  3354. ['Type']=3,
  3355. ['Content']={{12840,5},'Congratulation','Item12840'},
  3356. ['ArtType']=1,
  3357. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  3358. ['StartDropPos']={-181,-200},
  3359. ['StartDropMoveTime']=1.0,
  3360. ['StartDropDlgId']=0,
  3361. ['EndDropDlgId']=0,
  3362. ['ClickDlgId']=728,
  3363. ['TriggerDlgId']=728,
  3364. ['CanSkip']=true,
  3365. ['ForceGuideId']=0,
  3366. },
  3367. [330060]={
  3368. ['Id']=330060,
  3369. ['Type']=3,
  3370. ['Content']={607,'Congratulation','Item607'},
  3371. ['ArtType']=1,
  3372. ['ArtRes']='Items/EquipmentBox3',
  3373. ['StartDropMoveTime']=0,
  3374. ['StartDropDlgId']=0,
  3375. ['EndDropDlgId']=0,
  3376. ['ClickDlgId']=729,
  3377. ['TriggerDlgId']=729,
  3378. ['CanSkip']=true,
  3379. ['ForceGuideId']=0,
  3380. },
  3381. [330070]={
  3382. ['Id']=330070,
  3383. ['Type']=3,
  3384. ['Content']={{496,2},'Congratulation','Item496'},
  3385. ['ArtType']=1,
  3386. ['ArtRes']='Items/item_dye_bluedye',
  3387. ['StartDropPos']={335,-400},
  3388. ['StartDropMoveTime']=1.0,
  3389. ['StartDropDlgId']=0,
  3390. ['EndDropDlgId']=0,
  3391. ['ClickDlgId']=730,
  3392. ['TriggerDlgId']=730,
  3393. ['CanSkip']=true,
  3394. ['ForceGuideId']=0,
  3395. },
  3396. [330080]={
  3397. ['Id']=330080,
  3398. ['Type']=3,
  3399. ['Content']={{115,2},'Congratulation','Item115'},
  3400. ['ArtType']=1,
  3401. ['ArtRes']='Common/ic_moon_key',
  3402. ['StartDropMoveTime']=0,
  3403. ['StartDropDlgId']=0,
  3404. ['EndDropDlgId']=0,
  3405. ['ClickDlgId']=731,
  3406. ['TriggerDlgId']=731,
  3407. ['CanSkip']=true,
  3408. ['ForceGuideId']=0,
  3409. },
  3410. [330090]={
  3411. ['Id']=330090,
  3412. ['Type']=3,
  3413. ['Content']={522,'Congratulation','Item522'},
  3414. ['ArtType']=1,
  3415. ['ArtRes']='Common/ic_res_petegg_purple',
  3416. ['StartDropMoveTime']=0,
  3417. ['StartDropDlgId']=0,
  3418. ['EndDropDlgId']=0,
  3419. ['ClickDlgId']=732,
  3420. ['TriggerDlgId']=732,
  3421. ['CanSkip']=true,
  3422. ['ForceGuideId']=0,
  3423. },
  3424. [330100]={
  3425. ['Id']=330100,
  3426. ['Type']=5,
  3427. ['ArtType']=2,
  3428. ['ArtRes']='UIBigMap/PointRoleItemKnightofwindstorm',
  3429. ['StartDropMoveTime']=0,
  3430. ['StartDropDlgId']=0,
  3431. ['EndDropDlgId']=723,
  3432. ['ClickDlgId']=733,
  3433. ['TriggerDlgId']=733,
  3434. ['CanSkip']=true,
  3435. ['ForceGuideId']=0,
  3436. },
  3437. [340010]={
  3438. ['Id']=340010,
  3439. ['Type']=3,
  3440. ['Content']={{517,2},'Congratulation','Item507'},
  3441. ['ArtType']=1,
  3442. ['ArtRes']='Common/ic_res_petpiece_mvp',
  3443. ['StartDropPos']={352,185},
  3444. ['StartDropMoveTime']=1.0,
  3445. ['StartDropDlgId']=742,
  3446. ['EndDropDlgId']=0,
  3447. ['ClickDlgId']=744,
  3448. ['TriggerDlgId']=744,
  3449. ['CanSkip']=true,
  3450. ['ForceGuideId']=0,
  3451. },
  3452. [340020]={
  3453. ['Id']=340020,
  3454. ['Type']=3,
  3455. ['Content']={{101,2},'Congratulation','Item101'},
  3456. ['ArtType']=1,
  3457. ['ArtRes']='Items/elunium',
  3458. ['StartDropMoveTime']=0,
  3459. ['StartDropDlgId']=0,
  3460. ['EndDropDlgId']=0,
  3461. ['ClickDlgId']=745,
  3462. ['TriggerDlgId']=745,
  3463. ['CanSkip']=true,
  3464. ['ForceGuideId']=0,
  3465. },
  3466. [340030]={
  3467. ['Id']=340030,
  3468. ['Type']=3,
  3469. ['Content']={{494,20},'Congratulation','Item494'},
  3470. ['ArtType']=1,
  3471. ['ArtRes']='Items/Item_RandomStone',
  3472. ['StartDropMoveTime']=0,
  3473. ['StartDropDlgId']=0,
  3474. ['EndDropDlgId']=0,
  3475. ['ClickDlgId']=746,
  3476. ['TriggerDlgId']=746,
  3477. ['CanSkip']=true,
  3478. ['ForceGuideId']=0,
  3479. },
  3480. [340040]={
  3481. ['Id']=340040,
  3482. ['Type']=3,
  3483. ['Content']={{115,3},'Congratulation','Item115'},
  3484. ['ArtType']=1,
  3485. ['ArtRes']='Common/ic_moon_key',
  3486. ['StartDropMoveTime']=0,
  3487. ['StartDropDlgId']=0,
  3488. ['EndDropDlgId']=0,
  3489. ['ClickDlgId']=747,
  3490. ['TriggerDlgId']=747,
  3491. ['CanSkip']=true,
  3492. ['ForceGuideId']=0,
  3493. },
  3494. [340050]={
  3495. ['Id']=340050,
  3496. ['Type']=3,
  3497. ['Content']={{12840,5},'Congratulation','Item12840'},
  3498. ['ArtType']=1,
  3499. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  3500. ['StartDropPos']={-327,191},
  3501. ['StartDropMoveTime']=1.0,
  3502. ['StartDropDlgId']=0,
  3503. ['EndDropDlgId']=0,
  3504. ['ClickDlgId']=748,
  3505. ['TriggerDlgId']=748,
  3506. ['CanSkip']=true,
  3507. ['ForceGuideId']=0,
  3508. },
  3509. [340060]={
  3510. ['Id']=340060,
  3511. ['Type']=3,
  3512. ['Content']={607,'Congratulation','Item607'},
  3513. ['ArtType']=1,
  3514. ['ArtRes']='Items/EquipmentBox3',
  3515. ['StartDropMoveTime']=0,
  3516. ['StartDropDlgId']=0,
  3517. ['EndDropDlgId']=0,
  3518. ['ClickDlgId']=749,
  3519. ['TriggerDlgId']=749,
  3520. ['CanSkip']=true,
  3521. ['ForceGuideId']=0,
  3522. },
  3523. [340070]={
  3524. ['Id']=340070,
  3525. ['Type']=3,
  3526. ['Content']={{496,2},'Congratulation','Item496'},
  3527. ['ArtType']=1,
  3528. ['ArtRes']='Items/item_dye_bluedye',
  3529. ['StartDropMoveTime']=0,
  3530. ['StartDropDlgId']=0,
  3531. ['EndDropDlgId']=0,
  3532. ['ClickDlgId']=750,
  3533. ['TriggerDlgId']=750,
  3534. ['CanSkip']=true,
  3535. ['ForceGuideId']=0,
  3536. },
  3537. [340080]={
  3538. ['Id']=340080,
  3539. ['Type']=3,
  3540. ['Content']={{115,2},'Congratulation','Item115'},
  3541. ['ArtType']=1,
  3542. ['ArtRes']='Common/ic_moon_key',
  3543. ['StartDropMoveTime']=0,
  3544. ['StartDropDlgId']=0,
  3545. ['EndDropDlgId']=0,
  3546. ['ClickDlgId']=751,
  3547. ['TriggerDlgId']=751,
  3548. ['CanSkip']=true,
  3549. ['ForceGuideId']=0,
  3550. },
  3551. [340090]={
  3552. ['Id']=340090,
  3553. ['Type']=3,
  3554. ['Content']={522,'Congratulation','Item522'},
  3555. ['ArtType']=1,
  3556. ['ArtRes']='Common/ic_res_petegg_purple',
  3557. ['StartDropMoveTime']=0,
  3558. ['StartDropDlgId']=0,
  3559. ['EndDropDlgId']=0,
  3560. ['ClickDlgId']=752,
  3561. ['TriggerDlgId']=752,
  3562. ['CanSkip']=true,
  3563. ['ForceGuideId']=0,
  3564. },
  3565. [340100]={
  3566. ['Id']=340100,
  3567. ['Type']=5,
  3568. ['ArtType']=2,
  3569. ['ArtRes']='UIBigMap/PointRoleItemNidhoggr',
  3570. ['StartDropMoveTime']=0,
  3571. ['StartDropDlgId']=0,
  3572. ['EndDropDlgId']=743,
  3573. ['ClickDlgId']=753,
  3574. ['TriggerDlgId']=753,
  3575. ['CanSkip']=true,
  3576. ['ForceGuideId']=0,
  3577. },
  3578. [350010]={
  3579. ['Id']=350010,
  3580. ['Type']=3,
  3581. ['Content']={{517,2},'Congratulation','Item507'},
  3582. ['ArtType']=1,
  3583. ['ArtRes']='Common/ic_res_petpiece_mvp',
  3584. ['StartDropPos']={880,-200},
  3585. ['StartDropMoveTime']=1.0,
  3586. ['StartDropDlgId']=762,
  3587. ['EndDropDlgId']=0,
  3588. ['ClickDlgId']=764,
  3589. ['TriggerDlgId']=764,
  3590. ['CanSkip']=true,
  3591. ['ForceGuideId']=0,
  3592. },
  3593. [350020]={
  3594. ['Id']=350020,
  3595. ['Type']=3,
  3596. ['Content']={{101,2},'Congratulation','Item101'},
  3597. ['ArtType']=1,
  3598. ['ArtRes']='Items/elunium',
  3599. ['StartDropPos']={-636,-155},
  3600. ['StartDropMoveTime']=1.0,
  3601. ['StartDropDlgId']=0,
  3602. ['EndDropDlgId']=0,
  3603. ['ClickDlgId']=765,
  3604. ['TriggerDlgId']=765,
  3605. ['CanSkip']=true,
  3606. ['ForceGuideId']=0,
  3607. },
  3608. [350030]={
  3609. ['Id']=350030,
  3610. ['Type']=3,
  3611. ['Content']={{494,20},'Congratulation','Item494'},
  3612. ['ArtType']=1,
  3613. ['ArtRes']='Items/Item_RandomStone',
  3614. ['StartDropMoveTime']=0,
  3615. ['StartDropDlgId']=0,
  3616. ['EndDropDlgId']=0,
  3617. ['ClickDlgId']=766,
  3618. ['TriggerDlgId']=766,
  3619. ['CanSkip']=true,
  3620. ['ForceGuideId']=0,
  3621. },
  3622. [350040]={
  3623. ['Id']=350040,
  3624. ['Type']=3,
  3625. ['Content']={{115,3},'Congratulation','Item115'},
  3626. ['ArtType']=1,
  3627. ['ArtRes']='Common/ic_moon_key',
  3628. ['StartDropMoveTime']=0,
  3629. ['StartDropDlgId']=0,
  3630. ['EndDropDlgId']=0,
  3631. ['ClickDlgId']=767,
  3632. ['TriggerDlgId']=767,
  3633. ['CanSkip']=true,
  3634. ['ForceGuideId']=0,
  3635. },
  3636. [350050]={
  3637. ['Id']=350050,
  3638. ['Type']=3,
  3639. ['Content']={{12840,5},'Congratulation','Item12840'},
  3640. ['ArtType']=1,
  3641. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  3642. ['StartDropPos']={650,100},
  3643. ['StartDropMoveTime']=1.0,
  3644. ['StartDropDlgId']=0,
  3645. ['EndDropDlgId']=0,
  3646. ['ClickDlgId']=768,
  3647. ['TriggerDlgId']=768,
  3648. ['CanSkip']=true,
  3649. ['ForceGuideId']=0,
  3650. },
  3651. [350060]={
  3652. ['Id']=350060,
  3653. ['Type']=3,
  3654. ['Content']={607,'Congratulation','Item607'},
  3655. ['ArtType']=1,
  3656. ['ArtRes']='Items/EquipmentBox3',
  3657. ['StartDropMoveTime']=0,
  3658. ['StartDropDlgId']=0,
  3659. ['EndDropDlgId']=0,
  3660. ['ClickDlgId']=769,
  3661. ['TriggerDlgId']=769,
  3662. ['CanSkip']=true,
  3663. ['ForceGuideId']=0,
  3664. },
  3665. [350070]={
  3666. ['Id']=350070,
  3667. ['Type']=3,
  3668. ['Content']={{496,2},'Congratulation','Item496'},
  3669. ['ArtType']=1,
  3670. ['ArtRes']='Items/item_dye_bluedye',
  3671. ['StartDropPos']={-74,280},
  3672. ['StartDropMoveTime']=1.0,
  3673. ['StartDropDlgId']=0,
  3674. ['EndDropDlgId']=0,
  3675. ['ClickDlgId']=770,
  3676. ['TriggerDlgId']=770,
  3677. ['CanSkip']=true,
  3678. ['ForceGuideId']=0,
  3679. },
  3680. [350080]={
  3681. ['Id']=350080,
  3682. ['Type']=3,
  3683. ['Content']={{115,2},'Congratulation','Item115'},
  3684. ['ArtType']=1,
  3685. ['ArtRes']='Common/ic_moon_key',
  3686. ['StartDropMoveTime']=0,
  3687. ['StartDropDlgId']=0,
  3688. ['EndDropDlgId']=0,
  3689. ['ClickDlgId']=771,
  3690. ['TriggerDlgId']=771,
  3691. ['CanSkip']=true,
  3692. ['ForceGuideId']=0,
  3693. },
  3694. [350090]={
  3695. ['Id']=350090,
  3696. ['Type']=3,
  3697. ['Content']={522,'Congratulation','Item522'},
  3698. ['ArtType']=1,
  3699. ['ArtRes']='Common/ic_res_petegg_purple',
  3700. ['StartDropMoveTime']=0,
  3701. ['StartDropDlgId']=0,
  3702. ['EndDropDlgId']=0,
  3703. ['ClickDlgId']=772,
  3704. ['TriggerDlgId']=772,
  3705. ['CanSkip']=true,
  3706. ['ForceGuideId']=0,
  3707. },
  3708. [350100]={
  3709. ['Id']=350100,
  3710. ['Type']=5,
  3711. ['ArtType']=2,
  3712. ['ArtRes']='UIBigMap/PointRoleItemThanatos',
  3713. ['StartDropMoveTime']=0,
  3714. ['StartDropDlgId']=0,
  3715. ['EndDropDlgId']=763,
  3716. ['ClickDlgId']=773,
  3717. ['TriggerDlgId']=773,
  3718. ['CanSkip']=true,
  3719. ['ForceGuideId']=0,
  3720. },
  3721. [360010]={
  3722. ['Id']=360010,
  3723. ['Type']=3,
  3724. ['Content']={{517,2},'Congratulation','Item507'},
  3725. ['ArtType']=1,
  3726. ['ArtRes']='Common/ic_res_petpiece_mvp',
  3727. ['StartDropPos']={647,611},
  3728. ['StartDropMoveTime']=1.0,
  3729. ['StartDropDlgId']=782,
  3730. ['EndDropDlgId']=0,
  3731. ['ClickDlgId']=784,
  3732. ['TriggerDlgId']=784,
  3733. ['CanSkip']=true,
  3734. ['ForceGuideId']=0,
  3735. },
  3736. [360020]={
  3737. ['Id']=360020,
  3738. ['Type']=3,
  3739. ['Content']={{101,2},'Congratulation','Item101'},
  3740. ['ArtType']=1,
  3741. ['ArtRes']='Items/elunium',
  3742. ['StartDropMoveTime']=0,
  3743. ['StartDropDlgId']=0,
  3744. ['EndDropDlgId']=0,
  3745. ['ClickDlgId']=785,
  3746. ['TriggerDlgId']=785,
  3747. ['CanSkip']=true,
  3748. ['ForceGuideId']=0,
  3749. },
  3750. [360030]={
  3751. ['Id']=360030,
  3752. ['Type']=3,
  3753. ['Content']={{494,20},'Congratulation','Item494'},
  3754. ['ArtType']=1,
  3755. ['ArtRes']='Items/Item_RandomStone',
  3756. ['StartDropMoveTime']=0,
  3757. ['StartDropDlgId']=0,
  3758. ['EndDropDlgId']=0,
  3759. ['ClickDlgId']=786,
  3760. ['TriggerDlgId']=786,
  3761. ['CanSkip']=true,
  3762. ['ForceGuideId']=0,
  3763. },
  3764. [360040]={
  3765. ['Id']=360040,
  3766. ['Type']=3,
  3767. ['Content']={{115,3},'Congratulation','Item115'},
  3768. ['ArtType']=1,
  3769. ['ArtRes']='Common/ic_moon_key',
  3770. ['StartDropMoveTime']=0,
  3771. ['StartDropDlgId']=0,
  3772. ['EndDropDlgId']=0,
  3773. ['ClickDlgId']=787,
  3774. ['TriggerDlgId']=787,
  3775. ['CanSkip']=true,
  3776. ['ForceGuideId']=0,
  3777. },
  3778. [360050]={
  3779. ['Id']=360050,
  3780. ['Type']=3,
  3781. ['Content']={{12840,5},'Congratulation','Item12840'},
  3782. ['ArtType']=1,
  3783. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  3784. ['StartDropPos']={181,-400},
  3785. ['StartDropMoveTime']=1.0,
  3786. ['StartDropDlgId']=0,
  3787. ['EndDropDlgId']=0,
  3788. ['ClickDlgId']=788,
  3789. ['TriggerDlgId']=788,
  3790. ['CanSkip']=true,
  3791. ['ForceGuideId']=0,
  3792. },
  3793. [360060]={
  3794. ['Id']=360060,
  3795. ['Type']=3,
  3796. ['Content']={607,'Congratulation','Item607'},
  3797. ['ArtType']=1,
  3798. ['ArtRes']='Items/EquipmentBox3',
  3799. ['StartDropMoveTime']=0,
  3800. ['StartDropDlgId']=0,
  3801. ['EndDropDlgId']=0,
  3802. ['ClickDlgId']=789,
  3803. ['TriggerDlgId']=789,
  3804. ['CanSkip']=true,
  3805. ['ForceGuideId']=0,
  3806. },
  3807. [360070]={
  3808. ['Id']=360070,
  3809. ['Type']=3,
  3810. ['Content']={{496,2},'Congratulation','Item496'},
  3811. ['ArtType']=1,
  3812. ['ArtRes']='Items/item_dye_bluedye',
  3813. ['StartDropMoveTime']=0,
  3814. ['StartDropDlgId']=0,
  3815. ['EndDropDlgId']=0,
  3816. ['ClickDlgId']=790,
  3817. ['TriggerDlgId']=790,
  3818. ['CanSkip']=true,
  3819. ['ForceGuideId']=0,
  3820. },
  3821. [360080]={
  3822. ['Id']=360080,
  3823. ['Type']=3,
  3824. ['Content']={{115,2},'Congratulation','Item115'},
  3825. ['ArtType']=1,
  3826. ['ArtRes']='Common/ic_moon_key',
  3827. ['StartDropMoveTime']=0,
  3828. ['StartDropDlgId']=0,
  3829. ['EndDropDlgId']=0,
  3830. ['ClickDlgId']=791,
  3831. ['TriggerDlgId']=791,
  3832. ['CanSkip']=true,
  3833. ['ForceGuideId']=0,
  3834. },
  3835. [360090]={
  3836. ['Id']=360090,
  3837. ['Type']=3,
  3838. ['Content']={264,'Congratulation','Item264'},
  3839. ['ArtType']=1,
  3840. ['ArtRes']='Common/ic_res_contract',
  3841. ['StartDropPos']={-650,-640},
  3842. ['StartDropMoveTime']=1.0,
  3843. ['StartDropDlgId']=0,
  3844. ['EndDropDlgId']=0,
  3845. ['ClickDlgId']=792,
  3846. ['TriggerDlgId']=792,
  3847. ['CanSkip']=true,
  3848. ['ForceGuideId']=0,
  3849. },
  3850. [360100]={
  3851. ['Id']=360100,
  3852. ['Type']=5,
  3853. ['ArtType']=2,
  3854. ['ArtRes']='UIBigMap/PointRoleItemLostdragon',
  3855. ['StartDropMoveTime']=0,
  3856. ['StartDropDlgId']=0,
  3857. ['EndDropDlgId']=783,
  3858. ['ClickDlgId']=793,
  3859. ['TriggerDlgId']=793,
  3860. ['CanSkip']=true,
  3861. ['ForceGuideId']=0,
  3862. },
  3863. [370010]={
  3864. ['Id']=370010,
  3865. ['Type']=3,
  3866. ['Content']={{517,2},'Congratulation','Item507'},
  3867. ['ArtType']=1,
  3868. ['ArtRes']='Common/ic_res_petpiece_mvp',
  3869. ['StartDropPos']={333,0},
  3870. ['StartDropMoveTime']=1.0,
  3871. ['StartDropDlgId']=796,
  3872. ['EndDropDlgId']=0,
  3873. ['ClickDlgId']=798,
  3874. ['TriggerDlgId']=798,
  3875. ['CanSkip']=true,
  3876. ['ForceGuideId']=0,
  3877. },
  3878. [370020]={
  3879. ['Id']=370020,
  3880. ['Type']=3,
  3881. ['Content']={{101,2},'Congratulation','Item101'},
  3882. ['ArtType']=1,
  3883. ['ArtRes']='Items/elunium',
  3884. ['StartDropMoveTime']=0,
  3885. ['StartDropDlgId']=0,
  3886. ['EndDropDlgId']=0,
  3887. ['ClickDlgId']=799,
  3888. ['TriggerDlgId']=799,
  3889. ['CanSkip']=true,
  3890. ['ForceGuideId']=0,
  3891. },
  3892. [370030]={
  3893. ['Id']=370030,
  3894. ['Type']=3,
  3895. ['Content']={{494,20},'Congratulation','Item494'},
  3896. ['ArtType']=1,
  3897. ['ArtRes']='Items/Item_RandomStone',
  3898. ['StartDropPos']={660,0},
  3899. ['StartDropMoveTime']=0,
  3900. ['StartDropDlgId']=0,
  3901. ['EndDropDlgId']=0,
  3902. ['ClickDlgId']=800,
  3903. ['TriggerDlgId']=800,
  3904. ['CanSkip']=true,
  3905. ['ForceGuideId']=0,
  3906. },
  3907. [370040]={
  3908. ['Id']=370040,
  3909. ['Type']=3,
  3910. ['Content']={{115,3},'Congratulation','Item115'},
  3911. ['ArtType']=1,
  3912. ['ArtRes']='Common/ic_moon_key',
  3913. ['StartDropMoveTime']=0,
  3914. ['StartDropDlgId']=0,
  3915. ['EndDropDlgId']=0,
  3916. ['ClickDlgId']=801,
  3917. ['TriggerDlgId']=801,
  3918. ['CanSkip']=true,
  3919. ['ForceGuideId']=0,
  3920. },
  3921. [370050]={
  3922. ['Id']=370050,
  3923. ['Type']=3,
  3924. ['Content']={{12840,5},'Congratulation','Item12840'},
  3925. ['ArtType']=1,
  3926. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  3927. ['StartDropPos']={-27,0},
  3928. ['StartDropMoveTime']=0,
  3929. ['StartDropDlgId']=0,
  3930. ['EndDropDlgId']=0,
  3931. ['ClickDlgId']=802,
  3932. ['TriggerDlgId']=802,
  3933. ['CanSkip']=true,
  3934. ['ForceGuideId']=0,
  3935. },
  3936. [370060]={
  3937. ['Id']=370060,
  3938. ['Type']=3,
  3939. ['Content']={607,'Congratulation','Item607'},
  3940. ['ArtType']=1,
  3941. ['ArtRes']='Items/EquipmentBox3',
  3942. ['StartDropMoveTime']=0,
  3943. ['StartDropDlgId']=0,
  3944. ['EndDropDlgId']=0,
  3945. ['ClickDlgId']=803,
  3946. ['TriggerDlgId']=803,
  3947. ['CanSkip']=true,
  3948. ['ForceGuideId']=0,
  3949. },
  3950. [370070]={
  3951. ['Id']=370070,
  3952. ['Type']=3,
  3953. ['Content']={{496,2},'Congratulation','Item496'},
  3954. ['ArtType']=1,
  3955. ['ArtRes']='Items/item_dye_bluedye',
  3956. ['StartDropPos']={-660,0},
  3957. ['StartDropMoveTime']=0,
  3958. ['StartDropDlgId']=0,
  3959. ['EndDropDlgId']=0,
  3960. ['ClickDlgId']=804,
  3961. ['TriggerDlgId']=804,
  3962. ['CanSkip']=true,
  3963. ['ForceGuideId']=0,
  3964. },
  3965. [370080]={
  3966. ['Id']=370080,
  3967. ['Type']=3,
  3968. ['Content']={{115,2},'Congratulation','Item115'},
  3969. ['ArtType']=1,
  3970. ['ArtRes']='Common/ic_moon_key',
  3971. ['StartDropMoveTime']=0,
  3972. ['StartDropDlgId']=0,
  3973. ['EndDropDlgId']=0,
  3974. ['ClickDlgId']=805,
  3975. ['TriggerDlgId']=805,
  3976. ['CanSkip']=true,
  3977. ['ForceGuideId']=0,
  3978. },
  3979. [370090]={
  3980. ['Id']=370090,
  3981. ['Type']=3,
  3982. ['Content']={522,'Congratulation','Item522'},
  3983. ['ArtType']=1,
  3984. ['ArtRes']='Common/ic_res_petegg_purple',
  3985. ['StartDropPos']={-110,0},
  3986. ['StartDropMoveTime']=0,
  3987. ['StartDropDlgId']=0,
  3988. ['EndDropDlgId']=0,
  3989. ['ClickDlgId']=806,
  3990. ['TriggerDlgId']=806,
  3991. ['CanSkip']=true,
  3992. ['ForceGuideId']=0,
  3993. },
  3994. [370100]={
  3995. ['Id']=370100,
  3996. ['Type']=5,
  3997. ['ArtType']=2,
  3998. ['ArtRes']='UIBigMap/PointRoleItemAlvis',
  3999. ['StartDropMoveTime']=0,
  4000. ['StartDropDlgId']=0,
  4001. ['EndDropDlgId']=797,
  4002. ['ClickDlgId']=807,
  4003. ['TriggerDlgId']=807,
  4004. ['CanSkip']=true,
  4005. ['ForceGuideId']=0,
  4006. },
  4007. [380010]={
  4008. ['Id']=380010,
  4009. ['Type']=3,
  4010. ['Content']={{517,2},'Congratulation','Item507'},
  4011. ['ArtType']=1,
  4012. ['ArtRes']='Common/ic_res_petpiece_mvp',
  4013. ['StartDropPos']={222,-155},
  4014. ['StartDropMoveTime']=1.0,
  4015. ['StartDropDlgId']=255,
  4016. ['EndDropDlgId']=0,
  4017. ['ClickDlgId']=255,
  4018. ['TriggerDlgId']=255,
  4019. ['CanSkip']=true,
  4020. ['ForceGuideId']=0,
  4021. },
  4022. [380020]={
  4023. ['Id']=380020,
  4024. ['Type']=3,
  4025. ['Content']={{101,2},'Congratulation','Item101'},
  4026. ['ArtType']=1,
  4027. ['ArtRes']='Items/elunium',
  4028. ['StartDropMoveTime']=0,
  4029. ['StartDropDlgId']=0,
  4030. ['EndDropDlgId']=0,
  4031. ['ClickDlgId']=255,
  4032. ['TriggerDlgId']=255,
  4033. ['CanSkip']=true,
  4034. ['ForceGuideId']=0,
  4035. },
  4036. [380030]={
  4037. ['Id']=380030,
  4038. ['Type']=3,
  4039. ['Content']={{494,20},'Congratulation','Item494'},
  4040. ['ArtType']=1,
  4041. ['ArtRes']='Items/Item_RandomStone',
  4042. ['StartDropMoveTime']=0,
  4043. ['StartDropDlgId']=0,
  4044. ['EndDropDlgId']=0,
  4045. ['ClickDlgId']=255,
  4046. ['TriggerDlgId']=255,
  4047. ['CanSkip']=true,
  4048. ['ForceGuideId']=0,
  4049. },
  4050. [380040]={
  4051. ['Id']=380040,
  4052. ['Type']=3,
  4053. ['Content']={{115,3},'Congratulation','Item115'},
  4054. ['ArtType']=1,
  4055. ['ArtRes']='Common/ic_moon_key',
  4056. ['StartDropPos']={-395,-28},
  4057. ['StartDropMoveTime']=1.0,
  4058. ['StartDropDlgId']=0,
  4059. ['EndDropDlgId']=0,
  4060. ['ClickDlgId']=255,
  4061. ['TriggerDlgId']=255,
  4062. ['CanSkip']=true,
  4063. ['ForceGuideId']=0,
  4064. },
  4065. [380050]={
  4066. ['Id']=380050,
  4067. ['Type']=3,
  4068. ['Content']={{12840,5},'Congratulation','Item12840'},
  4069. ['ArtType']=1,
  4070. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  4071. ['StartDropMoveTime']=0,
  4072. ['StartDropDlgId']=0,
  4073. ['EndDropDlgId']=0,
  4074. ['ClickDlgId']=255,
  4075. ['TriggerDlgId']=255,
  4076. ['CanSkip']=true,
  4077. ['ForceGuideId']=0,
  4078. },
  4079. [380060]={
  4080. ['Id']=380060,
  4081. ['Type']=3,
  4082. ['Content']={607,'Congratulation','Item607'},
  4083. ['ArtType']=1,
  4084. ['ArtRes']='Items/EquipmentBox3',
  4085. ['StartDropMoveTime']=0,
  4086. ['StartDropDlgId']=0,
  4087. ['EndDropDlgId']=0,
  4088. ['ClickDlgId']=255,
  4089. ['TriggerDlgId']=255,
  4090. ['CanSkip']=true,
  4091. ['ForceGuideId']=0,
  4092. },
  4093. [380070]={
  4094. ['Id']=380070,
  4095. ['Type']=3,
  4096. ['Content']={{496,2},'Congratulation','Item496'},
  4097. ['ArtType']=1,
  4098. ['ArtRes']='Items/item_dye_bluedye',
  4099. ['StartDropMoveTime']=0,
  4100. ['StartDropDlgId']=0,
  4101. ['EndDropDlgId']=0,
  4102. ['ClickDlgId']=255,
  4103. ['TriggerDlgId']=255,
  4104. ['CanSkip']=true,
  4105. ['ForceGuideId']=0,
  4106. },
  4107. [380080]={
  4108. ['Id']=380080,
  4109. ['Type']=3,
  4110. ['Content']={{115,2},'Congratulation','Item115'},
  4111. ['ArtType']=1,
  4112. ['ArtRes']='Common/ic_moon_key',
  4113. ['StartDropMoveTime']=0,
  4114. ['StartDropDlgId']=0,
  4115. ['EndDropDlgId']=0,
  4116. ['ClickDlgId']=255,
  4117. ['TriggerDlgId']=255,
  4118. ['CanSkip']=true,
  4119. ['ForceGuideId']=0,
  4120. },
  4121. [380090]={
  4122. ['Id']=380090,
  4123. ['Type']=3,
  4124. ['Content']={522,'Congratulation','Item522'},
  4125. ['ArtType']=1,
  4126. ['ArtRes']='Common/ic_res_petegg_purple',
  4127. ['StartDropMoveTime']=0,
  4128. ['StartDropDlgId']=0,
  4129. ['EndDropDlgId']=0,
  4130. ['ClickDlgId']=255,
  4131. ['TriggerDlgId']=255,
  4132. ['CanSkip']=true,
  4133. ['ForceGuideId']=0,
  4134. },
  4135. [380100]={
  4136. ['Id']=380100,
  4137. ['Type']=5,
  4138. ['ArtType']=2,
  4139. ['ArtRes']='UIBigMap/PointRoleItemRegin',
  4140. ['StartDropMoveTime']=0,
  4141. ['StartDropDlgId']=0,
  4142. ['EndDropDlgId']=255,
  4143. ['ClickDlgId']=255,
  4144. ['TriggerDlgId']=255,
  4145. ['CanSkip']=true,
  4146. ['ForceGuideId']=0,
  4147. },
  4148. [390010]={
  4149. ['Id']=390010,
  4150. ['Type']=3,
  4151. ['Content']={{517,2},'Congratulation','Item507'},
  4152. ['ArtType']=1,
  4153. ['ArtRes']='Common/ic_res_petpiece_mvp',
  4154. ['StartDropPos']={-412,0},
  4155. ['StartDropMoveTime']=1.0,
  4156. ['StartDropDlgId']=255,
  4157. ['EndDropDlgId']=0,
  4158. ['ClickDlgId']=255,
  4159. ['TriggerDlgId']=255,
  4160. ['CanSkip']=true,
  4161. ['ForceGuideId']=0,
  4162. },
  4163. [390020]={
  4164. ['Id']=390020,
  4165. ['Type']=3,
  4166. ['Content']={{101,2},'Congratulation','Item101'},
  4167. ['ArtType']=1,
  4168. ['ArtRes']='Items/elunium',
  4169. ['StartDropMoveTime']=0,
  4170. ['StartDropDlgId']=0,
  4171. ['EndDropDlgId']=0,
  4172. ['ClickDlgId']=255,
  4173. ['TriggerDlgId']=255,
  4174. ['CanSkip']=true,
  4175. ['ForceGuideId']=0,
  4176. },
  4177. [390030]={
  4178. ['Id']=390030,
  4179. ['Type']=3,
  4180. ['Content']={{494,20},'Congratulation','Item494'},
  4181. ['ArtType']=1,
  4182. ['ArtRes']='Items/Item_RandomStone',
  4183. ['StartDropMoveTime']=0,
  4184. ['StartDropDlgId']=0,
  4185. ['EndDropDlgId']=0,
  4186. ['ClickDlgId']=255,
  4187. ['TriggerDlgId']=255,
  4188. ['CanSkip']=true,
  4189. ['ForceGuideId']=0,
  4190. },
  4191. [390040]={
  4192. ['Id']=390040,
  4193. ['Type']=3,
  4194. ['Content']={{115,3},'Congratulation','Item115'},
  4195. ['ArtType']=1,
  4196. ['ArtRes']='Common/ic_moon_key',
  4197. ['StartDropPos']={500,0},
  4198. ['StartDropMoveTime']=1.0,
  4199. ['StartDropDlgId']=0,
  4200. ['EndDropDlgId']=0,
  4201. ['ClickDlgId']=255,
  4202. ['TriggerDlgId']=255,
  4203. ['CanSkip']=true,
  4204. ['ForceGuideId']=0,
  4205. },
  4206. [390050]={
  4207. ['Id']=390050,
  4208. ['Type']=3,
  4209. ['Content']={{12840,5},'Congratulation','Item12840'},
  4210. ['ArtType']=1,
  4211. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  4212. ['StartDropMoveTime']=0,
  4213. ['StartDropDlgId']=0,
  4214. ['EndDropDlgId']=0,
  4215. ['ClickDlgId']=255,
  4216. ['TriggerDlgId']=255,
  4217. ['CanSkip']=true,
  4218. ['ForceGuideId']=0,
  4219. },
  4220. [390060]={
  4221. ['Id']=390060,
  4222. ['Type']=3,
  4223. ['Content']={607,'Congratulation','Item607'},
  4224. ['ArtType']=1,
  4225. ['ArtRes']='Items/EquipmentBox3',
  4226. ['StartDropPos']={-200,0},
  4227. ['StartDropMoveTime']=1.0,
  4228. ['StartDropDlgId']=0,
  4229. ['EndDropDlgId']=0,
  4230. ['ClickDlgId']=255,
  4231. ['TriggerDlgId']=255,
  4232. ['CanSkip']=true,
  4233. ['ForceGuideId']=0,
  4234. },
  4235. [390070]={
  4236. ['Id']=390070,
  4237. ['Type']=3,
  4238. ['Content']={{496,2},'Congratulation','Item496'},
  4239. ['ArtType']=1,
  4240. ['ArtRes']='Items/item_dye_bluedye',
  4241. ['StartDropMoveTime']=0,
  4242. ['StartDropDlgId']=0,
  4243. ['EndDropDlgId']=0,
  4244. ['ClickDlgId']=255,
  4245. ['TriggerDlgId']=255,
  4246. ['CanSkip']=true,
  4247. ['ForceGuideId']=0,
  4248. },
  4249. [390080]={
  4250. ['Id']=390080,
  4251. ['Type']=3,
  4252. ['Content']={{115,2},'Congratulation','Item115'},
  4253. ['ArtType']=1,
  4254. ['ArtRes']='Common/ic_moon_key',
  4255. ['StartDropMoveTime']=0,
  4256. ['StartDropDlgId']=0,
  4257. ['EndDropDlgId']=0,
  4258. ['ClickDlgId']=255,
  4259. ['TriggerDlgId']=255,
  4260. ['CanSkip']=true,
  4261. ['ForceGuideId']=0,
  4262. },
  4263. [390090]={
  4264. ['Id']=390090,
  4265. ['Type']=3,
  4266. ['Content']={522,'Congratulation','Item522'},
  4267. ['ArtType']=1,
  4268. ['ArtRes']='Common/ic_res_petegg_purple',
  4269. ['StartDropPos']={250,0},
  4270. ['StartDropMoveTime']=1.0,
  4271. ['StartDropDlgId']=0,
  4272. ['EndDropDlgId']=0,
  4273. ['ClickDlgId']=255,
  4274. ['TriggerDlgId']=255,
  4275. ['CanSkip']=true,
  4276. ['ForceGuideId']=0,
  4277. },
  4278. [390100]={
  4279. ['Id']=390100,
  4280. ['Type']=5,
  4281. ['ArtType']=2,
  4282. ['ArtRes']='UIBigMap/PointRoleItemLordofdeath',
  4283. ['StartDropMoveTime']=0,
  4284. ['StartDropDlgId']=0,
  4285. ['EndDropDlgId']=255,
  4286. ['ClickDlgId']=255,
  4287. ['TriggerDlgId']=255,
  4288. ['CanSkip']=true,
  4289. ['ForceGuideId']=0,
  4290. },
  4291. [400010]={
  4292. ['Id']=400010,
  4293. ['Type']=3,
  4294. ['Content']={{517,2},'Congratulation','Item507'},
  4295. ['ArtType']=1,
  4296. ['ArtRes']='Common/ic_res_petpiece_mvp',
  4297. ['StartDropPos']={-478,-8},
  4298. ['StartDropMoveTime']=1.0,
  4299. ['StartDropDlgId']=255,
  4300. ['EndDropDlgId']=0,
  4301. ['ClickDlgId']=255,
  4302. ['TriggerDlgId']=255,
  4303. ['CanSkip']=true,
  4304. ['ForceGuideId']=0,
  4305. },
  4306. [400020]={
  4307. ['Id']=400020,
  4308. ['Type']=3,
  4309. ['Content']={{101,2},'Congratulation','Item101'},
  4310. ['ArtType']=1,
  4311. ['ArtRes']='Items/elunium',
  4312. ['StartDropMoveTime']=0,
  4313. ['StartDropDlgId']=0,
  4314. ['EndDropDlgId']=0,
  4315. ['ClickDlgId']=255,
  4316. ['TriggerDlgId']=255,
  4317. ['CanSkip']=true,
  4318. ['ForceGuideId']=0,
  4319. },
  4320. [400030]={
  4321. ['Id']=400030,
  4322. ['Type']=3,
  4323. ['Content']={{494,20},'Congratulation','Item494'},
  4324. ['ArtType']=1,
  4325. ['ArtRes']='Items/Item_RandomStone',
  4326. ['StartDropMoveTime']=0,
  4327. ['StartDropDlgId']=0,
  4328. ['EndDropDlgId']=0,
  4329. ['ClickDlgId']=255,
  4330. ['TriggerDlgId']=255,
  4331. ['CanSkip']=true,
  4332. ['ForceGuideId']=0,
  4333. },
  4334. [400040]={
  4335. ['Id']=400040,
  4336. ['Type']=3,
  4337. ['Content']={{115,3},'Congratulation','Item115'},
  4338. ['ArtType']=1,
  4339. ['ArtRes']='Common/ic_moon_key',
  4340. ['StartDropPos']={500,0},
  4341. ['StartDropMoveTime']=1.0,
  4342. ['StartDropDlgId']=0,
  4343. ['EndDropDlgId']=0,
  4344. ['ClickDlgId']=255,
  4345. ['TriggerDlgId']=255,
  4346. ['CanSkip']=true,
  4347. ['ForceGuideId']=0,
  4348. },
  4349. [400050]={
  4350. ['Id']=400050,
  4351. ['Type']=3,
  4352. ['Content']={{12840,5},'Congratulation','Item12840'},
  4353. ['ArtType']=1,
  4354. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  4355. ['StartDropMoveTime']=0,
  4356. ['StartDropDlgId']=0,
  4357. ['EndDropDlgId']=0,
  4358. ['ClickDlgId']=255,
  4359. ['TriggerDlgId']=255,
  4360. ['CanSkip']=true,
  4361. ['ForceGuideId']=0,
  4362. },
  4363. [400060]={
  4364. ['Id']=400060,
  4365. ['Type']=3,
  4366. ['Content']={607,'Congratulation','Item607'},
  4367. ['ArtType']=1,
  4368. ['ArtRes']='Items/EquipmentBox3',
  4369. ['StartDropMoveTime']=0,
  4370. ['StartDropDlgId']=0,
  4371. ['EndDropDlgId']=0,
  4372. ['ClickDlgId']=255,
  4373. ['TriggerDlgId']=255,
  4374. ['CanSkip']=true,
  4375. ['ForceGuideId']=0,
  4376. },
  4377. [400070]={
  4378. ['Id']=400070,
  4379. ['Type']=3,
  4380. ['Content']={{496,2},'Congratulation','Item496'},
  4381. ['ArtType']=1,
  4382. ['ArtRes']='Items/item_dye_bluedye',
  4383. ['StartDropMoveTime']=0,
  4384. ['StartDropDlgId']=0,
  4385. ['EndDropDlgId']=0,
  4386. ['ClickDlgId']=255,
  4387. ['TriggerDlgId']=255,
  4388. ['CanSkip']=true,
  4389. ['ForceGuideId']=0,
  4390. },
  4391. [400080]={
  4392. ['Id']=400080,
  4393. ['Type']=3,
  4394. ['Content']={{115,2},'Congratulation','Item115'},
  4395. ['ArtType']=1,
  4396. ['ArtRes']='Common/ic_moon_key',
  4397. ['StartDropMoveTime']=0,
  4398. ['StartDropDlgId']=0,
  4399. ['EndDropDlgId']=0,
  4400. ['ClickDlgId']=255,
  4401. ['TriggerDlgId']=255,
  4402. ['CanSkip']=true,
  4403. ['ForceGuideId']=0,
  4404. },
  4405. [400090]={
  4406. ['Id']=400090,
  4407. ['Type']=3,
  4408. ['Content']={522,'Congratulation','Item522'},
  4409. ['ArtType']=1,
  4410. ['ArtRes']='Common/ic_res_petegg_purple',
  4411. ['StartDropPos']={-315,0},
  4412. ['StartDropMoveTime']=1.0,
  4413. ['StartDropDlgId']=0,
  4414. ['EndDropDlgId']=0,
  4415. ['ClickDlgId']=255,
  4416. ['TriggerDlgId']=255,
  4417. ['CanSkip']=true,
  4418. ['ForceGuideId']=0,
  4419. },
  4420. [400100]={
  4421. ['Id']=400100,
  4422. ['Type']=5,
  4423. ['ArtType']=2,
  4424. ['ArtRes']='UIBigMap/PointRoleItemGarm',
  4425. ['StartDropMoveTime']=0,
  4426. ['StartDropDlgId']=0,
  4427. ['EndDropDlgId']=255,
  4428. ['ClickDlgId']=255,
  4429. ['TriggerDlgId']=255,
  4430. ['CanSkip']=true,
  4431. ['ForceGuideId']=0,
  4432. },
  4433. [410010]={
  4434. ['Id']=410010,
  4435. ['Type']=3,
  4436. ['Content']={{517,2},'Congratulation','Item507'},
  4437. ['ArtType']=1,
  4438. ['ArtRes']='Common/ic_res_petpiece_mvp',
  4439. ['StartDropPos']={8,-120},
  4440. ['StartDropMoveTime']=1.0,
  4441. ['StartDropDlgId']=255,
  4442. ['EndDropDlgId']=0,
  4443. ['ClickDlgId']=255,
  4444. ['TriggerDlgId']=255,
  4445. ['CanSkip']=true,
  4446. ['ForceGuideId']=0,
  4447. },
  4448. [410020]={
  4449. ['Id']=410020,
  4450. ['Type']=3,
  4451. ['Content']={{101,2},'Congratulation','Item101'},
  4452. ['ArtType']=1,
  4453. ['ArtRes']='Items/elunium',
  4454. ['StartDropMoveTime']=0,
  4455. ['StartDropDlgId']=0,
  4456. ['EndDropDlgId']=0,
  4457. ['ClickDlgId']=255,
  4458. ['TriggerDlgId']=255,
  4459. ['CanSkip']=true,
  4460. ['ForceGuideId']=0,
  4461. },
  4462. [410030]={
  4463. ['Id']=410030,
  4464. ['Type']=3,
  4465. ['Content']={{494,20},'Congratulation','Item494'},
  4466. ['ArtType']=1,
  4467. ['ArtRes']='Items/Item_RandomStone',
  4468. ['StartDropMoveTime']=0,
  4469. ['StartDropDlgId']=0,
  4470. ['EndDropDlgId']=0,
  4471. ['ClickDlgId']=255,
  4472. ['TriggerDlgId']=255,
  4473. ['CanSkip']=true,
  4474. ['ForceGuideId']=0,
  4475. },
  4476. [410040]={
  4477. ['Id']=410040,
  4478. ['Type']=3,
  4479. ['Content']={{115,3},'Congratulation','Item115'},
  4480. ['ArtType']=1,
  4481. ['ArtRes']='Common/ic_moon_key',
  4482. ['StartDropPos']={-525,-120},
  4483. ['StartDropMoveTime']=1.0,
  4484. ['StartDropDlgId']=0,
  4485. ['EndDropDlgId']=0,
  4486. ['ClickDlgId']=255,
  4487. ['TriggerDlgId']=255,
  4488. ['CanSkip']=true,
  4489. ['ForceGuideId']=0,
  4490. },
  4491. [410050]={
  4492. ['Id']=410050,
  4493. ['Type']=3,
  4494. ['Content']={{12840,5},'Congratulation','Item12840'},
  4495. ['ArtType']=1,
  4496. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  4497. ['StartDropMoveTime']=0,
  4498. ['StartDropDlgId']=0,
  4499. ['EndDropDlgId']=0,
  4500. ['ClickDlgId']=255,
  4501. ['TriggerDlgId']=255,
  4502. ['CanSkip']=true,
  4503. ['ForceGuideId']=0,
  4504. },
  4505. [410060]={
  4506. ['Id']=410060,
  4507. ['Type']=3,
  4508. ['Content']={607,'Congratulation','Item607'},
  4509. ['ArtType']=1,
  4510. ['ArtRes']='Items/EquipmentBox3',
  4511. ['StartDropMoveTime']=0,
  4512. ['StartDropDlgId']=0,
  4513. ['EndDropDlgId']=0,
  4514. ['ClickDlgId']=255,
  4515. ['TriggerDlgId']=255,
  4516. ['CanSkip']=true,
  4517. ['ForceGuideId']=0,
  4518. },
  4519. [410070]={
  4520. ['Id']=410070,
  4521. ['Type']=3,
  4522. ['Content']={{496,2},'Congratulation','Item496'},
  4523. ['ArtType']=1,
  4524. ['ArtRes']='Items/item_dye_bluedye',
  4525. ['StartDropPos']={317,579},
  4526. ['StartDropMoveTime']=1.0,
  4527. ['StartDropDlgId']=0,
  4528. ['EndDropDlgId']=0,
  4529. ['ClickDlgId']=255,
  4530. ['TriggerDlgId']=255,
  4531. ['CanSkip']=true,
  4532. ['ForceGuideId']=0,
  4533. },
  4534. [410080]={
  4535. ['Id']=410080,
  4536. ['Type']=3,
  4537. ['Content']={{115,2},'Congratulation','Item115'},
  4538. ['ArtType']=1,
  4539. ['ArtRes']='Common/ic_moon_key',
  4540. ['StartDropMoveTime']=0,
  4541. ['StartDropDlgId']=0,
  4542. ['EndDropDlgId']=0,
  4543. ['ClickDlgId']=255,
  4544. ['TriggerDlgId']=255,
  4545. ['CanSkip']=true,
  4546. ['ForceGuideId']=0,
  4547. },
  4548. [410090]={
  4549. ['Id']=410090,
  4550. ['Type']=3,
  4551. ['Content']={522,'Congratulation','Item522'},
  4552. ['ArtType']=1,
  4553. ['ArtRes']='Common/ic_res_petegg_purple',
  4554. ['StartDropMoveTime']=0,
  4555. ['StartDropDlgId']=0,
  4556. ['EndDropDlgId']=0,
  4557. ['ClickDlgId']=255,
  4558. ['TriggerDlgId']=255,
  4559. ['CanSkip']=true,
  4560. ['ForceGuideId']=0,
  4561. },
  4562. [410100]={
  4563. ['Id']=410100,
  4564. ['Type']=5,
  4565. ['ArtType']=2,
  4566. ['ArtRes']='UIBigMap/PointRoleItemNidhoggr',
  4567. ['StartDropMoveTime']=0,
  4568. ['StartDropDlgId']=0,
  4569. ['EndDropDlgId']=255,
  4570. ['ClickDlgId']=255,
  4571. ['TriggerDlgId']=255,
  4572. ['CanSkip']=true,
  4573. ['ForceGuideId']=0,
  4574. },
  4575. [420010]={
  4576. ['Id']=420010,
  4577. ['Type']=3,
  4578. ['Content']={{517,2},'Congratulation','Item507'},
  4579. ['ArtType']=1,
  4580. ['ArtRes']='Common/ic_res_petpiece_mvp',
  4581. ['StartDropPos']={-250,-250},
  4582. ['StartDropMoveTime']=1.0,
  4583. ['StartDropDlgId']=255,
  4584. ['EndDropDlgId']=0,
  4585. ['ClickDlgId']=255,
  4586. ['TriggerDlgId']=255,
  4587. ['CanSkip']=true,
  4588. ['ForceGuideId']=0,
  4589. },
  4590. [420020]={
  4591. ['Id']=420020,
  4592. ['Type']=3,
  4593. ['Content']={{101,2},'Congratulation','Item101'},
  4594. ['ArtType']=1,
  4595. ['ArtRes']='Items/elunium',
  4596. ['StartDropPos']={500,160},
  4597. ['StartDropMoveTime']=1.0,
  4598. ['StartDropDlgId']=0,
  4599. ['EndDropDlgId']=0,
  4600. ['ClickDlgId']=255,
  4601. ['TriggerDlgId']=255,
  4602. ['CanSkip']=true,
  4603. ['ForceGuideId']=0,
  4604. },
  4605. [420030]={
  4606. ['Id']=420030,
  4607. ['Type']=3,
  4608. ['Content']={{494,20},'Congratulation','Item494'},
  4609. ['ArtType']=1,
  4610. ['ArtRes']='Items/Item_RandomStone',
  4611. ['StartDropMoveTime']=0,
  4612. ['StartDropDlgId']=0,
  4613. ['EndDropDlgId']=0,
  4614. ['ClickDlgId']=255,
  4615. ['TriggerDlgId']=255,
  4616. ['CanSkip']=true,
  4617. ['ForceGuideId']=0,
  4618. },
  4619. [420040]={
  4620. ['Id']=420040,
  4621. ['Type']=3,
  4622. ['Content']={{115,3},'Congratulation','Item115'},
  4623. ['ArtType']=1,
  4624. ['ArtRes']='Common/ic_moon_key',
  4625. ['StartDropMoveTime']=0,
  4626. ['StartDropDlgId']=0,
  4627. ['EndDropDlgId']=0,
  4628. ['ClickDlgId']=255,
  4629. ['TriggerDlgId']=255,
  4630. ['CanSkip']=true,
  4631. ['ForceGuideId']=0,
  4632. },
  4633. [420050]={
  4634. ['Id']=420050,
  4635. ['Type']=3,
  4636. ['Content']={{12840,5},'Congratulation','Item12840'},
  4637. ['ArtType']=1,
  4638. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  4639. ['StartDropMoveTime']=0,
  4640. ['StartDropDlgId']=0,
  4641. ['EndDropDlgId']=0,
  4642. ['ClickDlgId']=255,
  4643. ['TriggerDlgId']=255,
  4644. ['CanSkip']=true,
  4645. ['ForceGuideId']=0,
  4646. },
  4647. [420060]={
  4648. ['Id']=420060,
  4649. ['Type']=3,
  4650. ['Content']={607,'Congratulation','Item607'},
  4651. ['ArtType']=1,
  4652. ['ArtRes']='Items/EquipmentBox3',
  4653. ['StartDropMoveTime']=0,
  4654. ['StartDropDlgId']=0,
  4655. ['EndDropDlgId']=0,
  4656. ['ClickDlgId']=255,
  4657. ['TriggerDlgId']=255,
  4658. ['CanSkip']=true,
  4659. ['ForceGuideId']=0,
  4660. },
  4661. [420070]={
  4662. ['Id']=420070,
  4663. ['Type']=3,
  4664. ['Content']={{496,2},'Congratulation','Item496'},
  4665. ['ArtType']=1,
  4666. ['ArtRes']='Items/item_dye_bluedye',
  4667. ['StartDropPos']={-250,580},
  4668. ['StartDropMoveTime']=1.0,
  4669. ['StartDropDlgId']=0,
  4670. ['EndDropDlgId']=0,
  4671. ['ClickDlgId']=255,
  4672. ['TriggerDlgId']=255,
  4673. ['CanSkip']=true,
  4674. ['ForceGuideId']=0,
  4675. },
  4676. [420080]={
  4677. ['Id']=420080,
  4678. ['Type']=3,
  4679. ['Content']={{115,2},'Congratulation','Item115'},
  4680. ['ArtType']=1,
  4681. ['ArtRes']='Common/ic_moon_key',
  4682. ['StartDropMoveTime']=0,
  4683. ['StartDropDlgId']=0,
  4684. ['EndDropDlgId']=0,
  4685. ['ClickDlgId']=255,
  4686. ['TriggerDlgId']=255,
  4687. ['CanSkip']=true,
  4688. ['ForceGuideId']=0,
  4689. },
  4690. [420090]={
  4691. ['Id']=420090,
  4692. ['Type']=3,
  4693. ['Content']={522,'Congratulation','Item522'},
  4694. ['ArtType']=1,
  4695. ['ArtRes']='Common/ic_res_petegg_purple',
  4696. ['StartDropMoveTime']=0,
  4697. ['StartDropDlgId']=0,
  4698. ['EndDropDlgId']=0,
  4699. ['ClickDlgId']=255,
  4700. ['TriggerDlgId']=255,
  4701. ['CanSkip']=true,
  4702. ['ForceGuideId']=0,
  4703. },
  4704. [420100]={
  4705. ['Id']=420100,
  4706. ['Type']=5,
  4707. ['ArtType']=2,
  4708. ['ArtRes']='UIBigMap/PointRoleItemSarahIrine',
  4709. ['StartDropMoveTime']=0,
  4710. ['StartDropDlgId']=0,
  4711. ['EndDropDlgId']=255,
  4712. ['ClickDlgId']=255,
  4713. ['TriggerDlgId']=255,
  4714. ['CanSkip']=true,
  4715. ['ForceGuideId']=0,
  4716. },
  4717. [430010]={
  4718. ['Id']=430010,
  4719. ['Type']=3,
  4720. ['Content']={{517,2},'Congratulation','Item507'},
  4721. ['ArtType']=1,
  4722. ['ArtRes']='Common/ic_res_petpiece_mvp',
  4723. ['StartDropPos']={-623,0},
  4724. ['StartDropMoveTime']=1.0,
  4725. ['StartDropDlgId']=255,
  4726. ['EndDropDlgId']=0,
  4727. ['ClickDlgId']=255,
  4728. ['TriggerDlgId']=255,
  4729. ['CanSkip']=true,
  4730. ['ForceGuideId']=0,
  4731. },
  4732. [430020]={
  4733. ['Id']=430020,
  4734. ['Type']=3,
  4735. ['Content']={{101,2},'Congratulation','Item101'},
  4736. ['ArtType']=1,
  4737. ['ArtRes']='Items/elunium',
  4738. ['StartDropPos']={-20,0},
  4739. ['StartDropMoveTime']=1.0,
  4740. ['StartDropDlgId']=0,
  4741. ['EndDropDlgId']=0,
  4742. ['ClickDlgId']=255,
  4743. ['TriggerDlgId']=255,
  4744. ['CanSkip']=true,
  4745. ['ForceGuideId']=0,
  4746. },
  4747. [430030]={
  4748. ['Id']=430030,
  4749. ['Type']=3,
  4750. ['Content']={{494,20},'Congratulation','Item494'},
  4751. ['ArtType']=1,
  4752. ['ArtRes']='Items/Item_RandomStone',
  4753. ['StartDropMoveTime']=0,
  4754. ['StartDropDlgId']=0,
  4755. ['EndDropDlgId']=0,
  4756. ['ClickDlgId']=255,
  4757. ['TriggerDlgId']=255,
  4758. ['CanSkip']=true,
  4759. ['ForceGuideId']=0,
  4760. },
  4761. [430040]={
  4762. ['Id']=430040,
  4763. ['Type']=3,
  4764. ['Content']={{115,3},'Congratulation','Item115'},
  4765. ['ArtType']=1,
  4766. ['ArtRes']='Common/ic_moon_key',
  4767. ['StartDropMoveTime']=0,
  4768. ['StartDropDlgId']=0,
  4769. ['EndDropDlgId']=0,
  4770. ['ClickDlgId']=255,
  4771. ['TriggerDlgId']=255,
  4772. ['CanSkip']=true,
  4773. ['ForceGuideId']=0,
  4774. },
  4775. [430050]={
  4776. ['Id']=430050,
  4777. ['Type']=3,
  4778. ['Content']={{12840,5},'Congratulation','Item12840'},
  4779. ['ArtType']=1,
  4780. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  4781. ['StartDropMoveTime']=0,
  4782. ['StartDropDlgId']=0,
  4783. ['EndDropDlgId']=0,
  4784. ['ClickDlgId']=255,
  4785. ['TriggerDlgId']=255,
  4786. ['CanSkip']=true,
  4787. ['ForceGuideId']=0,
  4788. },
  4789. [430060]={
  4790. ['Id']=430060,
  4791. ['Type']=3,
  4792. ['Content']={607,'Congratulation','Item607'},
  4793. ['ArtType']=1,
  4794. ['ArtRes']='Items/EquipmentBox3',
  4795. ['StartDropMoveTime']=0,
  4796. ['StartDropDlgId']=0,
  4797. ['EndDropDlgId']=0,
  4798. ['ClickDlgId']=255,
  4799. ['TriggerDlgId']=255,
  4800. ['CanSkip']=true,
  4801. ['ForceGuideId']=0,
  4802. },
  4803. [430070]={
  4804. ['Id']=430070,
  4805. ['Type']=3,
  4806. ['Content']={{496,2},'Congratulation','Item496'},
  4807. ['ArtType']=1,
  4808. ['ArtRes']='Items/item_dye_bluedye',
  4809. ['StartDropPos']={680,447},
  4810. ['StartDropMoveTime']=1.0,
  4811. ['StartDropDlgId']=0,
  4812. ['EndDropDlgId']=0,
  4813. ['ClickDlgId']=255,
  4814. ['TriggerDlgId']=255,
  4815. ['CanSkip']=true,
  4816. ['ForceGuideId']=0,
  4817. },
  4818. [430080]={
  4819. ['Id']=430080,
  4820. ['Type']=3,
  4821. ['Content']={{115,2},'Congratulation','Item115'},
  4822. ['ArtType']=1,
  4823. ['ArtRes']='Common/ic_moon_key',
  4824. ['StartDropMoveTime']=0,
  4825. ['StartDropDlgId']=0,
  4826. ['EndDropDlgId']=0,
  4827. ['ClickDlgId']=255,
  4828. ['TriggerDlgId']=255,
  4829. ['CanSkip']=true,
  4830. ['ForceGuideId']=0,
  4831. },
  4832. [430090]={
  4833. ['Id']=430090,
  4834. ['Type']=3,
  4835. ['Content']={522,'Congratulation','Item522'},
  4836. ['ArtType']=1,
  4837. ['ArtRes']='Common/ic_res_petegg_purple',
  4838. ['StartDropMoveTime']=0,
  4839. ['StartDropDlgId']=0,
  4840. ['EndDropDlgId']=0,
  4841. ['ClickDlgId']=255,
  4842. ['TriggerDlgId']=255,
  4843. ['CanSkip']=true,
  4844. ['ForceGuideId']=0,
  4845. },
  4846. [430100]={
  4847. ['Id']=430100,
  4848. ['Type']=5,
  4849. ['ArtType']=2,
  4850. ['ArtRes']='UIBigMap/PointRoleItemBrinaranea',
  4851. ['StartDropMoveTime']=0,
  4852. ['StartDropDlgId']=0,
  4853. ['EndDropDlgId']=255,
  4854. ['ClickDlgId']=255,
  4855. ['TriggerDlgId']=255,
  4856. ['CanSkip']=true,
  4857. ['ForceGuideId']=0,
  4858. },
  4859. [440010]={
  4860. ['Id']=440010,
  4861. ['Type']=3,
  4862. ['Content']={{517,2},'Congratulation','Item507'},
  4863. ['ArtType']=1,
  4864. ['ArtRes']='Common/ic_res_petpiece_mvp',
  4865. ['StartDropPos']={-520,132},
  4866. ['StartDropMoveTime']=1.0,
  4867. ['StartDropDlgId']=255,
  4868. ['EndDropDlgId']=0,
  4869. ['ClickDlgId']=255,
  4870. ['TriggerDlgId']=255,
  4871. ['CanSkip']=true,
  4872. ['ForceGuideId']=0,
  4873. },
  4874. [440020]={
  4875. ['Id']=440020,
  4876. ['Type']=3,
  4877. ['Content']={{101,2},'Congratulation','Item101'},
  4878. ['ArtType']=1,
  4879. ['ArtRes']='Items/elunium',
  4880. ['StartDropMoveTime']=0,
  4881. ['StartDropDlgId']=0,
  4882. ['EndDropDlgId']=0,
  4883. ['ClickDlgId']=255,
  4884. ['TriggerDlgId']=255,
  4885. ['CanSkip']=true,
  4886. ['ForceGuideId']=0,
  4887. },
  4888. [440030]={
  4889. ['Id']=440030,
  4890. ['Type']=3,
  4891. ['Content']={{494,20},'Congratulation','Item494'},
  4892. ['ArtType']=1,
  4893. ['ArtRes']='Items/Item_RandomStone',
  4894. ['StartDropMoveTime']=0,
  4895. ['StartDropDlgId']=0,
  4896. ['EndDropDlgId']=0,
  4897. ['ClickDlgId']=255,
  4898. ['TriggerDlgId']=255,
  4899. ['CanSkip']=true,
  4900. ['ForceGuideId']=0,
  4901. },
  4902. [440040]={
  4903. ['Id']=440040,
  4904. ['Type']=3,
  4905. ['Content']={{115,3},'Congratulation','Item115'},
  4906. ['ArtType']=1,
  4907. ['ArtRes']='Common/ic_moon_key',
  4908. ['StartDropMoveTime']=0,
  4909. ['StartDropDlgId']=0,
  4910. ['EndDropDlgId']=0,
  4911. ['ClickDlgId']=255,
  4912. ['TriggerDlgId']=255,
  4913. ['CanSkip']=true,
  4914. ['ForceGuideId']=0,
  4915. },
  4916. [440050]={
  4917. ['Id']=440050,
  4918. ['Type']=3,
  4919. ['Content']={{12840,5},'Congratulation','Item12840'},
  4920. ['ArtType']=1,
  4921. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  4922. ['StartDropPos']={255,-164},
  4923. ['StartDropMoveTime']=1.0,
  4924. ['StartDropDlgId']=0,
  4925. ['EndDropDlgId']=0,
  4926. ['ClickDlgId']=255,
  4927. ['TriggerDlgId']=255,
  4928. ['CanSkip']=true,
  4929. ['ForceGuideId']=0,
  4930. },
  4931. [440060]={
  4932. ['Id']=440060,
  4933. ['Type']=3,
  4934. ['Content']={607,'Congratulation','Item607'},
  4935. ['ArtType']=1,
  4936. ['ArtRes']='Items/EquipmentBox3',
  4937. ['StartDropMoveTime']=0,
  4938. ['StartDropDlgId']=0,
  4939. ['EndDropDlgId']=0,
  4940. ['ClickDlgId']=255,
  4941. ['TriggerDlgId']=255,
  4942. ['CanSkip']=true,
  4943. ['ForceGuideId']=0,
  4944. },
  4945. [440070]={
  4946. ['Id']=440070,
  4947. ['Type']=3,
  4948. ['Content']={{496,2},'Congratulation','Item496'},
  4949. ['ArtType']=1,
  4950. ['ArtRes']='Items/item_dye_bluedye',
  4951. ['StartDropMoveTime']=0,
  4952. ['StartDropDlgId']=0,
  4953. ['EndDropDlgId']=0,
  4954. ['ClickDlgId']=255,
  4955. ['TriggerDlgId']=255,
  4956. ['CanSkip']=true,
  4957. ['ForceGuideId']=0,
  4958. },
  4959. [440080]={
  4960. ['Id']=440080,
  4961. ['Type']=3,
  4962. ['Content']={{115,2},'Congratulation','Item115'},
  4963. ['ArtType']=1,
  4964. ['ArtRes']='Common/ic_moon_key',
  4965. ['StartDropMoveTime']=0,
  4966. ['StartDropDlgId']=0,
  4967. ['EndDropDlgId']=0,
  4968. ['ClickDlgId']=255,
  4969. ['TriggerDlgId']=255,
  4970. ['CanSkip']=true,
  4971. ['ForceGuideId']=0,
  4972. },
  4973. [440090]={
  4974. ['Id']=440090,
  4975. ['Type']=3,
  4976. ['Content']={522,'Congratulation','Item522'},
  4977. ['ArtType']=1,
  4978. ['ArtRes']='Common/ic_res_petegg_purple',
  4979. ['StartDropPos']={616,0},
  4980. ['StartDropMoveTime']=1.0,
  4981. ['StartDropDlgId']=0,
  4982. ['EndDropDlgId']=0,
  4983. ['ClickDlgId']=255,
  4984. ['TriggerDlgId']=255,
  4985. ['CanSkip']=true,
  4986. ['ForceGuideId']=0,
  4987. },
  4988. [440100]={
  4989. ['Id']=440100,
  4990. ['Type']=5,
  4991. ['ArtType']=2,
  4992. ['ArtRes']='UIBigMap/PointRoleItemKnightofwindstorm',
  4993. ['StartDropMoveTime']=0,
  4994. ['StartDropDlgId']=0,
  4995. ['EndDropDlgId']=255,
  4996. ['ClickDlgId']=255,
  4997. ['TriggerDlgId']=255,
  4998. ['CanSkip']=true,
  4999. ['ForceGuideId']=0,
  5000. },
  5001. [450010]={
  5002. ['Id']=450010,
  5003. ['Type']=3,
  5004. ['Content']={{517,2},'Congratulation','Item507'},
  5005. ['ArtType']=1,
  5006. ['ArtRes']='Common/ic_res_petpiece_mvp',
  5007. ['StartDropPos']={1255,-261},
  5008. ['StartDropMoveTime']=1.0,
  5009. ['StartDropDlgId']=255,
  5010. ['EndDropDlgId']=0,
  5011. ['ClickDlgId']=255,
  5012. ['TriggerDlgId']=255,
  5013. ['CanSkip']=true,
  5014. ['ForceGuideId']=0,
  5015. },
  5016. [450020]={
  5017. ['Id']=450020,
  5018. ['Type']=3,
  5019. ['Content']={{101,2},'Congratulation','Item101'},
  5020. ['ArtType']=1,
  5021. ['ArtRes']='Items/elunium',
  5022. ['StartDropMoveTime']=0,
  5023. ['StartDropDlgId']=0,
  5024. ['EndDropDlgId']=0,
  5025. ['ClickDlgId']=255,
  5026. ['TriggerDlgId']=255,
  5027. ['CanSkip']=true,
  5028. ['ForceGuideId']=0,
  5029. },
  5030. [450030]={
  5031. ['Id']=450030,
  5032. ['Type']=3,
  5033. ['Content']={{494,20},'Congratulation','Item494'},
  5034. ['ArtType']=1,
  5035. ['ArtRes']='Items/Item_RandomStone',
  5036. ['StartDropPos']={500,0},
  5037. ['StartDropMoveTime']=1.0,
  5038. ['StartDropDlgId']=0,
  5039. ['EndDropDlgId']=0,
  5040. ['ClickDlgId']=255,
  5041. ['TriggerDlgId']=255,
  5042. ['CanSkip']=true,
  5043. ['ForceGuideId']=0,
  5044. },
  5045. [450040]={
  5046. ['Id']=450040,
  5047. ['Type']=3,
  5048. ['Content']={{115,3},'Congratulation','Item115'},
  5049. ['ArtType']=1,
  5050. ['ArtRes']='Common/ic_moon_key',
  5051. ['StartDropMoveTime']=0,
  5052. ['StartDropDlgId']=0,
  5053. ['EndDropDlgId']=0,
  5054. ['ClickDlgId']=255,
  5055. ['TriggerDlgId']=255,
  5056. ['CanSkip']=true,
  5057. ['ForceGuideId']=0,
  5058. },
  5059. [450050]={
  5060. ['Id']=450050,
  5061. ['Type']=3,
  5062. ['Content']={{12840,5},'Congratulation','Item12840'},
  5063. ['ArtType']=1,
  5064. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  5065. ['StartDropMoveTime']=0,
  5066. ['StartDropDlgId']=0,
  5067. ['EndDropDlgId']=0,
  5068. ['ClickDlgId']=255,
  5069. ['TriggerDlgId']=255,
  5070. ['CanSkip']=true,
  5071. ['ForceGuideId']=0,
  5072. },
  5073. [450060]={
  5074. ['Id']=450060,
  5075. ['Type']=3,
  5076. ['Content']={607,'Congratulation','Item607'},
  5077. ['ArtType']=1,
  5078. ['ArtRes']='Items/EquipmentBox3',
  5079. ['StartDropMoveTime']=0,
  5080. ['StartDropDlgId']=0,
  5081. ['EndDropDlgId']=0,
  5082. ['ClickDlgId']=255,
  5083. ['TriggerDlgId']=255,
  5084. ['CanSkip']=true,
  5085. ['ForceGuideId']=0,
  5086. },
  5087. [450070]={
  5088. ['Id']=450070,
  5089. ['Type']=3,
  5090. ['Content']={{496,2},'Congratulation','Item496'},
  5091. ['ArtType']=1,
  5092. ['ArtRes']='Items/item_dye_bluedye',
  5093. ['StartDropPos']={-670,135},
  5094. ['StartDropMoveTime']=1.0,
  5095. ['StartDropDlgId']=0,
  5096. ['EndDropDlgId']=0,
  5097. ['ClickDlgId']=255,
  5098. ['TriggerDlgId']=255,
  5099. ['CanSkip']=true,
  5100. ['ForceGuideId']=0,
  5101. },
  5102. [450080]={
  5103. ['Id']=450080,
  5104. ['Type']=3,
  5105. ['Content']={{115,2},'Congratulation','Item115'},
  5106. ['ArtType']=1,
  5107. ['ArtRes']='Common/ic_moon_key',
  5108. ['StartDropMoveTime']=0,
  5109. ['StartDropDlgId']=0,
  5110. ['EndDropDlgId']=0,
  5111. ['ClickDlgId']=255,
  5112. ['TriggerDlgId']=255,
  5113. ['CanSkip']=true,
  5114. ['ForceGuideId']=0,
  5115. },
  5116. [450090]={
  5117. ['Id']=450090,
  5118. ['Type']=3,
  5119. ['Content']={522,'Congratulation','Item522'},
  5120. ['ArtType']=1,
  5121. ['ArtRes']='Common/ic_res_petegg_purple',
  5122. ['StartDropMoveTime']=0,
  5123. ['StartDropDlgId']=0,
  5124. ['EndDropDlgId']=0,
  5125. ['ClickDlgId']=255,
  5126. ['TriggerDlgId']=255,
  5127. ['CanSkip']=true,
  5128. ['ForceGuideId']=0,
  5129. },
  5130. [450100]={
  5131. ['Id']=450100,
  5132. ['Type']=5,
  5133. ['ArtType']=2,
  5134. ['ArtRes']='UIBigMap/PointRoleItemMorocckid',
  5135. ['StartDropMoveTime']=0,
  5136. ['StartDropDlgId']=0,
  5137. ['EndDropDlgId']=255,
  5138. ['ClickDlgId']=255,
  5139. ['TriggerDlgId']=255,
  5140. ['CanSkip']=true,
  5141. ['ForceGuideId']=0,
  5142. },
  5143. [460010]={
  5144. ['Id']=460010,
  5145. ['Type']=3,
  5146. ['Content']={{517,2},'Congratulation','Item507'},
  5147. ['ArtType']=1,
  5148. ['ArtRes']='Common/ic_res_petpiece_mvp',
  5149. ['StartDropPos']={-165,95},
  5150. ['StartDropMoveTime']=1.0,
  5151. ['StartDropDlgId']=255,
  5152. ['EndDropDlgId']=0,
  5153. ['ClickDlgId']=255,
  5154. ['TriggerDlgId']=255,
  5155. ['CanSkip']=true,
  5156. ['ForceGuideId']=0,
  5157. },
  5158. [460020]={
  5159. ['Id']=460020,
  5160. ['Type']=3,
  5161. ['Content']={{101,2},'Congratulation','Item101'},
  5162. ['ArtType']=1,
  5163. ['ArtRes']='Items/elunium',
  5164. ['StartDropMoveTime']=0,
  5165. ['StartDropDlgId']=0,
  5166. ['EndDropDlgId']=0,
  5167. ['ClickDlgId']=255,
  5168. ['TriggerDlgId']=255,
  5169. ['CanSkip']=true,
  5170. ['ForceGuideId']=0,
  5171. },
  5172. [460030]={
  5173. ['Id']=460030,
  5174. ['Type']=3,
  5175. ['Content']={{494,20},'Congratulation','Item494'},
  5176. ['ArtType']=1,
  5177. ['ArtRes']='Items/Item_RandomStone',
  5178. ['StartDropMoveTime']=0,
  5179. ['StartDropDlgId']=0,
  5180. ['EndDropDlgId']=0,
  5181. ['ClickDlgId']=255,
  5182. ['TriggerDlgId']=255,
  5183. ['CanSkip']=true,
  5184. ['ForceGuideId']=0,
  5185. },
  5186. [460040]={
  5187. ['Id']=460040,
  5188. ['Type']=3,
  5189. ['Content']={{115,3},'Congratulation','Item115'},
  5190. ['ArtType']=1,
  5191. ['ArtRes']='Common/ic_moon_key',
  5192. ['StartDropMoveTime']=0,
  5193. ['StartDropDlgId']=0,
  5194. ['EndDropDlgId']=0,
  5195. ['ClickDlgId']=255,
  5196. ['TriggerDlgId']=255,
  5197. ['CanSkip']=true,
  5198. ['ForceGuideId']=0,
  5199. },
  5200. [460050]={
  5201. ['Id']=460050,
  5202. ['Type']=3,
  5203. ['Content']={{12840,5},'Congratulation','Item12840'},
  5204. ['ArtType']=1,
  5205. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  5206. ['StartDropMoveTime']=0,
  5207. ['StartDropDlgId']=0,
  5208. ['EndDropDlgId']=0,
  5209. ['ClickDlgId']=255,
  5210. ['TriggerDlgId']=255,
  5211. ['CanSkip']=true,
  5212. ['ForceGuideId']=0,
  5213. },
  5214. [460060]={
  5215. ['Id']=460060,
  5216. ['Type']=3,
  5217. ['Content']={607,'Congratulation','Item607'},
  5218. ['ArtType']=1,
  5219. ['ArtRes']='Items/EquipmentBox3',
  5220. ['StartDropMoveTime']=0,
  5221. ['StartDropDlgId']=0,
  5222. ['EndDropDlgId']=0,
  5223. ['ClickDlgId']=255,
  5224. ['TriggerDlgId']=255,
  5225. ['CanSkip']=true,
  5226. ['ForceGuideId']=0,
  5227. },
  5228. [460070]={
  5229. ['Id']=460070,
  5230. ['Type']=3,
  5231. ['Content']={{496,2},'Congratulation','Item496'},
  5232. ['ArtType']=1,
  5233. ['ArtRes']='Items/item_dye_bluedye',
  5234. ['StartDropMoveTime']=0,
  5235. ['StartDropDlgId']=0,
  5236. ['EndDropDlgId']=0,
  5237. ['ClickDlgId']=255,
  5238. ['TriggerDlgId']=255,
  5239. ['CanSkip']=true,
  5240. ['ForceGuideId']=0,
  5241. },
  5242. [460080]={
  5243. ['Id']=460080,
  5244. ['Type']=3,
  5245. ['Content']={{115,2},'Congratulation','Item115'},
  5246. ['ArtType']=1,
  5247. ['ArtRes']='Common/ic_moon_key',
  5248. ['StartDropMoveTime']=0,
  5249. ['StartDropDlgId']=0,
  5250. ['EndDropDlgId']=0,
  5251. ['ClickDlgId']=255,
  5252. ['TriggerDlgId']=255,
  5253. ['CanSkip']=true,
  5254. ['ForceGuideId']=0,
  5255. },
  5256. [460090]={
  5257. ['Id']=460090,
  5258. ['Type']=3,
  5259. ['Content']={522,'Congratulation','Item522'},
  5260. ['ArtType']=1,
  5261. ['ArtRes']='Common/ic_res_petegg_purple',
  5262. ['StartDropPos']={226,169},
  5263. ['StartDropMoveTime']=1.0,
  5264. ['StartDropDlgId']=0,
  5265. ['EndDropDlgId']=0,
  5266. ['ClickDlgId']=255,
  5267. ['TriggerDlgId']=255,
  5268. ['CanSkip']=true,
  5269. ['ForceGuideId']=0,
  5270. },
  5271. [460100]={
  5272. ['Id']=460100,
  5273. ['Type']=5,
  5274. ['ArtType']=2,
  5275. ['ArtRes']='UIBigMap/PointRoleItemThanatos',
  5276. ['StartDropMoveTime']=0,
  5277. ['StartDropDlgId']=0,
  5278. ['EndDropDlgId']=255,
  5279. ['ClickDlgId']=255,
  5280. ['TriggerDlgId']=255,
  5281. ['CanSkip']=true,
  5282. ['ForceGuideId']=0,
  5283. },
  5284. [470010]={
  5285. ['Id']=470010,
  5286. ['Type']=3,
  5287. ['Content']={{517,2},'Congratulation','Item507'},
  5288. ['ArtType']=1,
  5289. ['ArtRes']='Common/ic_res_petpiece_mvp',
  5290. ['StartDropPos']={-557,150},
  5291. ['StartDropMoveTime']=1.0,
  5292. ['StartDropDlgId']=255,
  5293. ['EndDropDlgId']=0,
  5294. ['ClickDlgId']=255,
  5295. ['TriggerDlgId']=255,
  5296. ['CanSkip']=true,
  5297. ['ForceGuideId']=0,
  5298. },
  5299. [470020]={
  5300. ['Id']=470020,
  5301. ['Type']=3,
  5302. ['Content']={{101,2},'Congratulation','Item101'},
  5303. ['ArtType']=1,
  5304. ['ArtRes']='Items/elunium',
  5305. ['StartDropMoveTime']=0,
  5306. ['StartDropDlgId']=0,
  5307. ['EndDropDlgId']=0,
  5308. ['ClickDlgId']=255,
  5309. ['TriggerDlgId']=255,
  5310. ['CanSkip']=true,
  5311. ['ForceGuideId']=0,
  5312. },
  5313. [470030]={
  5314. ['Id']=470030,
  5315. ['Type']=3,
  5316. ['Content']={{494,20},'Congratulation','Item494'},
  5317. ['ArtType']=1,
  5318. ['ArtRes']='Items/Item_RandomStone',
  5319. ['StartDropPos']={445,32},
  5320. ['StartDropMoveTime']=0,
  5321. ['StartDropDlgId']=0,
  5322. ['EndDropDlgId']=0,
  5323. ['ClickDlgId']=255,
  5324. ['TriggerDlgId']=255,
  5325. ['CanSkip']=true,
  5326. ['ForceGuideId']=0,
  5327. },
  5328. [470040]={
  5329. ['Id']=470040,
  5330. ['Type']=3,
  5331. ['Content']={{115,3},'Congratulation','Item115'},
  5332. ['ArtType']=1,
  5333. ['ArtRes']='Common/ic_moon_key',
  5334. ['StartDropMoveTime']=1.0,
  5335. ['StartDropDlgId']=0,
  5336. ['EndDropDlgId']=0,
  5337. ['ClickDlgId']=255,
  5338. ['TriggerDlgId']=255,
  5339. ['CanSkip']=true,
  5340. ['ForceGuideId']=0,
  5341. },
  5342. [470050]={
  5343. ['Id']=470050,
  5344. ['Type']=3,
  5345. ['Content']={{12840,5},'Congratulation','Item12840'},
  5346. ['ArtType']=1,
  5347. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  5348. ['StartDropMoveTime']=0,
  5349. ['StartDropDlgId']=0,
  5350. ['EndDropDlgId']=0,
  5351. ['ClickDlgId']=255,
  5352. ['TriggerDlgId']=255,
  5353. ['CanSkip']=true,
  5354. ['ForceGuideId']=0,
  5355. },
  5356. [470060]={
  5357. ['Id']=470060,
  5358. ['Type']=3,
  5359. ['Content']={607,'Congratulation','Item607'},
  5360. ['ArtType']=1,
  5361. ['ArtRes']='Items/EquipmentBox3',
  5362. ['StartDropMoveTime']=0,
  5363. ['StartDropDlgId']=0,
  5364. ['EndDropDlgId']=0,
  5365. ['ClickDlgId']=255,
  5366. ['TriggerDlgId']=255,
  5367. ['CanSkip']=true,
  5368. ['ForceGuideId']=0,
  5369. },
  5370. [470070]={
  5371. ['Id']=470070,
  5372. ['Type']=3,
  5373. ['Content']={{496,2},'Congratulation','Item496'},
  5374. ['ArtType']=1,
  5375. ['ArtRes']='Items/item_dye_bluedye',
  5376. ['StartDropMoveTime']=0,
  5377. ['StartDropDlgId']=0,
  5378. ['EndDropDlgId']=0,
  5379. ['ClickDlgId']=255,
  5380. ['TriggerDlgId']=255,
  5381. ['CanSkip']=true,
  5382. ['ForceGuideId']=0,
  5383. },
  5384. [470080]={
  5385. ['Id']=470080,
  5386. ['Type']=3,
  5387. ['Content']={{115,2},'Congratulation','Item115'},
  5388. ['ArtType']=1,
  5389. ['ArtRes']='Common/ic_moon_key',
  5390. ['StartDropMoveTime']=0,
  5391. ['StartDropDlgId']=0,
  5392. ['EndDropDlgId']=0,
  5393. ['ClickDlgId']=255,
  5394. ['TriggerDlgId']=255,
  5395. ['CanSkip']=true,
  5396. ['ForceGuideId']=0,
  5397. },
  5398. [470090]={
  5399. ['Id']=470090,
  5400. ['Type']=3,
  5401. ['Content']={522,'Congratulation','Item522'},
  5402. ['ArtType']=1,
  5403. ['ArtRes']='Common/ic_res_petegg_purple',
  5404. ['StartDropMoveTime']=0,
  5405. ['StartDropDlgId']=0,
  5406. ['EndDropDlgId']=0,
  5407. ['ClickDlgId']=255,
  5408. ['TriggerDlgId']=255,
  5409. ['CanSkip']=true,
  5410. ['ForceGuideId']=0,
  5411. },
  5412. [470100]={
  5413. ['Id']=470100,
  5414. ['Type']=5,
  5415. ['ArtType']=2,
  5416. ['ArtRes']='UIBigMap/PointRoleItemShadowdragon',
  5417. ['StartDropMoveTime']=0,
  5418. ['StartDropDlgId']=0,
  5419. ['EndDropDlgId']=255,
  5420. ['ClickDlgId']=255,
  5421. ['TriggerDlgId']=255,
  5422. ['CanSkip']=true,
  5423. ['ForceGuideId']=0,
  5424. },
  5425. [480010]={
  5426. ['Id']=480010,
  5427. ['Type']=3,
  5428. ['Content']={{517,2},'Congratulation','Item507'},
  5429. ['ArtType']=1,
  5430. ['ArtRes']='Common/ic_res_petpiece_mvp',
  5431. ['StartDropPos']={-173,-285},
  5432. ['StartDropMoveTime']=1.0,
  5433. ['StartDropDlgId']=255,
  5434. ['EndDropDlgId']=0,
  5435. ['ClickDlgId']=255,
  5436. ['TriggerDlgId']=255,
  5437. ['CanSkip']=true,
  5438. ['ForceGuideId']=0,
  5439. },
  5440. [480020]={
  5441. ['Id']=480020,
  5442. ['Type']=3,
  5443. ['Content']={{101,2},'Congratulation','Item101'},
  5444. ['ArtType']=1,
  5445. ['ArtRes']='Items/elunium',
  5446. ['StartDropMoveTime']=0,
  5447. ['StartDropDlgId']=0,
  5448. ['EndDropDlgId']=0,
  5449. ['ClickDlgId']=255,
  5450. ['TriggerDlgId']=255,
  5451. ['CanSkip']=true,
  5452. ['ForceGuideId']=0,
  5453. },
  5454. [480030]={
  5455. ['Id']=480030,
  5456. ['Type']=3,
  5457. ['Content']={{494,20},'Congratulation','Item494'},
  5458. ['ArtType']=1,
  5459. ['ArtRes']='Items/Item_RandomStone',
  5460. ['StartDropPos']={582,-924},
  5461. ['StartDropMoveTime']=0,
  5462. ['StartDropDlgId']=0,
  5463. ['EndDropDlgId']=0,
  5464. ['ClickDlgId']=255,
  5465. ['TriggerDlgId']=255,
  5466. ['CanSkip']=true,
  5467. ['ForceGuideId']=0,
  5468. },
  5469. [480040]={
  5470. ['Id']=480040,
  5471. ['Type']=3,
  5472. ['Content']={{115,3},'Congratulation','Item115'},
  5473. ['ArtType']=1,
  5474. ['ArtRes']='Common/ic_moon_key',
  5475. ['StartDropMoveTime']=1.0,
  5476. ['StartDropDlgId']=0,
  5477. ['EndDropDlgId']=0,
  5478. ['ClickDlgId']=255,
  5479. ['TriggerDlgId']=255,
  5480. ['CanSkip']=true,
  5481. ['ForceGuideId']=0,
  5482. },
  5483. [480050]={
  5484. ['Id']=480050,
  5485. ['Type']=3,
  5486. ['Content']={{12840,5},'Congratulation','Item12840'},
  5487. ['ArtType']=1,
  5488. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  5489. ['StartDropMoveTime']=0,
  5490. ['StartDropDlgId']=0,
  5491. ['EndDropDlgId']=0,
  5492. ['ClickDlgId']=255,
  5493. ['TriggerDlgId']=255,
  5494. ['CanSkip']=true,
  5495. ['ForceGuideId']=0,
  5496. },
  5497. [480060]={
  5498. ['Id']=480060,
  5499. ['Type']=3,
  5500. ['Content']={607,'Congratulation','Item607'},
  5501. ['ArtType']=1,
  5502. ['ArtRes']='Items/EquipmentBox3',
  5503. ['StartDropMoveTime']=1.0,
  5504. ['StartDropDlgId']=0,
  5505. ['EndDropDlgId']=0,
  5506. ['ClickDlgId']=255,
  5507. ['TriggerDlgId']=255,
  5508. ['CanSkip']=true,
  5509. ['ForceGuideId']=0,
  5510. },
  5511. [480070]={
  5512. ['Id']=480070,
  5513. ['Type']=3,
  5514. ['Content']={{496,2},'Congratulation','Item496'},
  5515. ['ArtType']=1,
  5516. ['ArtRes']='Items/item_dye_bluedye',
  5517. ['StartDropPos']={-328,469},
  5518. ['StartDropMoveTime']=0,
  5519. ['StartDropDlgId']=0,
  5520. ['EndDropDlgId']=0,
  5521. ['ClickDlgId']=255,
  5522. ['TriggerDlgId']=255,
  5523. ['CanSkip']=true,
  5524. ['ForceGuideId']=0,
  5525. },
  5526. [480080]={
  5527. ['Id']=480080,
  5528. ['Type']=3,
  5529. ['Content']={{115,2},'Congratulation','Item115'},
  5530. ['ArtType']=1,
  5531. ['ArtRes']='Common/ic_moon_key',
  5532. ['StartDropMoveTime']=0,
  5533. ['StartDropDlgId']=0,
  5534. ['EndDropDlgId']=0,
  5535. ['ClickDlgId']=255,
  5536. ['TriggerDlgId']=255,
  5537. ['CanSkip']=true,
  5538. ['ForceGuideId']=0,
  5539. },
  5540. [480090]={
  5541. ['Id']=480090,
  5542. ['Type']=3,
  5543. ['Content']={522,'Congratulation','Item522'},
  5544. ['ArtType']=1,
  5545. ['ArtRes']='Common/ic_res_petegg_purple',
  5546. ['StartDropMoveTime']=1.0,
  5547. ['StartDropDlgId']=0,
  5548. ['EndDropDlgId']=0,
  5549. ['ClickDlgId']=255,
  5550. ['TriggerDlgId']=255,
  5551. ['CanSkip']=true,
  5552. ['ForceGuideId']=0,
  5553. },
  5554. [480100]={
  5555. ['Id']=480100,
  5556. ['Type']=5,
  5557. ['ArtType']=2,
  5558. ['ArtRes']='UIBigMap/PointRoleItemLostdragon',
  5559. ['StartDropMoveTime']=0,
  5560. ['StartDropDlgId']=0,
  5561. ['EndDropDlgId']=255,
  5562. ['ClickDlgId']=255,
  5563. ['TriggerDlgId']=255,
  5564. ['CanSkip']=true,
  5565. ['ForceGuideId']=0,
  5566. },
  5567. [490010]={
  5568. ['Id']=490010,
  5569. ['Type']=3,
  5570. ['Content']={{517,2},'Congratulation','Item507'},
  5571. ['ArtType']=1,
  5572. ['ArtRes']='Common/ic_res_petpiece_mvp',
  5573. ['StartDropPos']={-615,207},
  5574. ['StartDropMoveTime']=1.0,
  5575. ['StartDropDlgId']=255,
  5576. ['EndDropDlgId']=0,
  5577. ['ClickDlgId']=255,
  5578. ['TriggerDlgId']=255,
  5579. ['CanSkip']=true,
  5580. ['ForceGuideId']=0,
  5581. },
  5582. [490020]={
  5583. ['Id']=490020,
  5584. ['Type']=3,
  5585. ['Content']={{101,2},'Congratulation','Item101'},
  5586. ['ArtType']=1,
  5587. ['ArtRes']='Items/elunium',
  5588. ['StartDropMoveTime']=0,
  5589. ['StartDropDlgId']=0,
  5590. ['EndDropDlgId']=0,
  5591. ['ClickDlgId']=255,
  5592. ['TriggerDlgId']=255,
  5593. ['CanSkip']=true,
  5594. ['ForceGuideId']=0,
  5595. },
  5596. [490030]={
  5597. ['Id']=490030,
  5598. ['Type']=3,
  5599. ['Content']={{494,20},'Congratulation','Item494'},
  5600. ['ArtType']=1,
  5601. ['ArtRes']='Items/Item_RandomStone',
  5602. ['StartDropPos']={142,133},
  5603. ['StartDropMoveTime']=0,
  5604. ['StartDropDlgId']=0,
  5605. ['EndDropDlgId']=0,
  5606. ['ClickDlgId']=255,
  5607. ['TriggerDlgId']=255,
  5608. ['CanSkip']=true,
  5609. ['ForceGuideId']=0,
  5610. },
  5611. [490040]={
  5612. ['Id']=490040,
  5613. ['Type']=3,
  5614. ['Content']={{115,3},'Congratulation','Item115'},
  5615. ['ArtType']=1,
  5616. ['ArtRes']='Common/ic_moon_key',
  5617. ['StartDropMoveTime']=1.0,
  5618. ['StartDropDlgId']=0,
  5619. ['EndDropDlgId']=0,
  5620. ['ClickDlgId']=255,
  5621. ['TriggerDlgId']=255,
  5622. ['CanSkip']=true,
  5623. ['ForceGuideId']=0,
  5624. },
  5625. [490050]={
  5626. ['Id']=490050,
  5627. ['Type']=3,
  5628. ['Content']={{12840,5},'Congratulation','Item12840'},
  5629. ['ArtType']=1,
  5630. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  5631. ['StartDropMoveTime']=0,
  5632. ['StartDropDlgId']=0,
  5633. ['EndDropDlgId']=0,
  5634. ['ClickDlgId']=255,
  5635. ['TriggerDlgId']=255,
  5636. ['CanSkip']=true,
  5637. ['ForceGuideId']=0,
  5638. },
  5639. [490060]={
  5640. ['Id']=490060,
  5641. ['Type']=3,
  5642. ['Content']={607,'Congratulation','Item607'},
  5643. ['ArtType']=1,
  5644. ['ArtRes']='Items/EquipmentBox3',
  5645. ['StartDropMoveTime']=0,
  5646. ['StartDropDlgId']=0,
  5647. ['EndDropDlgId']=0,
  5648. ['ClickDlgId']=255,
  5649. ['TriggerDlgId']=255,
  5650. ['CanSkip']=true,
  5651. ['ForceGuideId']=0,
  5652. },
  5653. [490070]={
  5654. ['Id']=490070,
  5655. ['Type']=3,
  5656. ['Content']={{496,2},'Congratulation','Item496'},
  5657. ['ArtType']=1,
  5658. ['ArtRes']='Items/item_dye_bluedye',
  5659. ['StartDropMoveTime']=0,
  5660. ['StartDropDlgId']=0,
  5661. ['EndDropDlgId']=0,
  5662. ['ClickDlgId']=255,
  5663. ['TriggerDlgId']=255,
  5664. ['CanSkip']=true,
  5665. ['ForceGuideId']=0,
  5666. },
  5667. [490080]={
  5668. ['Id']=490080,
  5669. ['Type']=3,
  5670. ['Content']={{115,2},'Congratulation','Item115'},
  5671. ['ArtType']=1,
  5672. ['ArtRes']='Common/ic_moon_key',
  5673. ['StartDropMoveTime']=0,
  5674. ['StartDropDlgId']=0,
  5675. ['EndDropDlgId']=0,
  5676. ['ClickDlgId']=255,
  5677. ['TriggerDlgId']=255,
  5678. ['CanSkip']=true,
  5679. ['ForceGuideId']=0,
  5680. },
  5681. [490090]={
  5682. ['Id']=490090,
  5683. ['Type']=3,
  5684. ['Content']={522,'Congratulation','Item522'},
  5685. ['ArtType']=1,
  5686. ['ArtRes']='Common/ic_res_petegg_purple',
  5687. ['StartDropPos']={510,-133},
  5688. ['StartDropMoveTime']=1.0,
  5689. ['StartDropDlgId']=0,
  5690. ['EndDropDlgId']=0,
  5691. ['ClickDlgId']=255,
  5692. ['TriggerDlgId']=255,
  5693. ['CanSkip']=true,
  5694. ['ForceGuideId']=0,
  5695. },
  5696. [490100]={
  5697. ['Id']=490100,
  5698. ['Type']=5,
  5699. ['ArtType']=2,
  5700. ['ArtRes']='UIBigMap/PointRoleItemKnightofwindstorm',
  5701. ['StartDropMoveTime']=0,
  5702. ['StartDropDlgId']=0,
  5703. ['EndDropDlgId']=255,
  5704. ['ClickDlgId']=255,
  5705. ['TriggerDlgId']=255,
  5706. ['CanSkip']=true,
  5707. ['ForceGuideId']=0,
  5708. },
  5709. [500010]={
  5710. ['Id']=500010,
  5711. ['Type']=3,
  5712. ['Content']={{517,2},'Congratulation','Item507'},
  5713. ['ArtType']=1,
  5714. ['ArtRes']='Common/ic_res_petpiece_mvp',
  5715. ['StartDropPos']={471,-233},
  5716. ['StartDropMoveTime']=1.0,
  5717. ['StartDropDlgId']=255,
  5718. ['EndDropDlgId']=0,
  5719. ['ClickDlgId']=255,
  5720. ['TriggerDlgId']=255,
  5721. ['CanSkip']=true,
  5722. ['ForceGuideId']=0,
  5723. },
  5724. [500020]={
  5725. ['Id']=500020,
  5726. ['Type']=3,
  5727. ['Content']={{101,2},'Congratulation','Item101'},
  5728. ['ArtType']=1,
  5729. ['ArtRes']='Items/elunium',
  5730. ['StartDropMoveTime']=0,
  5731. ['StartDropDlgId']=0,
  5732. ['EndDropDlgId']=0,
  5733. ['ClickDlgId']=255,
  5734. ['TriggerDlgId']=255,
  5735. ['CanSkip']=true,
  5736. ['ForceGuideId']=0,
  5737. },
  5738. [500030]={
  5739. ['Id']=500030,
  5740. ['Type']=3,
  5741. ['Content']={{494,20},'Congratulation','Item494'},
  5742. ['ArtType']=1,
  5743. ['ArtRes']='Items/Item_RandomStone',
  5744. ['StartDropPos']={-20,-203},
  5745. ['StartDropMoveTime']=1.0,
  5746. ['StartDropDlgId']=0,
  5747. ['EndDropDlgId']=0,
  5748. ['ClickDlgId']=255,
  5749. ['TriggerDlgId']=255,
  5750. ['CanSkip']=true,
  5751. ['ForceGuideId']=0,
  5752. },
  5753. [500040]={
  5754. ['Id']=500040,
  5755. ['Type']=3,
  5756. ['Content']={{115,3},'Congratulation','Item115'},
  5757. ['ArtType']=1,
  5758. ['ArtRes']='Common/ic_moon_key',
  5759. ['StartDropPos']={319,-182},
  5760. ['StartDropMoveTime']=1.0,
  5761. ['StartDropDlgId']=0,
  5762. ['EndDropDlgId']=0,
  5763. ['ClickDlgId']=255,
  5764. ['TriggerDlgId']=255,
  5765. ['CanSkip']=true,
  5766. ['ForceGuideId']=0,
  5767. },
  5768. [500050]={
  5769. ['Id']=500050,
  5770. ['Type']=3,
  5771. ['Content']={{12840,5},'Congratulation','Item12840'},
  5772. ['ArtType']=1,
  5773. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  5774. ['StartDropPos']={-277,175},
  5775. ['StartDropMoveTime']=1.0,
  5776. ['StartDropDlgId']=0,
  5777. ['EndDropDlgId']=0,
  5778. ['ClickDlgId']=255,
  5779. ['TriggerDlgId']=255,
  5780. ['CanSkip']=true,
  5781. ['ForceGuideId']=0,
  5782. },
  5783. [500060]={
  5784. ['Id']=500060,
  5785. ['Type']=3,
  5786. ['Content']={607,'Congratulation','Item607'},
  5787. ['ArtType']=1,
  5788. ['ArtRes']='Items/EquipmentBox3',
  5789. ['StartDropMoveTime']=0,
  5790. ['StartDropDlgId']=0,
  5791. ['EndDropDlgId']=0,
  5792. ['ClickDlgId']=255,
  5793. ['TriggerDlgId']=255,
  5794. ['CanSkip']=true,
  5795. ['ForceGuideId']=0,
  5796. },
  5797. [500070]={
  5798. ['Id']=500070,
  5799. ['Type']=3,
  5800. ['Content']={{496,2},'Congratulation','Item496'},
  5801. ['ArtType']=1,
  5802. ['ArtRes']='Items/item_dye_bluedye',
  5803. ['StartDropPos']={17,97},
  5804. ['StartDropMoveTime']=1.0,
  5805. ['StartDropDlgId']=0,
  5806. ['EndDropDlgId']=0,
  5807. ['ClickDlgId']=255,
  5808. ['TriggerDlgId']=255,
  5809. ['CanSkip']=true,
  5810. ['ForceGuideId']=0,
  5811. },
  5812. [500080]={
  5813. ['Id']=500080,
  5814. ['Type']=3,
  5815. ['Content']={{115,2},'Congratulation','Item115'},
  5816. ['ArtType']=1,
  5817. ['ArtRes']='Common/ic_moon_key',
  5818. ['StartDropPos']={-111,279},
  5819. ['StartDropMoveTime']=1.0,
  5820. ['StartDropDlgId']=0,
  5821. ['EndDropDlgId']=0,
  5822. ['ClickDlgId']=255,
  5823. ['TriggerDlgId']=255,
  5824. ['CanSkip']=true,
  5825. ['ForceGuideId']=0,
  5826. },
  5827. [500090]={
  5828. ['Id']=500090,
  5829. ['Type']=3,
  5830. ['Content']={522,'Congratulation','Item522'},
  5831. ['ArtType']=1,
  5832. ['ArtRes']='Common/ic_res_petegg_purple',
  5833. ['StartDropMoveTime']=0,
  5834. ['StartDropDlgId']=0,
  5835. ['EndDropDlgId']=0,
  5836. ['ClickDlgId']=255,
  5837. ['TriggerDlgId']=255,
  5838. ['CanSkip']=true,
  5839. ['ForceGuideId']=0,
  5840. },
  5841. [500100]={
  5842. ['Id']=500100,
  5843. ['Type']=5,
  5844. ['ArtType']=2,
  5845. ['ArtRes']='UIBigMap/PointRoleItemNidhoggr',
  5846. ['StartDropMoveTime']=0,
  5847. ['StartDropDlgId']=0,
  5848. ['EndDropDlgId']=255,
  5849. ['ClickDlgId']=255,
  5850. ['TriggerDlgId']=255,
  5851. ['CanSkip']=true,
  5852. ['ForceGuideId']=0,
  5853. },
  5854. [510010]={
  5855. ['Id']=510010,
  5856. ['Type']=3,
  5857. ['Content']={{517,2},'Congratulation','Item507'},
  5858. ['ArtType']=1,
  5859. ['ArtRes']='Common/ic_res_petpiece_mvp',
  5860. ['StartDropPos']={21,0},
  5861. ['StartDropMoveTime']=1.0,
  5862. ['StartDropDlgId']=255,
  5863. ['EndDropDlgId']=0,
  5864. ['ClickDlgId']=255,
  5865. ['TriggerDlgId']=255,
  5866. ['CanSkip']=true,
  5867. ['ForceGuideId']=0,
  5868. },
  5869. [510020]={
  5870. ['Id']=510020,
  5871. ['Type']=3,
  5872. ['Content']={{101,2},'Congratulation','Item101'},
  5873. ['ArtType']=1,
  5874. ['ArtRes']='Items/elunium',
  5875. ['StartDropPos']={180,0},
  5876. ['StartDropMoveTime']=1.0,
  5877. ['StartDropDlgId']=0,
  5878. ['EndDropDlgId']=0,
  5879. ['ClickDlgId']=255,
  5880. ['TriggerDlgId']=255,
  5881. ['CanSkip']=true,
  5882. ['ForceGuideId']=0,
  5883. },
  5884. [510030]={
  5885. ['Id']=510030,
  5886. ['Type']=3,
  5887. ['Content']={{494,20},'Congratulation','Item494'},
  5888. ['ArtType']=1,
  5889. ['ArtRes']='Items/Item_RandomStone',
  5890. ['StartDropMoveTime']=0,
  5891. ['StartDropDlgId']=0,
  5892. ['EndDropDlgId']=0,
  5893. ['ClickDlgId']=255,
  5894. ['TriggerDlgId']=255,
  5895. ['CanSkip']=true,
  5896. ['ForceGuideId']=0,
  5897. },
  5898. [510040]={
  5899. ['Id']=510040,
  5900. ['Type']=3,
  5901. ['Content']={{115,3},'Congratulation','Item115'},
  5902. ['ArtType']=1,
  5903. ['ArtRes']='Common/ic_moon_key',
  5904. ['StartDropMoveTime']=0,
  5905. ['StartDropDlgId']=0,
  5906. ['EndDropDlgId']=0,
  5907. ['ClickDlgId']=255,
  5908. ['TriggerDlgId']=255,
  5909. ['CanSkip']=true,
  5910. ['ForceGuideId']=0,
  5911. },
  5912. [510050]={
  5913. ['Id']=510050,
  5914. ['Type']=3,
  5915. ['Content']={{12840,5},'Congratulation','Item12840'},
  5916. ['ArtType']=1,
  5917. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  5918. ['StartDropMoveTime']=0,
  5919. ['StartDropDlgId']=0,
  5920. ['EndDropDlgId']=0,
  5921. ['ClickDlgId']=255,
  5922. ['TriggerDlgId']=255,
  5923. ['CanSkip']=true,
  5924. ['ForceGuideId']=0,
  5925. },
  5926. [510060]={
  5927. ['Id']=510060,
  5928. ['Type']=3,
  5929. ['Content']={607,'Congratulation','Item607'},
  5930. ['ArtType']=1,
  5931. ['ArtRes']='Items/EquipmentBox3',
  5932. ['StartDropMoveTime']=0,
  5933. ['StartDropDlgId']=0,
  5934. ['EndDropDlgId']=0,
  5935. ['ClickDlgId']=255,
  5936. ['TriggerDlgId']=255,
  5937. ['CanSkip']=true,
  5938. ['ForceGuideId']=0,
  5939. },
  5940. [510070]={
  5941. ['Id']=510070,
  5942. ['Type']=3,
  5943. ['Content']={{496,2},'Congratulation','Item496'},
  5944. ['ArtType']=1,
  5945. ['ArtRes']='Items/item_dye_bluedye',
  5946. ['StartDropPos']={-250,580},
  5947. ['StartDropMoveTime']=1.0,
  5948. ['StartDropDlgId']=0,
  5949. ['EndDropDlgId']=0,
  5950. ['ClickDlgId']=255,
  5951. ['TriggerDlgId']=255,
  5952. ['CanSkip']=true,
  5953. ['ForceGuideId']=0,
  5954. },
  5955. [510080]={
  5956. ['Id']=510080,
  5957. ['Type']=3,
  5958. ['Content']={{115,2},'Congratulation','Item115'},
  5959. ['ArtType']=1,
  5960. ['ArtRes']='Common/ic_moon_key',
  5961. ['StartDropMoveTime']=0,
  5962. ['StartDropDlgId']=0,
  5963. ['EndDropDlgId']=0,
  5964. ['ClickDlgId']=255,
  5965. ['TriggerDlgId']=255,
  5966. ['CanSkip']=true,
  5967. ['ForceGuideId']=0,
  5968. },
  5969. [510090]={
  5970. ['Id']=510090,
  5971. ['Type']=3,
  5972. ['Content']={522,'Congratulation','Item522'},
  5973. ['ArtType']=1,
  5974. ['ArtRes']='Common/ic_res_petegg_purple',
  5975. ['StartDropMoveTime']=0,
  5976. ['StartDropDlgId']=0,
  5977. ['EndDropDlgId']=0,
  5978. ['ClickDlgId']=255,
  5979. ['TriggerDlgId']=255,
  5980. ['CanSkip']=true,
  5981. ['ForceGuideId']=0,
  5982. },
  5983. [510100]={
  5984. ['Id']=510100,
  5985. ['Type']=5,
  5986. ['ArtType']=2,
  5987. ['ArtRes']='UIBigMap/PointRoleItemGarm',
  5988. ['StartDropMoveTime']=0,
  5989. ['StartDropDlgId']=0,
  5990. ['EndDropDlgId']=255,
  5991. ['ClickDlgId']=255,
  5992. ['TriggerDlgId']=255,
  5993. ['CanSkip']=true,
  5994. ['ForceGuideId']=0,
  5995. },
  5996. [520010]={
  5997. ['Id']=520010,
  5998. ['Type']=3,
  5999. ['Content']={{517,2},'Congratulation','Item507'},
  6000. ['ArtType']=1,
  6001. ['ArtRes']='Common/ic_res_petpiece_mvp',
  6002. ['StartDropPos']={216,-230},
  6003. ['StartDropMoveTime']=1.0,
  6004. ['StartDropDlgId']=255,
  6005. ['EndDropDlgId']=0,
  6006. ['ClickDlgId']=255,
  6007. ['TriggerDlgId']=255,
  6008. ['CanSkip']=true,
  6009. ['ForceGuideId']=0,
  6010. },
  6011. [520020]={
  6012. ['Id']=520020,
  6013. ['Type']=3,
  6014. ['Content']={{101,2},'Congratulation','Item101'},
  6015. ['ArtType']=1,
  6016. ['ArtRes']='Items/elunium',
  6017. ['StartDropPos']={-116,-239},
  6018. ['StartDropMoveTime']=1.0,
  6019. ['StartDropDlgId']=0,
  6020. ['EndDropDlgId']=0,
  6021. ['ClickDlgId']=255,
  6022. ['TriggerDlgId']=255,
  6023. ['CanSkip']=true,
  6024. ['ForceGuideId']=0,
  6025. },
  6026. [520030]={
  6027. ['Id']=520030,
  6028. ['Type']=3,
  6029. ['Content']={{494,20},'Congratulation','Item494'},
  6030. ['ArtType']=1,
  6031. ['ArtRes']='Items/Item_RandomStone',
  6032. ['StartDropPos']={-500,-161},
  6033. ['StartDropMoveTime']=1.0,
  6034. ['StartDropDlgId']=0,
  6035. ['EndDropDlgId']=0,
  6036. ['ClickDlgId']=255,
  6037. ['TriggerDlgId']=255,
  6038. ['CanSkip']=true,
  6039. ['ForceGuideId']=0,
  6040. },
  6041. [520040]={
  6042. ['Id']=520040,
  6043. ['Type']=3,
  6044. ['Content']={{115,3},'Congratulation','Item115'},
  6045. ['ArtType']=1,
  6046. ['ArtRes']='Common/ic_moon_key',
  6047. ['StartDropMoveTime']=0,
  6048. ['StartDropDlgId']=0,
  6049. ['EndDropDlgId']=0,
  6050. ['ClickDlgId']=255,
  6051. ['TriggerDlgId']=255,
  6052. ['CanSkip']=true,
  6053. ['ForceGuideId']=0,
  6054. },
  6055. [520050]={
  6056. ['Id']=520050,
  6057. ['Type']=3,
  6058. ['Content']={{12840,5},'Congratulation','Item12840'},
  6059. ['ArtType']=1,
  6060. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  6061. ['StartDropMoveTime']=0,
  6062. ['StartDropDlgId']=0,
  6063. ['EndDropDlgId']=0,
  6064. ['ClickDlgId']=255,
  6065. ['TriggerDlgId']=255,
  6066. ['CanSkip']=true,
  6067. ['ForceGuideId']=0,
  6068. },
  6069. [520060]={
  6070. ['Id']=520060,
  6071. ['Type']=3,
  6072. ['Content']={607,'Congratulation','Item607'},
  6073. ['ArtType']=1,
  6074. ['ArtRes']='Items/EquipmentBox3',
  6075. ['StartDropPos']={337,166},
  6076. ['StartDropMoveTime']=1.0,
  6077. ['StartDropDlgId']=0,
  6078. ['EndDropDlgId']=0,
  6079. ['ClickDlgId']=255,
  6080. ['TriggerDlgId']=255,
  6081. ['CanSkip']=true,
  6082. ['ForceGuideId']=0,
  6083. },
  6084. [520070]={
  6085. ['Id']=520070,
  6086. ['Type']=3,
  6087. ['Content']={{496,2},'Congratulation','Item496'},
  6088. ['ArtType']=1,
  6089. ['ArtRes']='Items/item_dye_bluedye',
  6090. ['StartDropMoveTime']=0,
  6091. ['StartDropDlgId']=0,
  6092. ['EndDropDlgId']=0,
  6093. ['ClickDlgId']=255,
  6094. ['TriggerDlgId']=255,
  6095. ['CanSkip']=true,
  6096. ['ForceGuideId']=0,
  6097. },
  6098. [520080]={
  6099. ['Id']=520080,
  6100. ['Type']=3,
  6101. ['Content']={{115,2},'Congratulation','Item115'},
  6102. ['ArtType']=1,
  6103. ['ArtRes']='Common/ic_moon_key',
  6104. ['StartDropMoveTime']=0,
  6105. ['StartDropDlgId']=0,
  6106. ['EndDropDlgId']=0,
  6107. ['ClickDlgId']=255,
  6108. ['TriggerDlgId']=255,
  6109. ['CanSkip']=true,
  6110. ['ForceGuideId']=0,
  6111. },
  6112. [520090]={
  6113. ['Id']=520090,
  6114. ['Type']=3,
  6115. ['Content']={522,'Congratulation','Item522'},
  6116. ['ArtType']=1,
  6117. ['ArtRes']='Common/ic_res_petegg_purple',
  6118. ['StartDropMoveTime']=0,
  6119. ['StartDropDlgId']=0,
  6120. ['EndDropDlgId']=0,
  6121. ['ClickDlgId']=255,
  6122. ['TriggerDlgId']=255,
  6123. ['CanSkip']=true,
  6124. ['ForceGuideId']=0,
  6125. },
  6126. [520100]={
  6127. ['Id']=520100,
  6128. ['Type']=5,
  6129. ['ArtType']=2,
  6130. ['ArtRes']='UIBigMap/PointRoleItemSarahIrine',
  6131. ['StartDropPos']={36,239},
  6132. ['StartDropMoveTime']=1.0,
  6133. ['StartDropDlgId']=0,
  6134. ['EndDropDlgId']=255,
  6135. ['ClickDlgId']=255,
  6136. ['TriggerDlgId']=255,
  6137. ['CanSkip']=true,
  6138. ['ForceGuideId']=0,
  6139. },
  6140. [530010]={
  6141. ['Id']=530010,
  6142. ['Type']=3,
  6143. ['Content']={{517,2},'Congratulation','Item507'},
  6144. ['ArtType']=1,
  6145. ['ArtRes']='Common/ic_res_petpiece_mvp',
  6146. ['StartDropPos']={-520,132},
  6147. ['StartDropMoveTime']=1.0,
  6148. ['StartDropDlgId']=255,
  6149. ['EndDropDlgId']=0,
  6150. ['ClickDlgId']=255,
  6151. ['TriggerDlgId']=255,
  6152. ['CanSkip']=true,
  6153. ['ForceGuideId']=0,
  6154. },
  6155. [530020]={
  6156. ['Id']=530020,
  6157. ['Type']=3,
  6158. ['Content']={{101,2},'Congratulation','Item101'},
  6159. ['ArtType']=1,
  6160. ['ArtRes']='Items/elunium',
  6161. ['StartDropMoveTime']=0,
  6162. ['StartDropDlgId']=0,
  6163. ['EndDropDlgId']=0,
  6164. ['ClickDlgId']=255,
  6165. ['TriggerDlgId']=255,
  6166. ['CanSkip']=true,
  6167. ['ForceGuideId']=0,
  6168. },
  6169. [530030]={
  6170. ['Id']=530030,
  6171. ['Type']=3,
  6172. ['Content']={{494,20},'Congratulation','Item494'},
  6173. ['ArtType']=1,
  6174. ['ArtRes']='Items/Item_RandomStone',
  6175. ['StartDropPos']={-59,119},
  6176. ['StartDropMoveTime']=1.0,
  6177. ['StartDropDlgId']=0,
  6178. ['EndDropDlgId']=0,
  6179. ['ClickDlgId']=255,
  6180. ['TriggerDlgId']=255,
  6181. ['CanSkip']=true,
  6182. ['ForceGuideId']=0,
  6183. },
  6184. [530040]={
  6185. ['Id']=530040,
  6186. ['Type']=3,
  6187. ['Content']={{115,3},'Congratulation','Item115'},
  6188. ['ArtType']=1,
  6189. ['ArtRes']='Common/ic_moon_key',
  6190. ['StartDropMoveTime']=0,
  6191. ['StartDropDlgId']=0,
  6192. ['EndDropDlgId']=0,
  6193. ['ClickDlgId']=255,
  6194. ['TriggerDlgId']=255,
  6195. ['CanSkip']=true,
  6196. ['ForceGuideId']=0,
  6197. },
  6198. [530050]={
  6199. ['Id']=530050,
  6200. ['Type']=3,
  6201. ['Content']={{12840,5},'Congratulation','Item12840'},
  6202. ['ArtType']=1,
  6203. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  6204. ['StartDropMoveTime']=0,
  6205. ['StartDropDlgId']=0,
  6206. ['EndDropDlgId']=0,
  6207. ['ClickDlgId']=255,
  6208. ['TriggerDlgId']=255,
  6209. ['CanSkip']=true,
  6210. ['ForceGuideId']=0,
  6211. },
  6212. [530060]={
  6213. ['Id']=530060,
  6214. ['Type']=3,
  6215. ['Content']={607,'Congratulation','Item607'},
  6216. ['ArtType']=1,
  6217. ['ArtRes']='Items/EquipmentBox3',
  6218. ['StartDropPos']={-430,-89},
  6219. ['StartDropMoveTime']=1.0,
  6220. ['StartDropDlgId']=0,
  6221. ['EndDropDlgId']=0,
  6222. ['ClickDlgId']=255,
  6223. ['TriggerDlgId']=255,
  6224. ['CanSkip']=true,
  6225. ['ForceGuideId']=0,
  6226. },
  6227. [530070]={
  6228. ['Id']=530070,
  6229. ['Type']=3,
  6230. ['Content']={{496,2},'Congratulation','Item496'},
  6231. ['ArtType']=1,
  6232. ['ArtRes']='Items/item_dye_bluedye',
  6233. ['StartDropMoveTime']=0,
  6234. ['StartDropDlgId']=0,
  6235. ['EndDropDlgId']=0,
  6236. ['ClickDlgId']=255,
  6237. ['TriggerDlgId']=255,
  6238. ['CanSkip']=true,
  6239. ['ForceGuideId']=0,
  6240. },
  6241. [530080]={
  6242. ['Id']=530080,
  6243. ['Type']=3,
  6244. ['Content']={{115,2},'Congratulation','Item115'},
  6245. ['ArtType']=1,
  6246. ['ArtRes']='Common/ic_moon_key',
  6247. ['StartDropMoveTime']=0,
  6248. ['StartDropDlgId']=0,
  6249. ['EndDropDlgId']=0,
  6250. ['ClickDlgId']=255,
  6251. ['TriggerDlgId']=255,
  6252. ['CanSkip']=true,
  6253. ['ForceGuideId']=0,
  6254. },
  6255. [530090]={
  6256. ['Id']=530090,
  6257. ['Type']=3,
  6258. ['Content']={522,'Congratulation','Item522'},
  6259. ['ArtType']=1,
  6260. ['ArtRes']='Common/ic_res_petegg_purple',
  6261. ['StartDropPos']={15,-119},
  6262. ['StartDropMoveTime']=1.0,
  6263. ['StartDropDlgId']=0,
  6264. ['EndDropDlgId']=0,
  6265. ['ClickDlgId']=255,
  6266. ['TriggerDlgId']=255,
  6267. ['CanSkip']=true,
  6268. ['ForceGuideId']=0,
  6269. },
  6270. [530100]={
  6271. ['Id']=530100,
  6272. ['Type']=5,
  6273. ['ArtType']=2,
  6274. ['ArtRes']='UIBigMap/PointRoleItemDetale',
  6275. ['StartDropMoveTime']=0,
  6276. ['StartDropDlgId']=0,
  6277. ['EndDropDlgId']=255,
  6278. ['ClickDlgId']=255,
  6279. ['TriggerDlgId']=255,
  6280. ['CanSkip']=true,
  6281. ['ForceGuideId']=0,
  6282. },
  6283. [540010]={
  6284. ['Id']=540010,
  6285. ['Type']=3,
  6286. ['Content']={{517,2},'Congratulation','Item507'},
  6287. ['ArtType']=1,
  6288. ['ArtRes']='Common/ic_res_petpiece_mvp',
  6289. ['StartDropPos']={428,72},
  6290. ['StartDropMoveTime']=1.0,
  6291. ['StartDropDlgId']=255,
  6292. ['EndDropDlgId']=0,
  6293. ['ClickDlgId']=255,
  6294. ['TriggerDlgId']=255,
  6295. ['CanSkip']=true,
  6296. ['ForceGuideId']=0,
  6297. },
  6298. [540020]={
  6299. ['Id']=540020,
  6300. ['Type']=3,
  6301. ['Content']={{101,2},'Congratulation','Item101'},
  6302. ['ArtType']=1,
  6303. ['ArtRes']='Items/elunium',
  6304. ['StartDropPos']={922,-16},
  6305. ['StartDropMoveTime']=1.0,
  6306. ['StartDropDlgId']=0,
  6307. ['EndDropDlgId']=0,
  6308. ['ClickDlgId']=255,
  6309. ['TriggerDlgId']=255,
  6310. ['CanSkip']=true,
  6311. ['ForceGuideId']=0,
  6312. },
  6313. [540030]={
  6314. ['Id']=540030,
  6315. ['Type']=3,
  6316. ['Content']={{494,20},'Congratulation','Item494'},
  6317. ['ArtType']=1,
  6318. ['ArtRes']='Items/Item_RandomStone',
  6319. ['StartDropMoveTime']=0,
  6320. ['StartDropDlgId']=0,
  6321. ['EndDropDlgId']=0,
  6322. ['ClickDlgId']=255,
  6323. ['TriggerDlgId']=255,
  6324. ['CanSkip']=true,
  6325. ['ForceGuideId']=0,
  6326. },
  6327. [540040]={
  6328. ['Id']=540040,
  6329. ['Type']=3,
  6330. ['Content']={{115,3},'Congratulation','Item115'},
  6331. ['ArtType']=1,
  6332. ['ArtRes']='Common/ic_moon_key',
  6333. ['StartDropMoveTime']=0,
  6334. ['StartDropDlgId']=0,
  6335. ['EndDropDlgId']=0,
  6336. ['ClickDlgId']=255,
  6337. ['TriggerDlgId']=255,
  6338. ['CanSkip']=true,
  6339. ['ForceGuideId']=0,
  6340. },
  6341. [540050]={
  6342. ['Id']=540050,
  6343. ['Type']=3,
  6344. ['Content']={{12840,5},'Congratulation','Item12840'},
  6345. ['ArtType']=1,
  6346. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  6347. ['StartDropPos']={350,-79},
  6348. ['StartDropMoveTime']=1.0,
  6349. ['StartDropDlgId']=0,
  6350. ['EndDropDlgId']=0,
  6351. ['ClickDlgId']=255,
  6352. ['TriggerDlgId']=255,
  6353. ['CanSkip']=true,
  6354. ['ForceGuideId']=0,
  6355. },
  6356. [540060]={
  6357. ['Id']=540060,
  6358. ['Type']=3,
  6359. ['Content']={607,'Congratulation','Item607'},
  6360. ['ArtType']=1,
  6361. ['ArtRes']='Items/EquipmentBox3',
  6362. ['StartDropPos']={454,-79},
  6363. ['StartDropMoveTime']=1.0,
  6364. ['StartDropDlgId']=0,
  6365. ['EndDropDlgId']=0,
  6366. ['ClickDlgId']=255,
  6367. ['TriggerDlgId']=255,
  6368. ['CanSkip']=true,
  6369. ['ForceGuideId']=0,
  6370. },
  6371. [540070]={
  6372. ['Id']=540070,
  6373. ['Type']=3,
  6374. ['Content']={{496,2},'Congratulation','Item496'},
  6375. ['ArtType']=1,
  6376. ['ArtRes']='Items/item_dye_bluedye',
  6377. ['StartDropPos']={-670,135},
  6378. ['StartDropMoveTime']=1.0,
  6379. ['StartDropDlgId']=0,
  6380. ['EndDropDlgId']=0,
  6381. ['ClickDlgId']=255,
  6382. ['TriggerDlgId']=255,
  6383. ['CanSkip']=true,
  6384. ['ForceGuideId']=0,
  6385. },
  6386. [540080]={
  6387. ['Id']=540080,
  6388. ['Type']=3,
  6389. ['Content']={{115,2},'Congratulation','Item115'},
  6390. ['ArtType']=1,
  6391. ['ArtRes']='Common/ic_moon_key',
  6392. ['StartDropMoveTime']=0,
  6393. ['StartDropDlgId']=0,
  6394. ['EndDropDlgId']=0,
  6395. ['ClickDlgId']=255,
  6396. ['TriggerDlgId']=255,
  6397. ['CanSkip']=true,
  6398. ['ForceGuideId']=0,
  6399. },
  6400. [540090]={
  6401. ['Id']=540090,
  6402. ['Type']=3,
  6403. ['Content']={522,'Congratulation','Item522'},
  6404. ['ArtType']=1,
  6405. ['ArtRes']='Common/ic_res_petegg_purple',
  6406. ['StartDropPos']={-492,50},
  6407. ['StartDropMoveTime']=1.0,
  6408. ['StartDropDlgId']=0,
  6409. ['EndDropDlgId']=0,
  6410. ['ClickDlgId']=255,
  6411. ['TriggerDlgId']=255,
  6412. ['CanSkip']=true,
  6413. ['ForceGuideId']=0,
  6414. },
  6415. [540100]={
  6416. ['Id']=540100,
  6417. ['Type']=5,
  6418. ['ArtType']=2,
  6419. ['ArtRes']='UIBigMap/PointRoleItemLostdragon',
  6420. ['StartDropMoveTime']=0,
  6421. ['StartDropDlgId']=0,
  6422. ['EndDropDlgId']=255,
  6423. ['ClickDlgId']=255,
  6424. ['TriggerDlgId']=255,
  6425. ['CanSkip']=true,
  6426. ['ForceGuideId']=0,
  6427. },
  6428. [550010]={
  6429. ['Id']=550010,
  6430. ['Type']=3,
  6431. ['Content']={{517,2},'Congratulation','Item507'},
  6432. ['ArtType']=1,
  6433. ['ArtRes']='Common/ic_res_petpiece_mvp',
  6434. ['StartDropPos']={975.0001,594},
  6435. ['StartDropMoveTime']=1.0,
  6436. ['StartDropDlgId']=255,
  6437. ['EndDropDlgId']=0,
  6438. ['ClickDlgId']=255,
  6439. ['TriggerDlgId']=255,
  6440. ['CanSkip']=true,
  6441. ['ForceGuideId']=0,
  6442. },
  6443. [550020]={
  6444. ['Id']=550020,
  6445. ['Type']=3,
  6446. ['Content']={{101,2},'Congratulation','Item101'},
  6447. ['ArtType']=1,
  6448. ['ArtRes']='Items/elunium',
  6449. ['StartDropMoveTime']=0,
  6450. ['StartDropDlgId']=0,
  6451. ['EndDropDlgId']=0,
  6452. ['ClickDlgId']=255,
  6453. ['TriggerDlgId']=255,
  6454. ['CanSkip']=true,
  6455. ['ForceGuideId']=0,
  6456. },
  6457. [550030]={
  6458. ['Id']=550030,
  6459. ['Type']=3,
  6460. ['Content']={{494,20},'Congratulation','Item494'},
  6461. ['ArtType']=1,
  6462. ['ArtRes']='Items/Item_RandomStone',
  6463. ['StartDropPos']={229,119},
  6464. ['StartDropMoveTime']=1.0,
  6465. ['StartDropDlgId']=0,
  6466. ['EndDropDlgId']=0,
  6467. ['ClickDlgId']=255,
  6468. ['TriggerDlgId']=255,
  6469. ['CanSkip']=true,
  6470. ['ForceGuideId']=0,
  6471. },
  6472. [550040]={
  6473. ['Id']=550040,
  6474. ['Type']=3,
  6475. ['Content']={{115,3},'Congratulation','Item115'},
  6476. ['ArtType']=1,
  6477. ['ArtRes']='Common/ic_moon_key',
  6478. ['StartDropMoveTime']=0,
  6479. ['StartDropDlgId']=0,
  6480. ['EndDropDlgId']=0,
  6481. ['ClickDlgId']=255,
  6482. ['TriggerDlgId']=255,
  6483. ['CanSkip']=true,
  6484. ['ForceGuideId']=0,
  6485. },
  6486. [550050]={
  6487. ['Id']=550050,
  6488. ['Type']=3,
  6489. ['Content']={{12840,5},'Congratulation','Item12840'},
  6490. ['ArtType']=1,
  6491. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  6492. ['StartDropMoveTime']=0,
  6493. ['StartDropDlgId']=0,
  6494. ['EndDropDlgId']=0,
  6495. ['ClickDlgId']=255,
  6496. ['TriggerDlgId']=255,
  6497. ['CanSkip']=true,
  6498. ['ForceGuideId']=0,
  6499. },
  6500. [550060]={
  6501. ['Id']=550060,
  6502. ['Type']=3,
  6503. ['Content']={607,'Congratulation','Item607'},
  6504. ['ArtType']=1,
  6505. ['ArtRes']='Items/EquipmentBox3',
  6506. ['StartDropPos']={-472,-277},
  6507. ['StartDropMoveTime']=1.0,
  6508. ['StartDropDlgId']=0,
  6509. ['EndDropDlgId']=0,
  6510. ['ClickDlgId']=255,
  6511. ['TriggerDlgId']=255,
  6512. ['CanSkip']=true,
  6513. ['ForceGuideId']=0,
  6514. },
  6515. [550070]={
  6516. ['Id']=550070,
  6517. ['Type']=3,
  6518. ['Content']={{496,2},'Congratulation','Item496'},
  6519. ['ArtType']=1,
  6520. ['ArtRes']='Items/item_dye_bluedye',
  6521. ['StartDropMoveTime']=0,
  6522. ['StartDropDlgId']=0,
  6523. ['EndDropDlgId']=0,
  6524. ['ClickDlgId']=255,
  6525. ['TriggerDlgId']=255,
  6526. ['CanSkip']=true,
  6527. ['ForceGuideId']=0,
  6528. },
  6529. [550080]={
  6530. ['Id']=550080,
  6531. ['Type']=3,
  6532. ['Content']={{115,2},'Congratulation','Item115'},
  6533. ['ArtType']=1,
  6534. ['ArtRes']='Common/ic_moon_key',
  6535. ['StartDropMoveTime']=0,
  6536. ['StartDropDlgId']=0,
  6537. ['EndDropDlgId']=0,
  6538. ['ClickDlgId']=255,
  6539. ['TriggerDlgId']=255,
  6540. ['CanSkip']=true,
  6541. ['ForceGuideId']=0,
  6542. },
  6543. [550090]={
  6544. ['Id']=550090,
  6545. ['Type']=3,
  6546. ['Content']={522,'Congratulation','Item522'},
  6547. ['ArtType']=1,
  6548. ['ArtRes']='Common/ic_res_petegg_purple',
  6549. ['StartDropMoveTime']=0,
  6550. ['StartDropDlgId']=0,
  6551. ['EndDropDlgId']=0,
  6552. ['ClickDlgId']=255,
  6553. ['TriggerDlgId']=255,
  6554. ['CanSkip']=true,
  6555. ['ForceGuideId']=0,
  6556. },
  6557. [550100]={
  6558. ['Id']=550100,
  6559. ['Type']=5,
  6560. ['ArtType']=2,
  6561. ['ArtRes']='UIBigMap/PointRoleItemAlvis',
  6562. ['StartDropMoveTime']=0,
  6563. ['StartDropDlgId']=0,
  6564. ['EndDropDlgId']=255,
  6565. ['ClickDlgId']=255,
  6566. ['TriggerDlgId']=255,
  6567. ['CanSkip']=true,
  6568. ['ForceGuideId']=0,
  6569. },
  6570. [560010]={
  6571. ['Id']=560010,
  6572. ['Type']=3,
  6573. ['Content']={{517,2},'Congratulation','Item507'},
  6574. ['ArtType']=1,
  6575. ['ArtRes']='Common/ic_res_petpiece_mvp',
  6576. ['StartDropPos']={-752,-254},
  6577. ['StartDropMoveTime']=1.0,
  6578. ['StartDropDlgId']=255,
  6579. ['EndDropDlgId']=0,
  6580. ['ClickDlgId']=255,
  6581. ['TriggerDlgId']=255,
  6582. ['CanSkip']=true,
  6583. ['ForceGuideId']=0,
  6584. },
  6585. [560020]={
  6586. ['Id']=560020,
  6587. ['Type']=3,
  6588. ['Content']={{101,2},'Congratulation','Item101'},
  6589. ['ArtType']=1,
  6590. ['ArtRes']='Items/elunium',
  6591. ['StartDropMoveTime']=0,
  6592. ['StartDropDlgId']=0,
  6593. ['EndDropDlgId']=0,
  6594. ['ClickDlgId']=255,
  6595. ['TriggerDlgId']=255,
  6596. ['CanSkip']=true,
  6597. ['ForceGuideId']=0,
  6598. },
  6599. [560030]={
  6600. ['Id']=560030,
  6601. ['Type']=3,
  6602. ['Content']={{494,20},'Congratulation','Item494'},
  6603. ['ArtType']=1,
  6604. ['ArtRes']='Items/Item_RandomStone',
  6605. ['StartDropMoveTime']=0,
  6606. ['StartDropDlgId']=0,
  6607. ['EndDropDlgId']=0,
  6608. ['ClickDlgId']=255,
  6609. ['TriggerDlgId']=255,
  6610. ['CanSkip']=true,
  6611. ['ForceGuideId']=0,
  6612. },
  6613. [560040]={
  6614. ['Id']=560040,
  6615. ['Type']=3,
  6616. ['Content']={{115,3},'Congratulation','Item115'},
  6617. ['ArtType']=1,
  6618. ['ArtRes']='Common/ic_moon_key',
  6619. ['StartDropPos']={135,57},
  6620. ['StartDropMoveTime']=1.0,
  6621. ['StartDropDlgId']=0,
  6622. ['EndDropDlgId']=0,
  6623. ['ClickDlgId']=255,
  6624. ['TriggerDlgId']=255,
  6625. ['CanSkip']=true,
  6626. ['ForceGuideId']=0,
  6627. },
  6628. [560050]={
  6629. ['Id']=560050,
  6630. ['Type']=3,
  6631. ['Content']={{12840,5},'Congratulation','Item12840'},
  6632. ['ArtType']=1,
  6633. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  6634. ['StartDropMoveTime']=0,
  6635. ['StartDropDlgId']=0,
  6636. ['EndDropDlgId']=0,
  6637. ['ClickDlgId']=255,
  6638. ['TriggerDlgId']=255,
  6639. ['CanSkip']=true,
  6640. ['ForceGuideId']=0,
  6641. },
  6642. [560060]={
  6643. ['Id']=560060,
  6644. ['Type']=3,
  6645. ['Content']={607,'Congratulation','Item607'},
  6646. ['ArtType']=1,
  6647. ['ArtRes']='Items/EquipmentBox3',
  6648. ['StartDropMoveTime']=0,
  6649. ['StartDropDlgId']=0,
  6650. ['EndDropDlgId']=0,
  6651. ['ClickDlgId']=255,
  6652. ['TriggerDlgId']=255,
  6653. ['CanSkip']=true,
  6654. ['ForceGuideId']=0,
  6655. },
  6656. [560070]={
  6657. ['Id']=560070,
  6658. ['Type']=3,
  6659. ['Content']={{496,2},'Congratulation','Item496'},
  6660. ['ArtType']=1,
  6661. ['ArtRes']='Items/item_dye_bluedye',
  6662. ['StartDropPos']={728,-36},
  6663. ['StartDropMoveTime']=1.0,
  6664. ['StartDropDlgId']=0,
  6665. ['EndDropDlgId']=0,
  6666. ['ClickDlgId']=255,
  6667. ['TriggerDlgId']=255,
  6668. ['CanSkip']=true,
  6669. ['ForceGuideId']=0,
  6670. },
  6671. [560080]={
  6672. ['Id']=560080,
  6673. ['Type']=3,
  6674. ['Content']={{115,2},'Congratulation','Item115'},
  6675. ['ArtType']=1,
  6676. ['ArtRes']='Common/ic_moon_key',
  6677. ['StartDropMoveTime']=0,
  6678. ['StartDropDlgId']=0,
  6679. ['EndDropDlgId']=0,
  6680. ['ClickDlgId']=255,
  6681. ['TriggerDlgId']=255,
  6682. ['CanSkip']=true,
  6683. ['ForceGuideId']=0,
  6684. },
  6685. [560090]={
  6686. ['Id']=560090,
  6687. ['Type']=3,
  6688. ['Content']={522,'Congratulation','Item522'},
  6689. ['ArtType']=1,
  6690. ['ArtRes']='Common/ic_res_petegg_purple',
  6691. ['StartDropMoveTime']=0,
  6692. ['StartDropDlgId']=0,
  6693. ['EndDropDlgId']=0,
  6694. ['ClickDlgId']=255,
  6695. ['TriggerDlgId']=255,
  6696. ['CanSkip']=true,
  6697. ['ForceGuideId']=0,
  6698. },
  6699. [560100]={
  6700. ['Id']=560100,
  6701. ['Type']=5,
  6702. ['ArtType']=2,
  6703. ['ArtRes']='UIBigMap/PointRoleItemAtroce',
  6704. ['StartDropMoveTime']=0,
  6705. ['StartDropDlgId']=0,
  6706. ['EndDropDlgId']=255,
  6707. ['ClickDlgId']=255,
  6708. ['TriggerDlgId']=255,
  6709. ['CanSkip']=true,
  6710. ['ForceGuideId']=0,
  6711. },
  6712. [570010]={
  6713. ['Id']=570010,
  6714. ['Type']=3,
  6715. ['Content']={{517,2},'Congratulation','Item507'},
  6716. ['ArtType']=1,
  6717. ['ArtRes']='Common/ic_res_petpiece_mvp',
  6718. ['StartDropPos']={-1008,-36},
  6719. ['StartDropMoveTime']=1.0,
  6720. ['StartDropDlgId']=255,
  6721. ['EndDropDlgId']=0,
  6722. ['ClickDlgId']=255,
  6723. ['TriggerDlgId']=255,
  6724. ['CanSkip']=true,
  6725. ['ForceGuideId']=0,
  6726. },
  6727. [570020]={
  6728. ['Id']=570020,
  6729. ['Type']=3,
  6730. ['Content']={{101,2},'Congratulation','Item101'},
  6731. ['ArtType']=1,
  6732. ['ArtRes']='Items/elunium',
  6733. ['StartDropMoveTime']=0,
  6734. ['StartDropDlgId']=0,
  6735. ['EndDropDlgId']=0,
  6736. ['ClickDlgId']=255,
  6737. ['TriggerDlgId']=255,
  6738. ['CanSkip']=true,
  6739. ['ForceGuideId']=0,
  6740. },
  6741. [570030]={
  6742. ['Id']=570030,
  6743. ['Type']=3,
  6744. ['Content']={{494,20},'Congratulation','Item494'},
  6745. ['ArtType']=1,
  6746. ['ArtRes']='Items/Item_RandomStone',
  6747. ['StartDropPos']={-309,522},
  6748. ['StartDropMoveTime']=1.0,
  6749. ['StartDropDlgId']=0,
  6750. ['EndDropDlgId']=0,
  6751. ['ClickDlgId']=255,
  6752. ['TriggerDlgId']=255,
  6753. ['CanSkip']=true,
  6754. ['ForceGuideId']=0,
  6755. },
  6756. [570040]={
  6757. ['Id']=570040,
  6758. ['Type']=3,
  6759. ['Content']={{115,3},'Congratulation','Item115'},
  6760. ['ArtType']=1,
  6761. ['ArtRes']='Common/ic_moon_key',
  6762. ['StartDropMoveTime']=0,
  6763. ['StartDropDlgId']=0,
  6764. ['EndDropDlgId']=0,
  6765. ['ClickDlgId']=255,
  6766. ['TriggerDlgId']=255,
  6767. ['CanSkip']=true,
  6768. ['ForceGuideId']=0,
  6769. },
  6770. [570050]={
  6771. ['Id']=570050,
  6772. ['Type']=3,
  6773. ['Content']={{12840,5},'Congratulation','Item12840'},
  6774. ['ArtType']=1,
  6775. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  6776. ['StartDropMoveTime']=0,
  6777. ['StartDropDlgId']=0,
  6778. ['EndDropDlgId']=0,
  6779. ['ClickDlgId']=255,
  6780. ['TriggerDlgId']=255,
  6781. ['CanSkip']=true,
  6782. ['ForceGuideId']=0,
  6783. },
  6784. [570060]={
  6785. ['Id']=570060,
  6786. ['Type']=3,
  6787. ['Content']={607,'Congratulation','Item607'},
  6788. ['ArtType']=1,
  6789. ['ArtRes']='Items/EquipmentBox3',
  6790. ['StartDropPos']={385,352},
  6791. ['StartDropMoveTime']=1.0,
  6792. ['StartDropDlgId']=0,
  6793. ['EndDropDlgId']=0,
  6794. ['ClickDlgId']=255,
  6795. ['TriggerDlgId']=255,
  6796. ['CanSkip']=true,
  6797. ['ForceGuideId']=0,
  6798. },
  6799. [570070]={
  6800. ['Id']=570070,
  6801. ['Type']=3,
  6802. ['Content']={{496,2},'Congratulation','Item496'},
  6803. ['ArtType']=1,
  6804. ['ArtRes']='Items/item_dye_bluedye',
  6805. ['StartDropMoveTime']=0,
  6806. ['StartDropDlgId']=0,
  6807. ['EndDropDlgId']=0,
  6808. ['ClickDlgId']=255,
  6809. ['TriggerDlgId']=255,
  6810. ['CanSkip']=true,
  6811. ['ForceGuideId']=0,
  6812. },
  6813. [570080]={
  6814. ['Id']=570080,
  6815. ['Type']=3,
  6816. ['Content']={{115,2},'Congratulation','Item115'},
  6817. ['ArtType']=1,
  6818. ['ArtRes']='Common/ic_moon_key',
  6819. ['StartDropPos']={651,-165},
  6820. ['StartDropMoveTime']=1.0,
  6821. ['StartDropDlgId']=0,
  6822. ['EndDropDlgId']=0,
  6823. ['ClickDlgId']=255,
  6824. ['TriggerDlgId']=255,
  6825. ['CanSkip']=true,
  6826. ['ForceGuideId']=0,
  6827. },
  6828. [570090]={
  6829. ['Id']=570090,
  6830. ['Type']=3,
  6831. ['Content']={522,'Congratulation','Item522'},
  6832. ['ArtType']=1,
  6833. ['ArtRes']='Common/ic_res_petegg_purple',
  6834. ['StartDropMoveTime']=0,
  6835. ['StartDropDlgId']=0,
  6836. ['EndDropDlgId']=0,
  6837. ['ClickDlgId']=255,
  6838. ['TriggerDlgId']=255,
  6839. ['CanSkip']=true,
  6840. ['ForceGuideId']=0,
  6841. },
  6842. [570100]={
  6843. ['Id']=570100,
  6844. ['Type']=5,
  6845. ['ArtType']=2,
  6846. ['ArtRes']='UIBigMap/PointRoleItemSarahIrine',
  6847. ['StartDropMoveTime']=0,
  6848. ['StartDropDlgId']=0,
  6849. ['EndDropDlgId']=255,
  6850. ['ClickDlgId']=255,
  6851. ['TriggerDlgId']=255,
  6852. ['CanSkip']=true,
  6853. ['ForceGuideId']=0,
  6854. },
  6855. [580010]={
  6856. ['Id']=580010,
  6857. ['Type']=3,
  6858. ['Content']={{517,2},'Congratulation','Item507'},
  6859. ['ArtType']=1,
  6860. ['ArtRes']='Common/ic_res_petpiece_mvp',
  6861. ['StartDropPos']={0,336},
  6862. ['StartDropMoveTime']=1.0,
  6863. ['StartDropDlgId']=255,
  6864. ['EndDropDlgId']=0,
  6865. ['ClickDlgId']=255,
  6866. ['TriggerDlgId']=255,
  6867. ['CanSkip']=true,
  6868. ['ForceGuideId']=0,
  6869. },
  6870. [580020]={
  6871. ['Id']=580020,
  6872. ['Type']=3,
  6873. ['Content']={{101,2},'Congratulation','Item101'},
  6874. ['ArtType']=1,
  6875. ['ArtRes']='Items/elunium',
  6876. ['StartDropPos']={-732,530},
  6877. ['StartDropMoveTime']=1.0,
  6878. ['StartDropDlgId']=0,
  6879. ['EndDropDlgId']=0,
  6880. ['ClickDlgId']=255,
  6881. ['TriggerDlgId']=255,
  6882. ['CanSkip']=true,
  6883. ['ForceGuideId']=0,
  6884. },
  6885. [580030]={
  6886. ['Id']=580030,
  6887. ['Type']=3,
  6888. ['Content']={{494,20},'Congratulation','Item494'},
  6889. ['ArtType']=1,
  6890. ['ArtRes']='Items/Item_RandomStone',
  6891. ['StartDropMoveTime']=0,
  6892. ['StartDropDlgId']=0,
  6893. ['EndDropDlgId']=0,
  6894. ['ClickDlgId']=255,
  6895. ['TriggerDlgId']=255,
  6896. ['CanSkip']=true,
  6897. ['ForceGuideId']=0,
  6898. },
  6899. [580040]={
  6900. ['Id']=580040,
  6901. ['Type']=3,
  6902. ['Content']={{115,3},'Congratulation','Item115'},
  6903. ['ArtType']=1,
  6904. ['ArtRes']='Common/ic_moon_key',
  6905. ['StartDropPos']={544,839.0001},
  6906. ['StartDropMoveTime']=1.0,
  6907. ['StartDropDlgId']=0,
  6908. ['EndDropDlgId']=0,
  6909. ['ClickDlgId']=255,
  6910. ['TriggerDlgId']=255,
  6911. ['CanSkip']=true,
  6912. ['ForceGuideId']=0,
  6913. },
  6914. [580050]={
  6915. ['Id']=580050,
  6916. ['Type']=3,
  6917. ['Content']={{12840,5},'Congratulation','Item12840'},
  6918. ['ArtType']=1,
  6919. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  6920. ['StartDropMoveTime']=0,
  6921. ['StartDropDlgId']=0,
  6922. ['EndDropDlgId']=0,
  6923. ['ClickDlgId']=255,
  6924. ['TriggerDlgId']=255,
  6925. ['CanSkip']=true,
  6926. ['ForceGuideId']=0,
  6927. },
  6928. [580060]={
  6929. ['Id']=580060,
  6930. ['Type']=3,
  6931. ['Content']={607,'Congratulation','Item607'},
  6932. ['ArtType']=1,
  6933. ['ArtRes']='Items/EquipmentBox3',
  6934. ['StartDropPos']={65,-109},
  6935. ['StartDropMoveTime']=1.0,
  6936. ['StartDropDlgId']=0,
  6937. ['EndDropDlgId']=0,
  6938. ['ClickDlgId']=255,
  6939. ['TriggerDlgId']=255,
  6940. ['CanSkip']=true,
  6941. ['ForceGuideId']=0,
  6942. },
  6943. [580070]={
  6944. ['Id']=580070,
  6945. ['Type']=3,
  6946. ['Content']={{496,2},'Congratulation','Item496'},
  6947. ['ArtType']=1,
  6948. ['ArtRes']='Items/item_dye_bluedye',
  6949. ['StartDropMoveTime']=0,
  6950. ['StartDropDlgId']=0,
  6951. ['EndDropDlgId']=0,
  6952. ['ClickDlgId']=255,
  6953. ['TriggerDlgId']=255,
  6954. ['CanSkip']=true,
  6955. ['ForceGuideId']=0,
  6956. },
  6957. [580080]={
  6958. ['Id']=580080,
  6959. ['Type']=3,
  6960. ['Content']={{115,2},'Congratulation','Item115'},
  6961. ['ArtType']=1,
  6962. ['ArtRes']='Common/ic_moon_key',
  6963. ['StartDropMoveTime']=0,
  6964. ['StartDropDlgId']=0,
  6965. ['EndDropDlgId']=0,
  6966. ['ClickDlgId']=255,
  6967. ['TriggerDlgId']=255,
  6968. ['CanSkip']=true,
  6969. ['ForceGuideId']=0,
  6970. },
  6971. [580090]={
  6972. ['Id']=580090,
  6973. ['Type']=3,
  6974. ['Content']={522,'Congratulation','Item522'},
  6975. ['ArtType']=1,
  6976. ['ArtRes']='Common/ic_res_petegg_purple',
  6977. ['StartDropPos']={-745,-362},
  6978. ['StartDropMoveTime']=1.0,
  6979. ['StartDropDlgId']=0,
  6980. ['EndDropDlgId']=0,
  6981. ['ClickDlgId']=255,
  6982. ['TriggerDlgId']=255,
  6983. ['CanSkip']=true,
  6984. ['ForceGuideId']=0,
  6985. },
  6986. [580100]={
  6987. ['Id']=580100,
  6988. ['Type']=5,
  6989. ['ArtType']=2,
  6990. ['ArtRes']='UIBigMap/PointRoleItemDrake',
  6991. ['StartDropMoveTime']=0,
  6992. ['StartDropDlgId']=0,
  6993. ['EndDropDlgId']=255,
  6994. ['ClickDlgId']=255,
  6995. ['TriggerDlgId']=255,
  6996. ['CanSkip']=true,
  6997. ['ForceGuideId']=0,
  6998. },
  6999. [1001005]={
  7000. ['Id']=1001005,
  7001. ['Type']=6,
  7002. ['Content']={'unlock','Fun30'},
  7003. ['ArtType']=1,
  7004. ['ArtRes']='UIFunOpen/ic_open_Task',
  7005. ['StartDropPos']={390,-9},
  7006. ['StartDropMoveTime']=0,
  7007. ['StartDropDlgId']=140,
  7008. ['EndDropDlgId']=0,
  7009. ['ClickDlgId']=172,
  7010. ['TriggerDlgId']=146,
  7011. ['CanSkip']=true,
  7012. ['ForceGuideId']=0,
  7013. },
  7014. [1001006]={
  7015. ['Id']=1001006,
  7016. ['Type']=3,
  7017. ['Content']={{20003,1},'Congratulation','Item20003'},
  7018. ['ArtType']=1,
  7019. ['ArtRes']='Items/item_speedcard',
  7020. ['StartDropMoveTime']=0,
  7021. ['StartDropDlgId']=0,
  7022. ['EndDropDlgId']=0,
  7023. ['ClickDlgId']=1730,
  7024. ['TriggerDlgId']=1730,
  7025. ['CanSkip']=true,
  7026. ['ForceGuideId']=0,
  7027. },
  7028. [1001007]={
  7029. ['Id']=1001007,
  7030. ['Type']=3,
  7031. ['Content']={{12171,1},'Congratulation','Card12171'},
  7032. ['ArtType']=1,
  7033. ['ArtRes']='Card_ic/card_zhongjinshuhuangchong01',
  7034. ['StartDropMoveTime']=0,
  7035. ['StartDropDlgId']=0,
  7036. ['EndDropDlgId']=0,
  7037. ['ClickDlgId']=1740,
  7038. ['TriggerDlgId']=1740,
  7039. ['CanSkip']=true,
  7040. ['ForceGuideId']=0,
  7041. },
  7042. [1001010]={
  7043. ['Id']=1001010,
  7044. ['Type']=1,
  7045. ['Content']={11},
  7046. ['ArtType']=2,
  7047. ['ArtRes']='UIBigMap/PointRoleItemDts',
  7048. ['StartDropMoveTime']=0,
  7049. ['StartDropDlgId']=0,
  7050. ['EndDropDlgId']=0,
  7051. ['ClickDlgId']=174,
  7052. ['TriggerDlgId']=152,
  7053. ['CanSkip']=true,
  7054. ['ForceGuideId']=0,
  7055. },
  7056. [1001011]={
  7057. ['Id']=1001011,
  7058. ['Type']=3,
  7059. ['Content']={{12136,1},'Congratulation','Card12136'},
  7060. ['ArtType']=1,
  7061. ['ArtRes']='Card_ic/card_shourenyingxiong01',
  7062. ['StartDropMoveTime']=0,
  7063. ['StartDropDlgId']=0,
  7064. ['EndDropDlgId']=0,
  7065. ['ClickDlgId']=1740,
  7066. ['TriggerDlgId']=1740,
  7067. ['CanSkip']=true,
  7068. ['ForceGuideId']=0,
  7069. },
  7070. [1001015]={
  7071. ['Id']=1001015,
  7072. ['Type']=1,
  7073. ['ArtType']=2,
  7074. ['ArtRes']='UIBigMap/PointRoleItemGqns',
  7075. ['StartDropMoveTime']=0,
  7076. ['StartDropDlgId']=0,
  7077. ['EndDropDlgId']=0,
  7078. ['ClickDlgId']=176,
  7079. ['TriggerDlgId']=158,
  7080. ['CanSkip']=true,
  7081. ['ForceGuideId']=0,
  7082. },
  7083. [1001020]={
  7084. ['Id']=1001020,
  7085. ['Type']=1,
  7086. ['Content']={10},
  7087. ['ArtType']=1,
  7088. ['ArtRes']='UIFunOpen/ic_open_saiji',
  7089. ['StartDropPos']={-432,-9},
  7090. ['StartDropMoveTime']=1.0,
  7091. ['StartDropDlgId']=0,
  7092. ['EndDropDlgId']=0,
  7093. ['ClickDlgId']=178,
  7094. ['TriggerDlgId']=168,
  7095. ['CanSkip']=true,
  7096. ['ForceGuideId']=0,
  7097. },
  7098. [1001025]={
  7099. ['Id']=1001025,
  7100. ['Type']=1,
  7101. ['ArtType']=2,
  7102. ['ArtRes']='UIBigMap/PointRoleItemWlns',
  7103. ['StartDropMoveTime']=0,
  7104. ['StartDropDlgId']=0,
  7105. ['EndDropDlgId']=0,
  7106. ['ClickDlgId']=794,
  7107. ['TriggerDlgId']=794,
  7108. ['CanSkip']=true,
  7109. ['ForceGuideId']=0,
  7110. },
  7111. [1001030]={
  7112. ['Id']=1001030,
  7113. ['Type']=5,
  7114. ['ArtType']=2,
  7115. ['ArtRes']='UIBigMap/PointRoleItemBoliKing',
  7116. ['StartDropMoveTime']=0,
  7117. ['StartDropDlgId']=0,
  7118. ['EndDropDlgId']=141,
  7119. ['ClickDlgId']=181,
  7120. ['TriggerDlgId']=170,
  7121. ['CanSkip']=true,
  7122. ['ForceGuideId']=0,
  7123. },
  7124. [1002005]={
  7125. ['Id']=1002005,
  7126. ['Type']=3,
  7127. ['Content']={{12840,5},'Congratulation','Item12840'},
  7128. ['ArtType']=1,
  7129. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  7130. ['StartDropPos']={540,-1},
  7131. ['StartDropMoveTime']=0,
  7132. ['StartDropDlgId']=60,
  7133. ['EndDropDlgId']=0,
  7134. ['ClickDlgId']=52,
  7135. ['TriggerDlgId']=52,
  7136. ['CanSkip']=true,
  7137. ['ForceGuideId']=0,
  7138. },
  7139. [1002010]={
  7140. ['Id']=1002010,
  7141. ['Type']=1,
  7142. ['Content']={33},
  7143. ['ArtType']=1,
  7144. ['ArtRes']='UIFunOpen/ic_open_emoxiehui',
  7145. ['StartDropMoveTime']=0,
  7146. ['StartDropDlgId']=0,
  7147. ['EndDropDlgId']=0,
  7148. ['ClickDlgId']=53,
  7149. ['TriggerDlgId']=53,
  7150. ['CanSkip']=true,
  7151. ['ForceGuideId']=0,
  7152. },
  7153. [1002015]={
  7154. ['Id']=1002015,
  7155. ['Type']=1,
  7156. ['Content']={14},
  7157. ['ArtType']=1,
  7158. ['ArtRes']='UIFunOpen/ic_open_guaji',
  7159. ['StartDropMoveTime']=0,
  7160. ['StartDropDlgId']=0,
  7161. ['EndDropDlgId']=0,
  7162. ['ClickDlgId']=57,
  7163. ['TriggerDlgId']=57,
  7164. ['CanSkip']=true,
  7165. ['ForceGuideId']=0,
  7166. },
  7167. [1002020]={
  7168. ['Id']=1002020,
  7169. ['Type']=1,
  7170. ['ArtType']=2,
  7171. ['ArtRes']='UIBigMap/PointRoleItemGqns',
  7172. ['StartDropPos']={-63,-1},
  7173. ['StartDropMoveTime']=1.0,
  7174. ['StartDropDlgId']=0,
  7175. ['EndDropDlgId']=0,
  7176. ['ClickDlgId']=55,
  7177. ['TriggerDlgId']=55,
  7178. ['CanSkip']=true,
  7179. ['ForceGuideId']=0,
  7180. },
  7181. [1002025]={
  7182. ['Id']=1002025,
  7183. ['Type']=1,
  7184. ['Content']={20},
  7185. ['ArtType']=1,
  7186. ['ArtRes']='UIFunOpen/ic_open_kacao',
  7187. ['StartDropMoveTime']=0,
  7188. ['StartDropDlgId']=0,
  7189. ['EndDropDlgId']=0,
  7190. ['ClickDlgId']=56,
  7191. ['TriggerDlgId']=56,
  7192. ['CanSkip']=true,
  7193. ['ForceGuideId']=0,
  7194. },
  7195. [1002030]={
  7196. ['Id']=1002030,
  7197. ['Type']=1,
  7198. ['Content']={58},
  7199. ['ArtType']=1,
  7200. ['ArtRes']='UIFunOpen/ic_open_summon',
  7201. ['StartDropPos']={-628,-1},
  7202. ['StartDropMoveTime']=1.0,
  7203. ['StartDropDlgId']=0,
  7204. ['EndDropDlgId']=0,
  7205. ['ClickDlgId']=54,
  7206. ['TriggerDlgId']=54,
  7207. ['CanSkip']=true,
  7208. ['ForceGuideId']=0,
  7209. },
  7210. [1002035]={
  7211. ['Id']=1002035,
  7212. ['Type']=5,
  7213. ['ArtType']=2,
  7214. ['ArtRes']='UIBigMap/PointRoleItemOrc',
  7215. ['StartDropMoveTime']=0,
  7216. ['StartDropDlgId']=0,
  7217. ['EndDropDlgId']=50,
  7218. ['ClickDlgId']=59,
  7219. ['TriggerDlgId']=59,
  7220. ['CanSkip']=true,
  7221. ['ForceGuideId']=0,
  7222. },
  7223. [1003005]={
  7224. ['Id']=1003005,
  7225. ['Type']=1,
  7226. ['Content']={2},
  7227. ['ArtType']=1,
  7228. ['ArtRes']='UIFunOpen/ic_open_collect',
  7229. ['StartDropPos']={-37,435},
  7230. ['StartDropMoveTime']=1.0,
  7231. ['StartDropDlgId']=62,
  7232. ['EndDropDlgId']=0,
  7233. ['ClickDlgId']=64,
  7234. ['TriggerDlgId']=64,
  7235. ['CanSkip']=true,
  7236. ['ForceGuideId']=0,
  7237. },
  7238. [1003010]={
  7239. ['Id']=1003010,
  7240. ['Type']=1,
  7241. ['ArtType']=2,
  7242. ['ArtRes']='UIBigMap/PointRoleItemGqns',
  7243. ['StartDropPos']={372,262},
  7244. ['StartDropMoveTime']=1.0,
  7245. ['StartDropDlgId']=0,
  7246. ['EndDropDlgId']=0,
  7247. ['ClickDlgId']=65,
  7248. ['TriggerDlgId']=65,
  7249. ['CanSkip']=true,
  7250. ['ForceGuideId']=0,
  7251. },
  7252. [1003015]={
  7253. ['Id']=1003015,
  7254. ['Type']=1,
  7255. ['Content']={32},
  7256. ['ArtType']=1,
  7257. ['ArtRes']='UIFunOpen/ic_open_tower',
  7258. ['StartDropMoveTime']=0,
  7259. ['StartDropDlgId']=0,
  7260. ['EndDropDlgId']=0,
  7261. ['ClickDlgId']=66,
  7262. ['TriggerDlgId']=66,
  7263. ['CanSkip']=true,
  7264. ['ForceGuideId']=0,
  7265. },
  7266. [1003020]={
  7267. ['Id']=1003020,
  7268. ['Type']=1,
  7269. ['Content']={50},
  7270. ['ArtType']=1,
  7271. ['ArtRes']='UIFunOpen/ic_open_hundreddojo',
  7272. ['StartDropPos']={-455,-128},
  7273. ['StartDropMoveTime']=1.0,
  7274. ['StartDropDlgId']=0,
  7275. ['EndDropDlgId']=0,
  7276. ['ClickDlgId']=67,
  7277. ['TriggerDlgId']=67,
  7278. ['CanSkip']=true,
  7279. ['ForceGuideId']=0,
  7280. },
  7281. [1003025]={
  7282. ['Id']=1003025,
  7283. ['Type']=1,
  7284. ['Content']={5},
  7285. ['ArtType']=1,
  7286. ['ArtRes']='UIFunOpen/ic_open_wboss',
  7287. ['StartDropMoveTime']=0,
  7288. ['StartDropDlgId']=0,
  7289. ['EndDropDlgId']=0,
  7290. ['ClickDlgId']=68,
  7291. ['TriggerDlgId']=68,
  7292. ['CanSkip']=true,
  7293. ['ForceGuideId']=0,
  7294. },
  7295. [1003030]={
  7296. ['Id']=1003030,
  7297. ['Type']=1,
  7298. ['Content']={7},
  7299. ['ArtType']=1,
  7300. ['ArtRes']='UIFunOpen/ic_open_gonghui',
  7301. ['StartDropMoveTime']=0,
  7302. ['StartDropDlgId']=0,
  7303. ['EndDropDlgId']=0,
  7304. ['ClickDlgId']=69,
  7305. ['TriggerDlgId']=69,
  7306. ['CanSkip']=true,
  7307. ['ForceGuideId']=0,
  7308. },
  7309. [1003035]={
  7310. ['Id']=1003035,
  7311. ['Type']=1,
  7312. ['Content']={3},
  7313. ['ArtType']=1,
  7314. ['ArtRes']='UIFunOpen/ic_open_kphc',
  7315. ['StartDropMoveTime']=0,
  7316. ['StartDropDlgId']=0,
  7317. ['EndDropDlgId']=0,
  7318. ['ClickDlgId']=70,
  7319. ['TriggerDlgId']=70,
  7320. ['CanSkip']=true,
  7321. ['ForceGuideId']=0,
  7322. },
  7323. [1003040]={
  7324. ['Id']=1003040,
  7325. ['Type']=5,
  7326. ['ArtType']=2,
  7327. ['ArtRes']='UIBigMap/PointRoleItemSod',
  7328. ['StartDropMoveTime']=0,
  7329. ['StartDropDlgId']=0,
  7330. ['EndDropDlgId']=63,
  7331. ['ClickDlgId']=72,
  7332. ['TriggerDlgId']=72,
  7333. ['CanSkip']=true,
  7334. ['ForceGuideId']=0,
  7335. },
  7336. [1004005]={
  7337. ['Id']=1004005,
  7338. ['Type']=3,
  7339. ['Content']={113,'Congratulation','skillbook3'},
  7340. ['ArtType']=1,
  7341. ['ArtRes']='Common/ic_res_sbook_purple',
  7342. ['StartDropPos']={-420,12},
  7343. ['StartDropMoveTime']=1.0,
  7344. ['StartDropDlgId']=78,
  7345. ['EndDropDlgId']=0,
  7346. ['ClickDlgId']=80,
  7347. ['TriggerDlgId']=80,
  7348. ['CanSkip']=true,
  7349. ['ForceGuideId']=0,
  7350. },
  7351. [1004010]={
  7352. ['Id']=1004010,
  7353. ['Type']=1,
  7354. ['ArtType']=2,
  7355. ['ArtRes']='UIBigMap/PointRoleItemWlns',
  7356. ['StartDropMoveTime']=0,
  7357. ['StartDropDlgId']=0,
  7358. ['EndDropDlgId']=0,
  7359. ['ClickDlgId']=81,
  7360. ['TriggerDlgId']=81,
  7361. ['CanSkip']=true,
  7362. ['ForceGuideId']=0,
  7363. },
  7364. [1004015]={
  7365. ['Id']=1004015,
  7366. ['Type']=3,
  7367. ['Content']={110,'Congratulation','Item110'},
  7368. ['ArtType']=1,
  7369. ['ArtRes']='Items/110_KnotOfFate',
  7370. ['StartDropMoveTime']=0,
  7371. ['StartDropDlgId']=0,
  7372. ['EndDropDlgId']=0,
  7373. ['ClickDlgId']=82,
  7374. ['TriggerDlgId']=82,
  7375. ['CanSkip']=true,
  7376. ['ForceGuideId']=0,
  7377. },
  7378. [1004020]={
  7379. ['Id']=1004020,
  7380. ['Type']=1,
  7381. ['ArtType']=2,
  7382. ['ArtRes']='UIBigMap/PointRoleItemGqns',
  7383. ['StartDropMoveTime']=0,
  7384. ['StartDropDlgId']=0,
  7385. ['EndDropDlgId']=0,
  7386. ['ClickDlgId']=84,
  7387. ['TriggerDlgId']=84,
  7388. ['CanSkip']=true,
  7389. ['ForceGuideId']=0,
  7390. },
  7391. [1004025]={
  7392. ['Id']=1004025,
  7393. ['Type']=3,
  7394. ['Content']={{12840,5},'Congratulation','Item12840'},
  7395. ['ArtType']=1,
  7396. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  7397. ['StartDropMoveTime']=0,
  7398. ['StartDropDlgId']=0,
  7399. ['EndDropDlgId']=0,
  7400. ['ClickDlgId']=85,
  7401. ['TriggerDlgId']=85,
  7402. ['CanSkip']=true,
  7403. ['ForceGuideId']=0,
  7404. },
  7405. [1004030]={
  7406. ['Id']=1004030,
  7407. ['Type']=1,
  7408. ['Content']={8},
  7409. ['ArtType']=1,
  7410. ['ArtRes']='UIFunOpen/ic_open_yld',
  7411. ['StartDropMoveTime']=0,
  7412. ['StartDropDlgId']=0,
  7413. ['EndDropDlgId']=0,
  7414. ['ClickDlgId']=86,
  7415. ['TriggerDlgId']=86,
  7416. ['CanSkip']=true,
  7417. ['ForceGuideId']=0,
  7418. },
  7419. [1004035]={
  7420. ['Id']=1004035,
  7421. ['Type']=3,
  7422. ['Content']={113,'Congratulation','skillbook3'},
  7423. ['ArtType']=1,
  7424. ['ArtRes']='Common/ic_res_sbook_purple',
  7425. ['StartDropPos']={510,-196},
  7426. ['StartDropMoveTime']=1.0,
  7427. ['StartDropDlgId']=0,
  7428. ['EndDropDlgId']=0,
  7429. ['ClickDlgId']=87,
  7430. ['TriggerDlgId']=87,
  7431. ['CanSkip']=true,
  7432. ['ForceGuideId']=0,
  7433. },
  7434. [1004040]={
  7435. ['Id']=1004040,
  7436. ['Type']=3,
  7437. ['Content']={5004,'Congratulation','Item5004'},
  7438. ['ArtType']=1,
  7439. ['ArtRes']='Equipments/clothes_4',
  7440. ['StartDropMoveTime']=0,
  7441. ['StartDropDlgId']=0,
  7442. ['EndDropDlgId']=0,
  7443. ['ClickDlgId']=88,
  7444. ['TriggerDlgId']=88,
  7445. ['CanSkip']=true,
  7446. ['ForceGuideId']=0,
  7447. },
  7448. [1004045]={
  7449. ['Id']=1004045,
  7450. ['Type']=5,
  7451. ['ArtType']=2,
  7452. ['ArtRes']='UIBigMap/PointRoleItemOrc2',
  7453. ['StartDropMoveTime']=0,
  7454. ['StartDropDlgId']=0,
  7455. ['EndDropDlgId']=79,
  7456. ['ClickDlgId']=89,
  7457. ['TriggerDlgId']=89,
  7458. ['CanSkip']=true,
  7459. ['ForceGuideId']=0,
  7460. },
  7461. [1005005]={
  7462. ['Id']=1005005,
  7463. ['Type']=1,
  7464. ['Content']={4},
  7465. ['ArtType']=1,
  7466. ['ArtRes']='UIFunOpen/ic_open_kpcz',
  7467. ['StartDropPos']={440,360},
  7468. ['StartDropMoveTime']=1.0,
  7469. ['StartDropDlgId']=94,
  7470. ['EndDropDlgId']=0,
  7471. ['ClickDlgId']=96,
  7472. ['TriggerDlgId']=96,
  7473. ['CanSkip']=true,
  7474. ['ForceGuideId']=0,
  7475. },
  7476. [1005010]={
  7477. ['Id']=1005010,
  7478. ['Type']=3,
  7479. ['Content']={113,'Congratulation','skillbook3'},
  7480. ['ArtType']=1,
  7481. ['ArtRes']='Common/ic_res_sbook_purple',
  7482. ['StartDropMoveTime']=0,
  7483. ['StartDropDlgId']=0,
  7484. ['EndDropDlgId']=0,
  7485. ['ClickDlgId']=102,
  7486. ['TriggerDlgId']=102,
  7487. ['CanSkip']=true,
  7488. ['ForceGuideId']=0,
  7489. },
  7490. [1005015]={
  7491. ['Id']=1005015,
  7492. ['Type']=3,
  7493. ['Content']={7004,'Congratulation','Item7004'},
  7494. ['ArtType']=1,
  7495. ['ArtRes']='Equipments/shoes_4',
  7496. ['StartDropPos']={-282,220},
  7497. ['StartDropMoveTime']=1.0,
  7498. ['StartDropDlgId']=0,
  7499. ['EndDropDlgId']=0,
  7500. ['ClickDlgId']=101,
  7501. ['TriggerDlgId']=101,
  7502. ['CanSkip']=true,
  7503. ['ForceGuideId']=0,
  7504. },
  7505. [1005020]={
  7506. ['Id']=1005020,
  7507. ['Type']=3,
  7508. ['Content']={110,'Congratulation','Item110'},
  7509. ['ArtType']=1,
  7510. ['ArtRes']='Items/110_KnotOfFate',
  7511. ['StartDropMoveTime']=0,
  7512. ['StartDropDlgId']=0,
  7513. ['EndDropDlgId']=0,
  7514. ['ClickDlgId']=97,
  7515. ['TriggerDlgId']=97,
  7516. ['CanSkip']=true,
  7517. ['ForceGuideId']=0,
  7518. },
  7519. [1005025]={
  7520. ['Id']=1005025,
  7521. ['Type']=1,
  7522. ['Content']={16},
  7523. ['ArtType']=1,
  7524. ['ArtRes']='UIFunOpen/ic_open_tupo',
  7525. ['StartDropMoveTime']=0,
  7526. ['StartDropDlgId']=0,
  7527. ['EndDropDlgId']=0,
  7528. ['ClickDlgId']=103,
  7529. ['TriggerDlgId']=103,
  7530. ['CanSkip']=true,
  7531. ['ForceGuideId']=0,
  7532. },
  7533. [1005030]={
  7534. ['Id']=1005030,
  7535. ['Type']=1,
  7536. ['ArtType']=2,
  7537. ['ArtRes']='UIBigMap/PointRoleItemWlns',
  7538. ['StartDropPos']={240,55},
  7539. ['StartDropMoveTime']=1.0,
  7540. ['StartDropDlgId']=0,
  7541. ['EndDropDlgId']=0,
  7542. ['ClickDlgId']=104,
  7543. ['TriggerDlgId']=104,
  7544. ['CanSkip']=true,
  7545. ['ForceGuideId']=0,
  7546. },
  7547. [1005035]={
  7548. ['Id']=1005035,
  7549. ['Type']=3,
  7550. ['Content']={{12840,5},'Congratulation','Item12840'},
  7551. ['ArtType']=1,
  7552. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  7553. ['StartDropMoveTime']=0,
  7554. ['StartDropDlgId']=0,
  7555. ['EndDropDlgId']=0,
  7556. ['ClickDlgId']=105,
  7557. ['TriggerDlgId']=105,
  7558. ['CanSkip']=true,
  7559. ['ForceGuideId']=0,
  7560. },
  7561. [1005040]={
  7562. ['Id']=1005040,
  7563. ['Type']=1,
  7564. ['ArtType']=2,
  7565. ['ArtRes']='UIBigMap/PointRoleItemGqns',
  7566. ['StartDropMoveTime']=0,
  7567. ['StartDropDlgId']=0,
  7568. ['EndDropDlgId']=0,
  7569. ['ClickDlgId']=106,
  7570. ['TriggerDlgId']=106,
  7571. ['CanSkip']=true,
  7572. ['ForceGuideId']=0,
  7573. },
  7574. [1005045]={
  7575. ['Id']=1005045,
  7576. ['Type']=3,
  7577. ['Content']={113,'Congratulation','skillbook3'},
  7578. ['ArtType']=1,
  7579. ['ArtRes']='Common/ic_res_sbook_purple',
  7580. ['StartDropMoveTime']=0,
  7581. ['StartDropDlgId']=0,
  7582. ['EndDropDlgId']=0,
  7583. ['ClickDlgId']=107,
  7584. ['TriggerDlgId']=107,
  7585. ['CanSkip']=true,
  7586. ['ForceGuideId']=0,
  7587. },
  7588. [1005050]={
  7589. ['Id']=1005050,
  7590. ['Type']=5,
  7591. ['ArtType']=2,
  7592. ['ArtRes']='UIBigMap/PointRoleItemYh',
  7593. ['StartDropPos']={-380,117},
  7594. ['StartDropMoveTime']=1.0,
  7595. ['StartDropDlgId']=0,
  7596. ['EndDropDlgId']=95,
  7597. ['ClickDlgId']=108,
  7598. ['TriggerDlgId']=108,
  7599. ['CanSkip']=true,
  7600. ['ForceGuideId']=0,
  7601. },
  7602. [1006005]={
  7603. ['Id']=1006005,
  7604. ['Type']=3,
  7605. ['Content']={6004,'Congratulation','Item6004'},
  7606. ['ArtType']=1,
  7607. ['ArtRes']='Equipments/cap_4',
  7608. ['StartDropPos']={542,-264},
  7609. ['StartDropMoveTime']=1.0,
  7610. ['StartDropDlgId']=183,
  7611. ['EndDropDlgId']=0,
  7612. ['ClickDlgId']=188,
  7613. ['TriggerDlgId']=188,
  7614. ['CanSkip']=true,
  7615. ['ForceGuideId']=0,
  7616. },
  7617. [1006010]={
  7618. ['Id']=1006010,
  7619. ['Type']=3,
  7620. ['Content']={110,'Congratulation','Item110'},
  7621. ['ArtType']=1,
  7622. ['ArtRes']='Items/110_KnotOfFate',
  7623. ['StartDropMoveTime']=0,
  7624. ['StartDropDlgId']=0,
  7625. ['EndDropDlgId']=0,
  7626. ['ClickDlgId']=189,
  7627. ['TriggerDlgId']=189,
  7628. ['CanSkip']=true,
  7629. ['ForceGuideId']=0,
  7630. },
  7631. [1006015]={
  7632. ['Id']=1006015,
  7633. ['Type']=3,
  7634. ['Content']={113,'Congratulation','skillbook3'},
  7635. ['ArtType']=1,
  7636. ['ArtRes']='Common/ic_res_sbook_purple',
  7637. ['StartDropMoveTime']=0,
  7638. ['StartDropDlgId']=0,
  7639. ['EndDropDlgId']=0,
  7640. ['ClickDlgId']=190,
  7641. ['TriggerDlgId']=190,
  7642. ['CanSkip']=true,
  7643. ['ForceGuideId']=0,
  7644. },
  7645. [1006020]={
  7646. ['Id']=1006020,
  7647. ['Type']=1,
  7648. ['Content']={15},
  7649. ['ArtType']=1,
  7650. ['ArtRes']='UIFunOpen/ic_open_pet',
  7651. ['StartDropPos']={-361,404},
  7652. ['StartDropMoveTime']=1.0,
  7653. ['StartDropDlgId']=0,
  7654. ['EndDropDlgId']=0,
  7655. ['ClickDlgId']=194,
  7656. ['TriggerDlgId']=194,
  7657. ['CanSkip']=true,
  7658. ['ForceGuideId']=0,
  7659. },
  7660. [1006025]={
  7661. ['Id']=1006025,
  7662. ['Type']=1,
  7663. ['Content']={49},
  7664. ['ArtType']=1,
  7665. ['ArtRes']='UIFunOpen/ic_open_expedition',
  7666. ['StartDropMoveTime']=0,
  7667. ['StartDropDlgId']=0,
  7668. ['EndDropDlgId']=0,
  7669. ['ClickDlgId']=195,
  7670. ['TriggerDlgId']=195,
  7671. ['CanSkip']=true,
  7672. ['ForceGuideId']=0,
  7673. },
  7674. [1006030]={
  7675. ['Id']=1006030,
  7676. ['Type']=3,
  7677. ['Content']={{12840,5},'Congratulation','Item12840'},
  7678. ['ArtType']=1,
  7679. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  7680. ['StartDropMoveTime']=0,
  7681. ['StartDropDlgId']=0,
  7682. ['EndDropDlgId']=0,
  7683. ['ClickDlgId']=196,
  7684. ['TriggerDlgId']=196,
  7685. ['CanSkip']=true,
  7686. ['ForceGuideId']=0,
  7687. },
  7688. [1006035]={
  7689. ['Id']=1006035,
  7690. ['Type']=3,
  7691. ['Content']={{19,5000},'Congratulation','Item19'},
  7692. ['ArtType']=1,
  7693. ['ArtRes']='Common/ic_res_petexppt',
  7694. ['StartDropMoveTime']=0,
  7695. ['StartDropDlgId']=0,
  7696. ['EndDropDlgId']=0,
  7697. ['ClickDlgId']=197,
  7698. ['TriggerDlgId']=197,
  7699. ['CanSkip']=true,
  7700. ['ForceGuideId']=0,
  7701. },
  7702. [1006040]={
  7703. ['Id']=1006040,
  7704. ['Type']=1,
  7705. ['Content']={30},
  7706. ['ArtType']=1,
  7707. ['ArtRes']='UIFunOpen/ic_open_relation',
  7708. ['StartDropMoveTime']=0,
  7709. ['StartDropDlgId']=0,
  7710. ['EndDropDlgId']=0,
  7711. ['ClickDlgId']=198,
  7712. ['TriggerDlgId']=198,
  7713. ['CanSkip']=true,
  7714. ['ForceGuideId']=0,
  7715. },
  7716. [1006045]={
  7717. ['Id']=1006045,
  7718. ['Type']=3,
  7719. ['Content']={113,'Congratulation','skillbook3'},
  7720. ['ArtType']=1,
  7721. ['ArtRes']='Common/ic_res_sbook_purple',
  7722. ['StartDropMoveTime']=0,
  7723. ['StartDropDlgId']=0,
  7724. ['EndDropDlgId']=0,
  7725. ['ClickDlgId']=200,
  7726. ['TriggerDlgId']=200,
  7727. ['CanSkip']=true,
  7728. ['ForceGuideId']=0,
  7729. },
  7730. [1006050]={
  7731. ['Id']=1006050,
  7732. ['Type']=5,
  7733. ['ArtType']=2,
  7734. ['ArtRes']='UIBigMap/PointRoleItemEsls',
  7735. ['StartDropMoveTime']=0,
  7736. ['StartDropDlgId']=0,
  7737. ['EndDropDlgId']=184,
  7738. ['ClickDlgId']=201,
  7739. ['TriggerDlgId']=201,
  7740. ['CanSkip']=true,
  7741. ['ForceGuideId']=0,
  7742. },
  7743. [1007005]={
  7744. ['Id']=1007005,
  7745. ['Type']=3,
  7746. ['Content']={115,'Congratulation','Item115'},
  7747. ['ArtType']=1,
  7748. ['ArtRes']='Common/ic_moon_key',
  7749. ['StartDropPos']={-223,74},
  7750. ['StartDropMoveTime']=1.0,
  7751. ['StartDropDlgId']=238,
  7752. ['EndDropDlgId']=0,
  7753. ['ClickDlgId']=240,
  7754. ['TriggerDlgId']=240,
  7755. ['CanSkip']=true,
  7756. ['ForceGuideId']=0,
  7757. },
  7758. [1007010]={
  7759. ['Id']=1007010,
  7760. ['Type']=3,
  7761. ['Content']={113,'Congratulation','skillbook3'},
  7762. ['ArtType']=1,
  7763. ['ArtRes']='Common/ic_res_sbook_purple',
  7764. ['StartDropMoveTime']=0,
  7765. ['StartDropDlgId']=0,
  7766. ['EndDropDlgId']=0,
  7767. ['ClickDlgId']=241,
  7768. ['TriggerDlgId']=241,
  7769. ['CanSkip']=true,
  7770. ['ForceGuideId']=0,
  7771. },
  7772. [1007015]={
  7773. ['Id']=1007015,
  7774. ['Type']=3,
  7775. ['Content']={110,'Congratulation','Item110'},
  7776. ['ArtType']=1,
  7777. ['ArtRes']='Items/110_KnotOfFate',
  7778. ['StartDropMoveTime']=0,
  7779. ['StartDropDlgId']=0,
  7780. ['EndDropDlgId']=0,
  7781. ['ClickDlgId']=245,
  7782. ['TriggerDlgId']=245,
  7783. ['CanSkip']=true,
  7784. ['ForceGuideId']=0,
  7785. },
  7786. [1007020]={
  7787. ['Id']=1007020,
  7788. ['Type']=3,
  7789. ['Content']={{11,30000},'Congratulation','Item11'},
  7790. ['ArtType']=1,
  7791. ['ArtRes']='Common/ic_res_skillexp',
  7792. ['StartDropMoveTime']=0,
  7793. ['StartDropDlgId']=0,
  7794. ['EndDropDlgId']=0,
  7795. ['ClickDlgId']=246,
  7796. ['TriggerDlgId']=246,
  7797. ['CanSkip']=true,
  7798. ['ForceGuideId']=0,
  7799. },
  7800. [1007025]={
  7801. ['Id']=1007025,
  7802. ['Type']=1,
  7803. ['Content']={43},
  7804. ['ArtType']=1,
  7805. ['ArtRes']='UIFunOpen/ic_open_petslot2',
  7806. ['StartDropMoveTime']=0,
  7807. ['StartDropDlgId']=0,
  7808. ['EndDropDlgId']=0,
  7809. ['ClickDlgId']=247,
  7810. ['TriggerDlgId']=247,
  7811. ['CanSkip']=true,
  7812. ['ForceGuideId']=0,
  7813. },
  7814. [1007030]={
  7815. ['Id']=1007030,
  7816. ['Type']=1,
  7817. ['ArtType']=2,
  7818. ['ArtRes']='UIBigMap/PointRoleItemDts',
  7819. ['StartDropMoveTime']=0,
  7820. ['StartDropDlgId']=0,
  7821. ['EndDropDlgId']=0,
  7822. ['ClickDlgId']=248,
  7823. ['TriggerDlgId']=248,
  7824. ['CanSkip']=true,
  7825. ['ForceGuideId']=0,
  7826. },
  7827. [1007035]={
  7828. ['Id']=1007035,
  7829. ['Type']=3,
  7830. ['Content']={522,'Congratulation','Item522'},
  7831. ['ArtType']=1,
  7832. ['ArtRes']='Common/ic_res_petegg_purple',
  7833. ['StartDropMoveTime']=0,
  7834. ['StartDropDlgId']=0,
  7835. ['EndDropDlgId']=0,
  7836. ['ClickDlgId']=249,
  7837. ['TriggerDlgId']=249,
  7838. ['CanSkip']=true,
  7839. ['ForceGuideId']=0,
  7840. },
  7841. [1007040]={
  7842. ['Id']=1007040,
  7843. ['Type']=3,
  7844. ['Content']={264,'Congratulation','Item264'},
  7845. ['ArtType']=1,
  7846. ['ArtRes']='Common/ic_res_contract',
  7847. ['StartDropPos']={415,171},
  7848. ['StartDropMoveTime']=1.0,
  7849. ['StartDropDlgId']=0,
  7850. ['EndDropDlgId']=0,
  7851. ['ClickDlgId']=250,
  7852. ['TriggerDlgId']=250,
  7853. ['CanSkip']=true,
  7854. ['ForceGuideId']=0,
  7855. },
  7856. [1007045]={
  7857. ['Id']=1007045,
  7858. ['Type']=3,
  7859. ['Content']={115,'Congratulation','Item115'},
  7860. ['ArtType']=1,
  7861. ['ArtRes']='Common/ic_moon_key',
  7862. ['StartDropMoveTime']=0,
  7863. ['StartDropDlgId']=0,
  7864. ['EndDropDlgId']=0,
  7865. ['ClickDlgId']=251,
  7866. ['TriggerDlgId']=251,
  7867. ['CanSkip']=true,
  7868. ['ForceGuideId']=0,
  7869. },
  7870. [1007050]={
  7871. ['Id']=1007050,
  7872. ['Type']=5,
  7873. ['ArtType']=2,
  7874. ['ArtRes']='UIBigMap/PointRoleItemTiger',
  7875. ['StartDropMoveTime']=0,
  7876. ['StartDropDlgId']=0,
  7877. ['EndDropDlgId']=239,
  7878. ['ClickDlgId']=252,
  7879. ['TriggerDlgId']=252,
  7880. ['CanSkip']=true,
  7881. ['ForceGuideId']=0,
  7882. },
  7883. [1008005]={
  7884. ['Id']=1008005,
  7885. ['Type']=3,
  7886. ['Content']={110,'Congratulation','Item110'},
  7887. ['ArtType']=1,
  7888. ['ArtRes']='Items/110_KnotOfFate',
  7889. ['StartDropPos']={476,129},
  7890. ['StartDropMoveTime']=1.0,
  7891. ['StartDropDlgId']=206,
  7892. ['EndDropDlgId']=0,
  7893. ['ClickDlgId']=208,
  7894. ['TriggerDlgId']=208,
  7895. ['CanSkip']=true,
  7896. ['ForceGuideId']=0,
  7897. },
  7898. [1008010]={
  7899. ['Id']=1008010,
  7900. ['Type']=3,
  7901. ['Content']={9005,'Congratulation','Item9005'},
  7902. ['ArtType']=1,
  7903. ['ArtRes']='Equipments/ornaments_5',
  7904. ['StartDropMoveTime']=0,
  7905. ['StartDropDlgId']=0,
  7906. ['EndDropDlgId']=0,
  7907. ['ClickDlgId']=209,
  7908. ['TriggerDlgId']=209,
  7909. ['CanSkip']=true,
  7910. ['ForceGuideId']=0,
  7911. },
  7912. [1008015]={
  7913. ['Id']=1008015,
  7914. ['Type']=1,
  7915. ['Content']={69},
  7916. ['ArtType']=1,
  7917. ['ArtRes']='UIFunOpen/ic_open_fashionwash',
  7918. ['StartDropMoveTime']=0,
  7919. ['StartDropDlgId']=0,
  7920. ['EndDropDlgId']=0,
  7921. ['ClickDlgId']=210,
  7922. ['TriggerDlgId']=210,
  7923. ['CanSkip']=true,
  7924. ['ForceGuideId']=0,
  7925. },
  7926. [1008020]={
  7927. ['Id']=1008020,
  7928. ['Type']=3,
  7929. ['Content']={{12840,5},'Congratulation','Item12840'},
  7930. ['ArtType']=1,
  7931. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  7932. ['StartDropMoveTime']=0,
  7933. ['StartDropDlgId']=0,
  7934. ['EndDropDlgId']=0,
  7935. ['ClickDlgId']=211,
  7936. ['TriggerDlgId']=211,
  7937. ['CanSkip']=true,
  7938. ['ForceGuideId']=0,
  7939. },
  7940. [1008025]={
  7941. ['Id']=1008025,
  7942. ['Type']=3,
  7943. ['Content']={115,'Congratulation','Item115'},
  7944. ['ArtType']=1,
  7945. ['ArtRes']='Common/ic_moon_key',
  7946. ['StartDropMoveTime']=0,
  7947. ['StartDropDlgId']=0,
  7948. ['EndDropDlgId']=0,
  7949. ['ClickDlgId']=212,
  7950. ['TriggerDlgId']=212,
  7951. ['CanSkip']=true,
  7952. ['ForceGuideId']=0,
  7953. },
  7954. [1008030]={
  7955. ['Id']=1008030,
  7956. ['Type']=3,
  7957. ['Content']={{19,9000},'Congratulation','Item19'},
  7958. ['ArtType']=1,
  7959. ['ArtRes']='Common/ic_res_petexppt',
  7960. ['StartDropPos']={-357,-130},
  7961. ['StartDropMoveTime']=1.0,
  7962. ['StartDropDlgId']=0,
  7963. ['EndDropDlgId']=0,
  7964. ['ClickDlgId']=213,
  7965. ['TriggerDlgId']=213,
  7966. ['CanSkip']=true,
  7967. ['ForceGuideId']=0,
  7968. },
  7969. [1008035]={
  7970. ['Id']=1008035,
  7971. ['Type']=3,
  7972. ['Content']={5006,'Congratulation','Item5006'},
  7973. ['ArtType']=1,
  7974. ['ArtRes']='Equipments/clothes_6',
  7975. ['StartDropMoveTime']=0,
  7976. ['StartDropDlgId']=0,
  7977. ['EndDropDlgId']=0,
  7978. ['ClickDlgId']=214,
  7979. ['TriggerDlgId']=214,
  7980. ['CanSkip']=true,
  7981. ['ForceGuideId']=0,
  7982. },
  7983. [1008040]={
  7984. ['Id']=1008040,
  7985. ['Type']=3,
  7986. ['Content']={113,'Congratulation','skillbook3'},
  7987. ['ArtType']=1,
  7988. ['ArtRes']='Common/ic_res_sbook_purple',
  7989. ['StartDropMoveTime']=0,
  7990. ['StartDropDlgId']=0,
  7991. ['EndDropDlgId']=0,
  7992. ['ClickDlgId']=215,
  7993. ['TriggerDlgId']=215,
  7994. ['CanSkip']=true,
  7995. ['ForceGuideId']=0,
  7996. },
  7997. [1008045]={
  7998. ['Id']=1008045,
  7999. ['Type']=3,
  8000. ['Content']={{514,3},'Congratulation','Item514'},
  8001. ['ArtType']=1,
  8002. ['ArtRes']='Common/ic_res_cardalbum_random',
  8003. ['StartDropMoveTime']=0,
  8004. ['StartDropDlgId']=0,
  8005. ['EndDropDlgId']=0,
  8006. ['ClickDlgId']=216,
  8007. ['TriggerDlgId']=216,
  8008. ['CanSkip']=true,
  8009. ['ForceGuideId']=0,
  8010. },
  8011. [1008050]={
  8012. ['Id']=1008050,
  8013. ['Type']=5,
  8014. ['ArtType']=2,
  8015. ['ArtRes']='UIBigMap/PointRoleItemMoonCat',
  8016. ['StartDropMoveTime']=0,
  8017. ['StartDropDlgId']=0,
  8018. ['EndDropDlgId']=207,
  8019. ['ClickDlgId']=217,
  8020. ['TriggerDlgId']=217,
  8021. ['CanSkip']=true,
  8022. ['ForceGuideId']=0,
  8023. },
  8024. [1009005]={
  8025. ['Id']=1009005,
  8026. ['Type']=3,
  8027. ['Content']={7006,'Congratulation','Item7006'},
  8028. ['ArtType']=1,
  8029. ['ArtRes']='Equipments/shoes_6',
  8030. ['StartDropPos']={647,430},
  8031. ['StartDropMoveTime']=1.0,
  8032. ['StartDropDlgId']=222,
  8033. ['EndDropDlgId']=0,
  8034. ['ClickDlgId']=224,
  8035. ['TriggerDlgId']=224,
  8036. ['CanSkip']=true,
  8037. ['ForceGuideId']=0,
  8038. },
  8039. [1009010]={
  8040. ['Id']=1009010,
  8041. ['Type']=1,
  8042. ['Content']={68},
  8043. ['ArtType']=1,
  8044. ['ArtRes']='UIFunOpen/ic_open_fashionupgrade',
  8045. ['StartDropMoveTime']=0,
  8046. ['StartDropDlgId']=0,
  8047. ['EndDropDlgId']=0,
  8048. ['ClickDlgId']=225,
  8049. ['TriggerDlgId']=225,
  8050. ['CanSkip']=true,
  8051. ['ForceGuideId']=0,
  8052. },
  8053. [1009015]={
  8054. ['Id']=1009015,
  8055. ['Type']=3,
  8056. ['Content']={{512,5},'Congratulation','Item512'},
  8057. ['ArtType']=1,
  8058. ['ArtRes']='Common/ic_res_cardalbum_mini',
  8059. ['StartDropMoveTime']=0,
  8060. ['StartDropDlgId']=0,
  8061. ['EndDropDlgId']=0,
  8062. ['ClickDlgId']=226,
  8063. ['TriggerDlgId']=226,
  8064. ['CanSkip']=true,
  8065. ['ForceGuideId']=0,
  8066. },
  8067. [1009020]={
  8068. ['Id']=1009020,
  8069. ['Type']=3,
  8070. ['Content']={{12840,5},'Congratulation','Item12840'},
  8071. ['ArtType']=1,
  8072. ['ArtRes']='Common/ic_res_cardpiece_mvp',
  8073. ['StartDropPos']={-4,58},
  8074. ['StartDropMoveTime']=1.0,
  8075. ['StartDropDlgId']=0,
  8076. ['EndDropDlgId']=0,
  8077. ['ClickDlgId']=227,
  8078. ['TriggerDlgId']=227,
  8079. ['CanSkip']=true,
  8080. ['ForceGuideId']=0,
  8081. },
  8082. [1009025]={
  8083. ['Id']=1009025,
  8084. ['Type']=1,
  8085. ['Content']={44},
  8086. ['ArtType']=1,
  8087. ['ArtRes']='UIFunOpen/ic_open_petslot3',
  8088. ['StartDropMoveTime']=0,
  8089. ['StartDropDlgId']=0,
  8090. ['EndDropDlgId']=0,
  8091. ['ClickDlgId']=228,
  8092. ['TriggerDlgId']=228,
  8093. ['CanSkip']=true,
  8094. ['ForceGuideId']=0,
  8095. },
  8096. [1009030]={
  8097. ['Id']=1009030,
  8098. ['Type']=3,
  8099. ['Content']={{19,9000},'Congratulation','Item19'},
  8100. ['ArtType']=1,
  8101. ['ArtRes']='Common/ic_res_petexppt',
  8102. ['StartDropMoveTime']=0,
  8103. ['StartDropDlgId']=0,
  8104. ['EndDropDlgId']=0,
  8105. ['ClickDlgId']=229,
  8106. ['TriggerDlgId']=229,
  8107. ['CanSkip']=true,
  8108. ['ForceGuideId']=0,
  8109. },
  8110. [1009035]={
  8111. ['Id']=1009035,
  8112. ['Type']=3,
  8113. ['Content']={8006,'Congratulation','Item8006'},
  8114. ['ArtType']=1,
  8115. ['ArtRes']='Equipments/shawl_6',
  8116. ['StartDropPos']={-419,-197},
  8117. ['StartDropMoveTime']=1.0,
  8118. ['StartDropDlgId']=0,
  8119. ['EndDropDlgId']=0,
  8120. ['ClickDlgId']=230,
  8121. ['TriggerDlgId']=230,
  8122. ['CanSkip']=true,
  8123. ['ForceGuideId']=0,
  8124. },
  8125. [1009040]={
  8126. ['Id']=1009040,
  8127. ['Type']=3,
  8128. ['Content']={264,'Congratulation','Item264'},
  8129. ['ArtType']=1,
  8130. ['ArtRes']='Common/ic_res_contract',
  8131. ['StartDropMoveTime']=0,
  8132. ['StartDropDlgId']=0,
  8133. ['EndDropDlgId']=0,
  8134. ['ClickDlgId']=231,
  8135. ['TriggerDlgId']=231,
  8136. ['CanSkip']=true,
  8137. ['ForceGuideId']=0,
  8138. },
  8139. [1009045]={
  8140. ['Id']=1009045,
  8141. ['Type']=3,
  8142. ['Content']={522,'Congratulation','Item522'},
  8143. ['ArtType']=1,
  8144. ['ArtRes']='Common/ic_res_petegg_purple',
  8145. ['StartDropMoveTime']=0,
  8146. ['StartDropDlgId']=0,
  8147. ['EndDropDlgId']=0,
  8148. ['ClickDlgId']=232,
  8149. ['TriggerDlgId']=232,
  8150. ['CanSkip']=true,
  8151. ['ForceGuideId']=0,
  8152. },
  8153. [1009050]={
  8154. ['Id']=1009050,
  8155. ['Type']=5,
  8156. ['ArtType']=2,
  8157. ['ArtRes']='UIBigMap/PointRoleItemDark',
  8158. ['StartDropMoveTime']=0,
  8159. ['StartDropDlgId']=0,
  8160. ['EndDropDlgId']=223,
  8161. ['ClickDlgId']=233,
  8162. ['TriggerDlgId']=233,
  8163. ['CanSkip']=true,
  8164. ['ForceGuideId']=0,
  8165. },
  8166. [2001003]={
  8167. ['Id']=2001003,
  8168. ['Type']=1,
  8169. ['Content']={21},
  8170. ['ArtType']=1,
  8171. ['ArtRes']='UIFunOpen/ic_open_lanwei1',
  8172. ['StartDropMoveTime']=0,
  8173. ['StartDropDlgId']=0,
  8174. ['EndDropDlgId']=0,
  8175. ['ClickDlgId']=171,
  8176. ['TriggerDlgId']=145,
  8177. ['CanSkip']=true,
  8178. ['ForceGuideId']=0,
  8179. },
  8180. [2001004]={
  8181. ['Id']=2001004,
  8182. ['Type']=3,
  8183. ['Content']={{15059,1},'Congratulation','Item15059'},
  8184. ['ArtType']=1,
  8185. ['ArtRes']='Items/FashionBox3',
  8186. ['StartDropMoveTime']=0,
  8187. ['StartDropDlgId']=0,
  8188. ['EndDropDlgId']=0,
  8189. ['ClickDlgId']=1750,
  8190. ['TriggerDlgId']=1750,
  8191. ['CanSkip']=true,
  8192. ['ForceGuideId']=0,
  8193. },
  8194. [2001008]={
  8195. ['Id']=2001008,
  8196. ['Type']=2,
  8197. ['Content']={'unlock','storysectionbaoxiang'},
  8198. ['ArtType']=1,
  8199. ['ArtRes']='UIFunOpen/ic_open_baoxiang',
  8200. ['StartDropMoveTime']=0,
  8201. ['StartDropDlgId']=0,
  8202. ['EndDropDlgId']=0,
  8203. ['ClickDlgId']=173,
  8204. ['TriggerDlgId']=147,
  8205. ['CanSkip']=true,
  8206. ['ForceGuideId']=0,
  8207. },
  8208. [2001009]={
  8209. ['Id']=2001009,
  8210. ['Type']=3,
  8211. ['Content']={{15059,1},'Congratulation','Item15059'},
  8212. ['ArtType']=1,
  8213. ['ArtRes']='Items/FashionBox3',
  8214. ['StartDropMoveTime']=0,
  8215. ['StartDropDlgId']=0,
  8216. ['EndDropDlgId']=0,
  8217. ['ClickDlgId']=1750,
  8218. ['TriggerDlgId']=1750,
  8219. ['CanSkip']=true,
  8220. ['ForceGuideId']=0,
  8221. },
  8222. [2001012]={
  8223. ['Id']=2001012,
  8224. ['Type']=1,
  8225. ['Content']={19},
  8226. ['ArtType']=1,
  8227. ['ArtRes']='UIFunOpen/ic_open_shuxing',
  8228. ['StartDropMoveTime']=0,
  8229. ['StartDropDlgId']=0,
  8230. ['EndDropDlgId']=0,
  8231. ['ClickDlgId']=175,
  8232. ['TriggerDlgId']=151,
  8233. ['CanSkip']=true,
  8234. ['ForceGuideId']=0,
  8235. },
  8236. [2001017]={
  8237. ['Id']=2001017,
  8238. ['Type']=3,
  8239. ['Content']={{5,2000},'Congratulation','ExpParnter'},
  8240. ['ArtType']=1,
  8241. ['ArtRes']='Common/ic_res_exppt',
  8242. ['StartDropMoveTime']=0,
  8243. ['StartDropDlgId']=0,
  8244. ['EndDropDlgId']=0,
  8245. ['ClickDlgId']=177,
  8246. ['TriggerDlgId']=167,
  8247. ['CanSkip']=true,
  8248. ['ForceGuideId']=0,
  8249. },
  8250. [2001028]={
  8251. ['Id']=2001028,
  8252. ['Type']=1,
  8253. ['Content']={13},
  8254. ['ArtType']=1,
  8255. ['ArtRes']='UIFunOpen/ic_open_yjhc',
  8256. ['StartDropMoveTime']=0,
  8257. ['StartDropDlgId']=0,
  8258. ['EndDropDlgId']=0,
  8259. ['ClickDlgId']=180,
  8260. ['TriggerDlgId']=47,
  8261. ['CanSkip']=true,
  8262. ['ForceGuideId']=0,
  8263. },
  8264. }
  8265. return StorySectionCfg