InventoryEngine.prefab 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!1 &4990384160235336910
  4. GameObject:
  5. m_ObjectHideFlags: 0
  6. m_CorrespondingSourceObject: {fileID: 0}
  7. m_PrefabInstance: {fileID: 0}
  8. m_PrefabAsset: {fileID: 0}
  9. serializedVersion: 6
  10. m_Component:
  11. - component: {fileID: 4990384160235336911}
  12. - component: {fileID: 4990384160235336904}
  13. - component: {fileID: 4990384160235336905}
  14. m_Layer: 0
  15. m_Name: InventoryEngine
  16. m_TagString: Untagged
  17. m_Icon: {fileID: 0}
  18. m_NavMeshLayer: 0
  19. m_StaticEditorFlags: 0
  20. m_IsActive: 1
  21. --- !u!4 &4990384160235336911
  22. Transform:
  23. m_ObjectHideFlags: 0
  24. m_CorrespondingSourceObject: {fileID: 0}
  25. m_PrefabInstance: {fileID: 0}
  26. m_PrefabAsset: {fileID: 0}
  27. m_GameObject: {fileID: 4990384160235336910}
  28. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  29. m_LocalPosition: {x: 0, y: 0, z: 0}
  30. m_LocalScale: {x: 1, y: 1, z: 1}
  31. m_ConstrainProportionsScale: 0
  32. m_Children: []
  33. m_Father: {fileID: 0}
  34. m_RootOrder: 0
  35. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  36. --- !u!114 &4990384160235336904
  37. MonoBehaviour:
  38. m_ObjectHideFlags: 0
  39. m_CorrespondingSourceObject: {fileID: 0}
  40. m_PrefabInstance: {fileID: 0}
  41. m_PrefabAsset: {fileID: 0}
  42. m_GameObject: {fileID: 4990384160235336910}
  43. m_Enabled: 1
  44. m_EditorHideFlags: 0
  45. m_Script: {fileID: 11500000, guid: 5624afb8ae2dcd14eab2668ddb43232c, type: 3}
  46. m_Name:
  47. m_EditorClassIdentifier:
  48. clickSettings:
  49. - key: 3
  50. mouseButton: 1
  51. function: 0
  52. - key: 1
  53. mouseButton: 0
  54. function: 1
  55. - key: 2
  56. mouseButton: 0
  57. function: 3
  58. - key: 0
  59. mouseButton: 0
  60. function: 2
  61. itemTypes:
  62. - name: Consumables
  63. color: {r: 0.025513189, g: 0.4056604, b: 0.23381305, a: 1}
  64. visible: 1
  65. - name: Equipment
  66. color: {r: 0.4056604, g: 0.066107035, b: 0.04082114, a: 1}
  67. visible: 1
  68. - name: Materials
  69. color: {r: 0.06657168, g: 0.2621191, b: 0.4811321, a: 1}
  70. visible: 1
  71. - name: Questing
  72. color: {r: 0.6603774, g: 0.44331938, b: 0.053993076, a: 1}
  73. visible: 1
  74. - name: Skills
  75. color: {r: 0.5943396, g: 0.21926673, b: 0, a: 1}
  76. visible: 0
  77. itemQuality:
  78. - name: Common
  79. color: {r: 0.5188679, g: 0.5188679, b: 0.5188679, a: 1}
  80. visible: 1
  81. - name: Rare
  82. color: {r: 0.08627451, g: 0.48235294, b: 0.40784314, a: 1}
  83. visible: 1
  84. - name: Epic
  85. color: {r: 0.10798619, g: 0.38198256, b: 0.6132076, a: 1}
  86. visible: 1
  87. - name: Legend
  88. color: {r: 0.6886792, g: 0.33558413, b: 0.19924049, a: 1}
  89. visible: 1
  90. itemAttributes:
  91. - key: lvl
  92. name: Level
  93. value:
  94. stringValue: 0
  95. upgradeIncrement: 0
  96. coreStats: 0
  97. visible: 0
  98. visibleInStatsPanel: 0
  99. displayFormat: 0
  100. suffixes:
  101. compareInfo: 0
  102. randomChange: 100
  103. locked: 0
  104. isFixed: 1
  105. minValue: 0
  106. maxValue: 0
  107. fold: 0
  108. - key: atk
  109. name: Attack
  110. value:
  111. stringValue: 0
  112. upgradeIncrement: 2
  113. coreStats: 0
  114. visible: 1
  115. visibleInStatsPanel: 1
  116. displayFormat: 0
  117. suffixes:
  118. compareInfo: 1
  119. randomChange: 100
  120. locked: 0
  121. isFixed: 1
  122. minValue: 0
  123. maxValue: 0
  124. fold: 0
  125. - key: def
  126. name: Defence
  127. value:
  128. stringValue: 0
  129. upgradeIncrement: 2
  130. coreStats: 0
  131. visible: 1
  132. visibleInStatsPanel: 1
  133. displayFormat: 0
  134. suffixes:
  135. compareInfo: 1
  136. randomChange: 100
  137. locked: 0
  138. isFixed: 1
  139. minValue: 0
  140. maxValue: 0
  141. fold: 0
  142. - key: resist
  143. name: Resistance
  144. value:
  145. stringValue: 0
  146. upgradeIncrement: 2
  147. coreStats: 0
  148. visible: 1
  149. visibleInStatsPanel: 1
  150. displayFormat: 0
  151. suffixes:
  152. compareInfo: 1
  153. randomChange: 100
  154. locked: 0
  155. isFixed: 1
  156. minValue: 0
  157. maxValue: 0
  158. fold: 0
  159. - key: hp
  160. name: Health
  161. value:
  162. stringValue: 0
  163. upgradeIncrement: 20
  164. coreStats: 0
  165. visible: 1
  166. visibleInStatsPanel: 1
  167. displayFormat: 0
  168. suffixes:
  169. compareInfo: 1
  170. randomChange: 100
  171. locked: 0
  172. isFixed: 1
  173. minValue: 0
  174. maxValue: 0
  175. fold: 0
  176. - key: sp
  177. name: Stamina
  178. value:
  179. stringValue: 0
  180. upgradeIncrement: 10
  181. coreStats: 0
  182. visible: 1
  183. visibleInStatsPanel: 1
  184. displayFormat: 0
  185. suffixes:
  186. compareInfo: 1
  187. randomChange: 100
  188. locked: 0
  189. isFixed: 1
  190. minValue: 0
  191. maxValue: 0
  192. fold: 0
  193. - key: agi
  194. name: Agility
  195. value:
  196. stringValue: 0
  197. upgradeIncrement: 1
  198. coreStats: 0
  199. visible: 1
  200. visibleInStatsPanel: 1
  201. displayFormat: 0
  202. suffixes:
  203. compareInfo: 1
  204. randomChange: 100
  205. locked: 0
  206. isFixed: 1
  207. minValue: 0
  208. maxValue: 0
  209. fold: 0
  210. - key: crit
  211. name: Critical Chance
  212. value:
  213. stringValue: 0
  214. upgradeIncrement: 3
  215. coreStats: 0
  216. visible: 1
  217. visibleInStatsPanel: 1
  218. displayFormat: 0
  219. suffixes: '%'
  220. compareInfo: 1
  221. randomChange: 100
  222. locked: 0
  223. isFixed: 1
  224. minValue: 0
  225. maxValue: 0
  226. fold: 0
  227. - key: luck
  228. name: Luck
  229. value:
  230. stringValue: 0
  231. upgradeIncrement: 1
  232. coreStats: 0
  233. visible: 1
  234. visibleInStatsPanel: 1
  235. displayFormat: 0
  236. suffixes:
  237. compareInfo: 1
  238. randomChange: 100
  239. locked: 0
  240. isFixed: 1
  241. minValue: 0
  242. maxValue: 0
  243. fold: 0
  244. - key: steal
  245. name: Health Steal
  246. value:
  247. stringValue: 0
  248. upgradeIncrement: 1
  249. coreStats: 0
  250. visible: 1
  251. visibleInStatsPanel: 1
  252. displayFormat: 0
  253. suffixes:
  254. compareInfo: 1
  255. randomChange: 100
  256. locked: 0
  257. isFixed: 1
  258. minValue: 0
  259. maxValue: 0
  260. fold: 0
  261. - key: cd
  262. name: Cool Down
  263. value:
  264. stringValue: 0
  265. upgradeIncrement: -0.3
  266. coreStats: 1
  267. visible: 1
  268. visibleInStatsPanel: 0
  269. displayFormat: 1
  270. suffixes: ' sec'
  271. compareInfo: 0
  272. randomChange: 100
  273. locked: 0
  274. isFixed: 1
  275. minValue: 0
  276. maxValue: 0
  277. fold: 1
  278. - key: dmg
  279. name: Damage
  280. value:
  281. stringValue: 0
  282. upgradeIncrement: 3
  283. coreStats: 0
  284. visible: 1
  285. visibleInStatsPanel: 0
  286. displayFormat: 1
  287. suffixes:
  288. compareInfo: 1
  289. randomChange: 100
  290. locked: 0
  291. isFixed: 1
  292. minValue: 0
  293. maxValue: 0
  294. fold: 0
  295. - key: delay
  296. name: Damage Delay
  297. value:
  298. stringValue: 0
  299. upgradeIncrement: -0.02
  300. coreStats: 0
  301. visible: 1
  302. visibleInStatsPanel: 0
  303. displayFormat: 1
  304. suffixes: ' sec'
  305. compareInfo: 1
  306. randomChange: 100
  307. locked: 0
  308. isFixed: 1
  309. minValue: 0
  310. maxValue: 0
  311. fold: 0
  312. - key: spcost
  313. name: SP Cost
  314. value:
  315. stringValue: 0
  316. upgradeIncrement: -1
  317. coreStats: 1
  318. visible: 1
  319. visibleInStatsPanel: 0
  320. displayFormat: 1
  321. suffixes:
  322. compareInfo: 0
  323. randomChange: 100
  324. locked: 0
  325. isFixed: 1
  326. minValue: 0
  327. maxValue: 0
  328. fold: 0
  329. - key: stun
  330. name: Stun Chance
  331. value:
  332. stringValue: 0
  333. upgradeIncrement: 1
  334. coreStats: 0
  335. visible: 0
  336. visibleInStatsPanel: 0
  337. displayFormat: 0
  338. suffixes:
  339. compareInfo: 0
  340. randomChange: 100
  341. locked: 0
  342. isFixed: 1
  343. minValue: 0
  344. maxValue: 0
  345. fold: 0
  346. - key: name
  347. name: Character Name
  348. value:
  349. stringValue: 1
  350. upgradeIncrement: 0
  351. coreStats: 0
  352. visible: 0
  353. visibleInStatsPanel: 0
  354. displayFormat: 1
  355. suffixes:
  356. compareInfo: 0
  357. randomChange: 100
  358. locked: 0
  359. isFixed: 1
  360. minValue: 0
  361. maxValue: 0
  362. fold: 0
  363. - key: xp
  364. name: XP
  365. value:
  366. stringValue: 0
  367. upgradeIncrement: 0
  368. coreStats: 0
  369. visible: 0
  370. visibleInStatsPanel: 0
  371. displayFormat: 1
  372. suffixes:
  373. compareInfo: 0
  374. randomChange: 100
  375. locked: 0
  376. isFixed: 1
  377. minValue: 0
  378. maxValue: 0
  379. fold: 0
  380. - key: mxp
  381. name: Max XP
  382. value:
  383. stringValue: 0
  384. upgradeIncrement: 0
  385. coreStats: 0
  386. visible: 0
  387. visibleInStatsPanel: 0
  388. displayFormat: 1
  389. suffixes:
  390. compareInfo: 0
  391. randomChange: 100
  392. locked: 0
  393. isFixed: 1
  394. minValue: 0
  395. maxValue: 0
  396. fold: 0
  397. itemEnchantments:
  398. - uid: 0
  399. name: Knight
  400. prefixes: Holly
  401. prefixesPriority: 0
  402. suffixes:
  403. suffixesPriority: 0
  404. attributes:
  405. - key: hp
  406. name: Health
  407. value: 5
  408. stringValue: 0
  409. upgradeIncrement: 20
  410. coreStats: 0
  411. visible: 1
  412. visibleInStatsPanel: 1
  413. displayFormat: 0
  414. suffixes:
  415. compareInfo: 1
  416. randomChange: 100
  417. locked: 0
  418. isFixed: 1
  419. minValue: 0
  420. maxValue: 0
  421. fold: 1
  422. - key: def
  423. name: Defence
  424. value: 3
  425. stringValue: 0
  426. upgradeIncrement: 2
  427. coreStats: 0
  428. visible: 1
  429. visibleInStatsPanel: 1
  430. displayFormat: 0
  431. suffixes:
  432. compareInfo: 1
  433. randomChange: 100
  434. locked: 0
  435. isFixed: 1
  436. minValue: 0
  437. maxValue: 0
  438. fold: 1
  439. fold: 1
  440. - uid: 1
  441. name: Ninja
  442. prefixes: Swift
  443. prefixesPriority: 0
  444. suffixes:
  445. suffixesPriority: 0
  446. attributes:
  447. - key: agi
  448. name: Agility
  449. value: 10
  450. stringValue: 0
  451. upgradeIncrement: 1
  452. coreStats: 0
  453. visible: 1
  454. visibleInStatsPanel: 1
  455. displayFormat: 0
  456. suffixes:
  457. compareInfo: 1
  458. randomChange: 100
  459. locked: 0
  460. isFixed: 1
  461. minValue: 0
  462. maxValue: 0
  463. fold: 1
  464. fold: 0
  465. - uid: 2
  466. name: Rage
  467. prefixes: of Rage
  468. prefixesPriority: 0
  469. suffixes:
  470. suffixesPriority: 0
  471. attributes:
  472. - key: atk
  473. name: Attack
  474. value: 10
  475. stringValue: 0
  476. upgradeIncrement: 2
  477. coreStats: 0
  478. visible: 1
  479. visibleInStatsPanel: 1
  480. displayFormat: 0
  481. suffixes:
  482. compareInfo: 1
  483. randomChange: 100
  484. locked: 0
  485. isFixed: 1
  486. minValue: 0
  487. maxValue: 0
  488. fold: 1
  489. fold: 0
  490. - uid: 3
  491. name: Accurate
  492. prefixes: Accurate
  493. prefixesPriority: 0
  494. suffixes:
  495. suffixesPriority: 0
  496. attributes:
  497. - key: crit
  498. name: Critical Chance
  499. value: 8
  500. stringValue: 0
  501. upgradeIncrement: 3
  502. coreStats: 0
  503. visible: 1
  504. visibleInStatsPanel: 1
  505. displayFormat: 0
  506. suffixes:
  507. compareInfo: 1
  508. randomChange: 100
  509. locked: 0
  510. isFixed: 1
  511. minValue: 0
  512. maxValue: 0
  513. fold: 1
  514. fold: 0
  515. - uid: 4
  516. name: Wisdom
  517. prefixes:
  518. prefixesPriority: 0
  519. suffixes: of Wizard
  520. suffixesPriority: 0
  521. attributes:
  522. - key: resist
  523. name: Resistance
  524. value: 7
  525. stringValue: 0
  526. upgradeIncrement: 2
  527. coreStats: 0
  528. visible: 1
  529. visibleInStatsPanel: 1
  530. displayFormat: 0
  531. suffixes:
  532. compareInfo: 1
  533. randomChange: 100
  534. locked: 0
  535. isFixed: 1
  536. minValue: 0
  537. maxValue: 0
  538. fold: 1
  539. fold: 0
  540. - uid: 5
  541. name: Strong
  542. prefixes: Handy
  543. prefixesPriority: 0
  544. suffixes:
  545. suffixesPriority: 0
  546. attributes:
  547. - key: sp
  548. name: Stamina
  549. value: 10
  550. stringValue: 0
  551. upgradeIncrement: 10
  552. coreStats: 0
  553. visible: 1
  554. visibleInStatsPanel: 1
  555. displayFormat: 0
  556. suffixes:
  557. compareInfo: 1
  558. randomChange: 100
  559. locked: 0
  560. isFixed: 1
  561. minValue: 0
  562. maxValue: 0
  563. fold: 1
  564. fold: 0
  565. - uid: 6
  566. name: Lucky
  567. prefixes: Lucky
  568. prefixesPriority: 0
  569. suffixes:
  570. suffixesPriority: 0
  571. attributes:
  572. - key: luck
  573. name: Luck
  574. value: 2
  575. stringValue: 0
  576. upgradeIncrement: 1
  577. coreStats: 0
  578. visible: 1
  579. visibleInStatsPanel: 1
  580. displayFormat: 0
  581. suffixes:
  582. compareInfo: 1
  583. randomChange: 100
  584. locked: 0
  585. isFixed: 1
  586. minValue: 0
  587. maxValue: 0
  588. fold: 1
  589. fold: 0
  590. - uid: 7
  591. name: Vampire
  592. prefixes: Evil
  593. prefixesPriority: 0
  594. suffixes:
  595. suffixesPriority: 0
  596. attributes:
  597. - key: steal
  598. name: Health Steal
  599. value: 1
  600. stringValue: 0
  601. upgradeIncrement: 1
  602. coreStats: 0
  603. visible: 1
  604. visibleInStatsPanel: 1
  605. displayFormat: 0
  606. suffixes:
  607. compareInfo: 1
  608. randomChange: 100
  609. locked: 0
  610. isFixed: 1
  611. minValue: 0
  612. maxValue: 0
  613. fold: 1
  614. fold: 0
  615. - uid: 8
  616. name: Rusty
  617. prefixes: Rusty
  618. prefixesPriority: 0
  619. suffixes:
  620. suffixesPriority: 0
  621. attributes:
  622. - key: atk
  623. name: Attack
  624. value: -2
  625. stringValue: 0
  626. upgradeIncrement: 2
  627. coreStats: 0
  628. visible: 1
  629. visibleInStatsPanel: 1
  630. displayFormat: 0
  631. suffixes:
  632. compareInfo: 1
  633. randomChange: 100
  634. locked: 0
  635. isFixed: 1
  636. minValue: 0
  637. maxValue: 0
  638. fold: 1
  639. - key: def
  640. name: Defence
  641. value: -1
  642. stringValue: 0
  643. upgradeIncrement: 2
  644. coreStats: 0
  645. visible: 1
  646. visibleInStatsPanel: 1
  647. displayFormat: 0
  648. suffixes:
  649. compareInfo: 1
  650. randomChange: 100
  651. locked: 0
  652. isFixed: 1
  653. minValue: 0
  654. maxValue: 0
  655. fold: 1
  656. fold: 0
  657. - uid: 9
  658. name: Heavy
  659. prefixes: Heavy
  660. prefixesPriority: 0
  661. suffixes:
  662. suffixesPriority: 0
  663. attributes:
  664. - key: sp
  665. name: Stamina
  666. value: -3
  667. stringValue: 0
  668. upgradeIncrement: 10
  669. coreStats: 0
  670. visible: 1
  671. visibleInStatsPanel: 1
  672. displayFormat: 0
  673. suffixes:
  674. compareInfo: 1
  675. randomChange: 100
  676. locked: 0
  677. isFixed: 1
  678. minValue: 0
  679. maxValue: 0
  680. fold: 1
  681. - key: agi
  682. name: Agility
  683. value: -1
  684. stringValue: 0
  685. upgradeIncrement: 1
  686. coreStats: 0
  687. visible: 1
  688. visibleInStatsPanel: 1
  689. displayFormat: 0
  690. suffixes:
  691. compareInfo: 1
  692. randomChange: 100
  693. locked: 0
  694. isFixed: 1
  695. minValue: 0
  696. maxValue: 0
  697. fold: 1
  698. fold: 0
  699. - uid: 10
  700. name: Trash
  701. prefixes: Shabby
  702. prefixesPriority: 0
  703. suffixes:
  704. suffixesPriority: 0
  705. attributes:
  706. - key: luck
  707. name: Luck
  708. value: -1
  709. stringValue: 0
  710. upgradeIncrement: 1
  711. coreStats: 0
  712. visible: 1
  713. visibleInStatsPanel: 1
  714. displayFormat: 0
  715. suffixes:
  716. compareInfo: 1
  717. randomChange: 100
  718. locked: 0
  719. isFixed: 1
  720. minValue: 0
  721. maxValue: 0
  722. fold: 1
  723. - key: crit
  724. name: Critical Chance
  725. value: -2
  726. stringValue: 0
  727. upgradeIncrement: 3
  728. coreStats: 0
  729. visible: 1
  730. visibleInStatsPanel: 1
  731. displayFormat: 0
  732. suffixes:
  733. compareInfo: 1
  734. randomChange: 100
  735. locked: 0
  736. isFixed: 1
  737. minValue: 0
  738. maxValue: 0
  739. fold: 1
  740. fold: 0
  741. - uid: 11
  742. name: Weak
  743. prefixes: Vulnerable
  744. prefixesPriority: 0
  745. suffixes:
  746. suffixesPriority: 0
  747. attributes:
  748. - key: hp
  749. name: Health
  750. value: -2
  751. stringValue: 0
  752. upgradeIncrement: 20
  753. coreStats: 0
  754. visible: 1
  755. visibleInStatsPanel: 1
  756. displayFormat: 0
  757. suffixes:
  758. compareInfo: 1
  759. randomChange: 100
  760. locked: 0
  761. isFixed: 1
  762. minValue: 0
  763. maxValue: 0
  764. fold: 1
  765. fold: 0
  766. currencies:
  767. - name: Gold Coin
  768. icon: {fileID: 21300000, guid: bb5c6c344e144b84783af4d3d1b73563, type: 3}
  769. color: {r: 0.7254902, g: 0.59607846, b: 0.27450982, a: 1}
  770. ExchangeRate:
  771. - {x: 1, y: 100, z: 1}
  772. fold: 0
  773. - name: Silver Coin
  774. icon: {fileID: 21300000, guid: b613ab79fd8426b47b137ed78b03166f, type: 3}
  775. color: {r: 0.5971283, g: 0.6575548, b: 0.6981132, a: 1}
  776. ExchangeRate:
  777. - {x: 2, y: 100, z: 1}
  778. fold: 0
  779. - name: Copper Coin
  780. icon: {fileID: 21300000, guid: 200f16ec8de48ae478c7531405a703a1, type: 3}
  781. color: {r: 0.5377358, g: 0.34083435, b: 0.15049836, a: 1}
  782. ExchangeRate: []
  783. fold: 1
  784. items:
  785. - uid: 0
  786. name: Health Potion(S)
  787. description: Heal 50 health points.
  788. type: 0
  789. icon: {fileID: 2800000, guid: 4575722772855524688e4571a34592f5, type: 3}
  790. quality: 0
  791. tradeable: 1
  792. deletable: 1
  793. useable: 1
  794. consumable: 1
  795. visible: 1
  796. price: 50
  797. currency: 1
  798. maxiumStack: 99
  799. upgradeLevel: 0
  800. weight: 0.1
  801. dropRates: 30
  802. favorite: 0
  803. attributes:
  804. - key: cd
  805. name: Cool Down
  806. value: 3
  807. stringValue: 0
  808. upgradeIncrement: -0.3
  809. coreStats: 1
  810. visible: 1
  811. visibleInStatsPanel: 0
  812. displayFormat: 1
  813. suffixes: ' sec'
  814. compareInfo: 0
  815. randomChange: 100
  816. locked: 0
  817. isFixed: 1
  818. minValue: 3
  819. maxValue: 3
  820. fold: 1
  821. maximumRandomAttributes: 5
  822. enchantments:
  823. craftMaterials: []
  824. actions:
  825. - AddHp_50
  826. tags: []
  827. customData: []
  828. lastUseTimeStamp: 0
  829. restrictionKey:
  830. restrictionValue: 0
  831. socketingSlots: 0
  832. socketedItems:
  833. socketingTag: []
  834. fold: 0
  835. - uid: 1
  836. name: Health Potion(L)
  837. description: No description yet.
  838. type: 0
  839. icon: {fileID: 2800000, guid: 3bb7eb239c0c6dc42bf72bbc5ad87456, type: 3}
  840. quality: 1
  841. tradeable: 1
  842. deletable: 1
  843. useable: 1
  844. consumable: 1
  845. visible: 1
  846. price: 80
  847. currency: 1
  848. maxiumStack: 99
  849. upgradeLevel: 0
  850. weight: 0.2
  851. dropRates: 10
  852. favorite: 0
  853. attributes:
  854. - key: cd
  855. name: Cool Down
  856. value: 3
  857. stringValue: 0
  858. upgradeIncrement: -0.3
  859. coreStats: 1
  860. visible: 1
  861. visibleInStatsPanel: 0
  862. displayFormat: 1
  863. suffixes: ' sec'
  864. compareInfo: 0
  865. randomChange: 100
  866. locked: 0
  867. isFixed: 1
  868. minValue: 3
  869. maxValue: 3
  870. fold: 1
  871. maximumRandomAttributes: 5
  872. enchantments:
  873. craftMaterials:
  874. - {x: 22, y: 1}
  875. - {x: 23, y: 1}
  876. actions:
  877. - AddHp_200
  878. tags: []
  879. customData: []
  880. lastUseTimeStamp: 0
  881. restrictionKey:
  882. restrictionValue: 0
  883. socketingSlots: 0
  884. socketedItems:
  885. socketingTag: []
  886. fold: 1
  887. - uid: 2
  888. name: Energy Potion(S)
  889. description: Recover 50 stamina points.
  890. type: 0
  891. icon: {fileID: 2800000, guid: 48aaab43a6134d24893bb1af7a555e6d, type: 3}
  892. quality: 0
  893. tradeable: 1
  894. deletable: 1
  895. useable: 1
  896. consumable: 1
  897. visible: 1
  898. price: 60
  899. currency: 2
  900. maxiumStack: 99
  901. upgradeLevel: 0
  902. weight: 0.1
  903. dropRates: 30
  904. favorite: 0
  905. attributes:
  906. - key: cd
  907. name: Cool Down
  908. value: 3
  909. stringValue: 0
  910. upgradeIncrement: -0.3
  911. coreStats: 1
  912. visible: 1
  913. visibleInStatsPanel: 0
  914. displayFormat: 1
  915. suffixes: ' sec'
  916. compareInfo: 0
  917. randomChange: 100
  918. locked: 0
  919. isFixed: 1
  920. minValue: 3
  921. maxValue: 3
  922. fold: 1
  923. maximumRandomAttributes: 5
  924. enchantments:
  925. craftMaterials: []
  926. actions:
  927. - AddSp_50
  928. tags: []
  929. customData: []
  930. lastUseTimeStamp: 0
  931. restrictionKey:
  932. restrictionValue: 0
  933. socketingSlots: 0
  934. socketedItems:
  935. socketingTag: []
  936. fold: 0
  937. - uid: 3
  938. name: Energy Potion(L)
  939. description: Recover 200 stamina points.
  940. type: 0
  941. icon: {fileID: 2800000, guid: 70e708bd41f37904eb88ac2109d9c112, type: 3}
  942. quality: 1
  943. tradeable: 1
  944. deletable: 1
  945. useable: 1
  946. consumable: 1
  947. visible: 1
  948. price: 2
  949. currency: 1
  950. maxiumStack: 99
  951. upgradeLevel: 0
  952. weight: 0.2
  953. dropRates: 10
  954. favorite: 0
  955. attributes:
  956. - key: cd
  957. name: Cool Down
  958. value: 3
  959. stringValue: 0
  960. upgradeIncrement: -0.3
  961. coreStats: 1
  962. visible: 1
  963. visibleInStatsPanel: 0
  964. displayFormat: 1
  965. suffixes: ' sec'
  966. compareInfo: 0
  967. randomChange: 100
  968. locked: 0
  969. isFixed: 1
  970. minValue: 3
  971. maxValue: 3
  972. fold: 1
  973. maximumRandomAttributes: 5
  974. enchantments:
  975. craftMaterials: []
  976. actions:
  977. - AddSp_200
  978. tags: []
  979. customData: []
  980. lastUseTimeStamp: 0
  981. restrictionKey:
  982. restrictionValue: 0
  983. socketingSlots: 0
  984. socketedItems:
  985. socketingTag: []
  986. fold: 0
  987. - uid: 4
  988. name: Speed Fruit
  989. description: Boost agility for 10 during 5 minutes.
  990. type: 0
  991. icon: {fileID: 2800000, guid: 31ab36cdbf8da244ea93fb78ba645c99, type: 3}
  992. quality: 2
  993. tradeable: 1
  994. deletable: 1
  995. useable: 1
  996. consumable: 1
  997. visible: 1
  998. price: 30
  999. currency: 2
  1000. maxiumStack: 99
  1001. upgradeLevel: 0
  1002. weight: 0.1
  1003. dropRates: 10
  1004. favorite: 0
  1005. attributes:
  1006. - key: agi
  1007. name: Agility
  1008. value: 10
  1009. stringValue: 0
  1010. upgradeIncrement: 1
  1011. coreStats: 0
  1012. visible: 1
  1013. visibleInStatsPanel: 1
  1014. displayFormat: 0
  1015. suffixes:
  1016. compareInfo: 1
  1017. randomChange: 100
  1018. locked: 0
  1019. isFixed: 1
  1020. minValue: 10
  1021. maxValue: 10
  1022. fold: 1
  1023. maximumRandomAttributes: 5
  1024. enchantments:
  1025. craftMaterials: []
  1026. actions:
  1027. - buff_5
  1028. tags: []
  1029. customData: []
  1030. lastUseTimeStamp: 0
  1031. restrictionKey:
  1032. restrictionValue: 0
  1033. socketingSlots: 0
  1034. socketedItems:
  1035. socketingTag: []
  1036. fold: 0
  1037. - uid: 5
  1038. name: Herbs
  1039. description: Permanent increase maxium healh for 10 points.
  1040. type: 0
  1041. icon: {fileID: 2800000, guid: 5b43a786f2cb00c4e81ccbf95e89884d, type: 3}
  1042. quality: 3
  1043. tradeable: 1
  1044. deletable: 1
  1045. useable: 1
  1046. consumable: 1
  1047. visible: 1
  1048. price: 500
  1049. currency: 0
  1050. maxiumStack: 99
  1051. upgradeLevel: 0
  1052. weight: 0.1
  1053. dropRates: 15
  1054. favorite: 0
  1055. attributes:
  1056. - key: hp
  1057. name: Health
  1058. value: 10
  1059. stringValue: 0
  1060. upgradeIncrement: 20
  1061. coreStats: 0
  1062. visible: 1
  1063. visibleInStatsPanel: 1
  1064. displayFormat: 0
  1065. suffixes:
  1066. compareInfo: 1
  1067. randomChange: 100
  1068. locked: 0
  1069. isFixed: 1
  1070. minValue: 0
  1071. maxValue: 0
  1072. fold: 1
  1073. maximumRandomAttributes: 5
  1074. enchantments:
  1075. craftMaterials: []
  1076. actions:
  1077. - permanent
  1078. tags: []
  1079. customData: []
  1080. lastUseTimeStamp: 0
  1081. restrictionKey:
  1082. restrictionValue: 0
  1083. socketingSlots: 0
  1084. socketedItems:
  1085. socketingTag: []
  1086. fold: 0
  1087. - uid: 6
  1088. name: Iron Ore
  1089. description: Crafting material.
  1090. type: 2
  1091. icon: {fileID: 2800000, guid: 36bbb9020d8205d42a1403fb005a3fa5, type: 3}
  1092. quality: 0
  1093. tradeable: 1
  1094. deletable: 1
  1095. useable: 0
  1096. consumable: 0
  1097. visible: 1
  1098. price: 10
  1099. currency: 0
  1100. maxiumStack: 99
  1101. upgradeLevel: 0
  1102. weight: 0.5
  1103. dropRates: 30
  1104. favorite: 0
  1105. attributes: []
  1106. maximumRandomAttributes: 5
  1107. enchantments:
  1108. craftMaterials: []
  1109. actions: []
  1110. tags: []
  1111. customData: []
  1112. lastUseTimeStamp: 0
  1113. restrictionKey:
  1114. restrictionValue: 0
  1115. socketingSlots: 0
  1116. socketedItems:
  1117. socketingTag: []
  1118. fold: 0
  1119. - uid: 7
  1120. name: Copper Ore
  1121. description: Crafting material.
  1122. type: 2
  1123. icon: {fileID: 2800000, guid: 13b166555b5984b46832144f7d88e9f8, type: 3}
  1124. quality: 1
  1125. tradeable: 1
  1126. deletable: 1
  1127. useable: 0
  1128. consumable: 0
  1129. visible: 1
  1130. price: 20
  1131. currency: 0
  1132. maxiumStack: 99
  1133. upgradeLevel: 0
  1134. weight: 0.5
  1135. dropRates: 20
  1136. favorite: 0
  1137. attributes: []
  1138. maximumRandomAttributes: 5
  1139. enchantments:
  1140. craftMaterials: []
  1141. actions: []
  1142. tags: []
  1143. customData: []
  1144. lastUseTimeStamp: 0
  1145. restrictionKey:
  1146. restrictionValue: 0
  1147. socketingSlots: 0
  1148. socketedItems:
  1149. socketingTag: []
  1150. fold: 0
  1151. - uid: 8
  1152. name: Silver Ore
  1153. description: Crafting material.
  1154. type: 2
  1155. icon: {fileID: 2800000, guid: 7cc44fcbd7bfc65468eaea4c18b77f72, type: 3}
  1156. quality: 2
  1157. tradeable: 1
  1158. deletable: 1
  1159. useable: 0
  1160. consumable: 0
  1161. visible: 1
  1162. price: 30
  1163. currency: 0
  1164. maxiumStack: 99
  1165. upgradeLevel: 0
  1166. weight: 0.5
  1167. dropRates: 15
  1168. favorite: 0
  1169. attributes: []
  1170. maximumRandomAttributes: 5
  1171. enchantments:
  1172. craftMaterials: []
  1173. actions: []
  1174. tags: []
  1175. customData: []
  1176. lastUseTimeStamp: 0
  1177. restrictionKey:
  1178. restrictionValue: 0
  1179. socketingSlots: 0
  1180. socketedItems:
  1181. socketingTag: []
  1182. fold: 0
  1183. - uid: 9
  1184. name: Gold Ore
  1185. description: Crafting material.
  1186. type: 2
  1187. icon: {fileID: 2800000, guid: 467c27f6466763942a6fdd0fdbd2165b, type: 3}
  1188. quality: 3
  1189. tradeable: 1
  1190. deletable: 1
  1191. useable: 0
  1192. consumable: 0
  1193. visible: 1
  1194. price: 40
  1195. currency: 0
  1196. maxiumStack: 99
  1197. upgradeLevel: 0
  1198. weight: 0.5
  1199. dropRates: 10
  1200. favorite: 0
  1201. attributes: []
  1202. maximumRandomAttributes: 5
  1203. enchantments:
  1204. craftMaterials: []
  1205. actions: []
  1206. tags: []
  1207. customData: []
  1208. lastUseTimeStamp: 0
  1209. restrictionKey:
  1210. restrictionValue: 0
  1211. socketingSlots: 0
  1212. socketedItems:
  1213. socketingTag: []
  1214. fold: 0
  1215. - uid: 10
  1216. name: Oak Log
  1217. description: Crafting material.
  1218. type: 2
  1219. icon: {fileID: 2800000, guid: 801c00c97a58d5347930380e18bb614b, type: 3}
  1220. quality: 0
  1221. tradeable: 1
  1222. deletable: 1
  1223. useable: 0
  1224. consumable: 0
  1225. visible: 1
  1226. price: 10
  1227. currency: 0
  1228. maxiumStack: 99
  1229. upgradeLevel: 0
  1230. weight: 0.3
  1231. dropRates: 30
  1232. favorite: 0
  1233. attributes: []
  1234. maximumRandomAttributes: 5
  1235. enchantments:
  1236. craftMaterials: []
  1237. actions: []
  1238. tags: []
  1239. customData: []
  1240. lastUseTimeStamp: 0
  1241. restrictionKey:
  1242. restrictionValue: 0
  1243. socketingSlots: 0
  1244. socketedItems:
  1245. socketingTag: []
  1246. fold: 0
  1247. - uid: 11
  1248. name: Walnut Log
  1249. description: Crafting material.
  1250. type: 2
  1251. icon: {fileID: 2800000, guid: 17f8c914d24a77d4d93a70d1f8e2c20b, type: 3}
  1252. quality: 1
  1253. tradeable: 1
  1254. deletable: 1
  1255. useable: 0
  1256. consumable: 0
  1257. visible: 1
  1258. price: 20
  1259. currency: 0
  1260. maxiumStack: 99
  1261. upgradeLevel: 0
  1262. weight: 0.3
  1263. dropRates: 25
  1264. favorite: 0
  1265. attributes: []
  1266. maximumRandomAttributes: 5
  1267. enchantments:
  1268. craftMaterials: []
  1269. actions: []
  1270. tags: []
  1271. customData: []
  1272. lastUseTimeStamp: 0
  1273. restrictionKey:
  1274. restrictionValue: 0
  1275. socketingSlots: 0
  1276. socketedItems:
  1277. socketingTag: []
  1278. fold: 0
  1279. - uid: 12
  1280. name: Wolf's Skin
  1281. description: Crafting material.
  1282. type: 2
  1283. icon: {fileID: 2800000, guid: 16437e7bf7f3f0b48a09218e295c5769, type: 3}
  1284. quality: 0
  1285. tradeable: 1
  1286. deletable: 1
  1287. useable: 0
  1288. consumable: 0
  1289. visible: 1
  1290. price: 10
  1291. currency: 0
  1292. maxiumStack: 99
  1293. upgradeLevel: 0
  1294. weight: 0.2
  1295. dropRates: 20
  1296. favorite: 0
  1297. attributes: []
  1298. maximumRandomAttributes: 5
  1299. enchantments:
  1300. craftMaterials: []
  1301. actions: []
  1302. tags: []
  1303. customData: []
  1304. lastUseTimeStamp: 0
  1305. restrictionKey:
  1306. restrictionValue: 0
  1307. socketingSlots: 0
  1308. socketedItems:
  1309. socketingTag: []
  1310. fold: 0
  1311. - uid: 13
  1312. name: Bear's Skin
  1313. description: Crafting material.
  1314. type: 2
  1315. icon: {fileID: 2800000, guid: a5f926258cc9dde4abeb7ee2df3bbbf2, type: 3}
  1316. quality: 1
  1317. tradeable: 1
  1318. deletable: 1
  1319. useable: 0
  1320. consumable: 0
  1321. visible: 1
  1322. price: 20
  1323. currency: 0
  1324. maxiumStack: 99
  1325. upgradeLevel: 0
  1326. weight: 0.2
  1327. dropRates: 15
  1328. favorite: 0
  1329. attributes: []
  1330. maximumRandomAttributes: 5
  1331. enchantments:
  1332. craftMaterials: []
  1333. actions: []
  1334. tags: []
  1335. customData: []
  1336. lastUseTimeStamp: 0
  1337. restrictionKey:
  1338. restrictionValue: 0
  1339. socketingSlots: 0
  1340. socketedItems:
  1341. socketingTag: []
  1342. fold: 0
  1343. - uid: 14
  1344. name: Wolf's Claw
  1345. description: Crafting material.
  1346. type: 2
  1347. icon: {fileID: 2800000, guid: 39c3e7b2852aea74c9502cf08f81f034, type: 3}
  1348. quality: 2
  1349. tradeable: 1
  1350. deletable: 1
  1351. useable: 0
  1352. consumable: 0
  1353. visible: 1
  1354. price: 50
  1355. currency: 0
  1356. maxiumStack: 99
  1357. upgradeLevel: 0
  1358. weight: 0.1
  1359. dropRates: 10
  1360. favorite: 0
  1361. attributes: []
  1362. maximumRandomAttributes: 5
  1363. enchantments:
  1364. craftMaterials: []
  1365. actions: []
  1366. tags: []
  1367. customData: []
  1368. lastUseTimeStamp: 0
  1369. restrictionKey:
  1370. restrictionValue: 0
  1371. socketingSlots: 0
  1372. socketedItems:
  1373. socketingTag: []
  1374. fold: 0
  1375. - uid: 15
  1376. name: Bear's Tooth
  1377. description: Crafting material.
  1378. type: 2
  1379. icon: {fileID: 2800000, guid: b19817a519fb1934987b52e338751080, type: 3}
  1380. quality: 2
  1381. tradeable: 1
  1382. deletable: 1
  1383. useable: 0
  1384. consumable: 0
  1385. visible: 1
  1386. price: 70
  1387. currency: 0
  1388. maxiumStack: 99
  1389. upgradeLevel: 0
  1390. weight: 0.1
  1391. dropRates: 10
  1392. favorite: 0
  1393. attributes: []
  1394. maximumRandomAttributes: 5
  1395. enchantments:
  1396. craftMaterials: []
  1397. actions: []
  1398. tags: []
  1399. customData: []
  1400. lastUseTimeStamp: 0
  1401. restrictionKey:
  1402. restrictionValue: 0
  1403. socketingSlots: 0
  1404. socketedItems:
  1405. socketingTag: []
  1406. fold: 1
  1407. - uid: 16
  1408. name: Letter
  1409. description: Quest item.
  1410. type: 3
  1411. icon: {fileID: 2800000, guid: bb28d173077289645b69118063a5932c, type: 3}
  1412. quality: 0
  1413. tradeable: 0
  1414. deletable: 0
  1415. useable: 0
  1416. consumable: 0
  1417. visible: 1
  1418. price: 0
  1419. currency: 0
  1420. maxiumStack: 1
  1421. upgradeLevel: 0
  1422. weight: 0
  1423. dropRates: 10
  1424. favorite: 0
  1425. attributes: []
  1426. maximumRandomAttributes: 5
  1427. enchantments:
  1428. craftMaterials: []
  1429. actions: []
  1430. tags: []
  1431. customData: []
  1432. lastUseTimeStamp: 0
  1433. restrictionKey:
  1434. restrictionValue: 0
  1435. socketingSlots: 0
  1436. socketedItems:
  1437. socketingTag: []
  1438. fold: 0
  1439. - uid: 17
  1440. name: Gift For Jenny
  1441. description: Quest item.
  1442. type: 3
  1443. icon: {fileID: 2800000, guid: 3c0e2480efa370841b67530f1ad49c79, type: 3}
  1444. quality: 0
  1445. tradeable: 0
  1446. deletable: 0
  1447. useable: 0
  1448. consumable: 0
  1449. visible: 1
  1450. price: 0
  1451. currency: 0
  1452. maxiumStack: 1
  1453. upgradeLevel: 0
  1454. weight: 0
  1455. dropRates: 20
  1456. favorite: 0
  1457. attributes: []
  1458. maximumRandomAttributes: 5
  1459. enchantments:
  1460. craftMaterials: []
  1461. actions: []
  1462. tags: []
  1463. customData: []
  1464. lastUseTimeStamp: 0
  1465. restrictionKey:
  1466. restrictionValue: 0
  1467. socketingSlots: 0
  1468. socketedItems:
  1469. socketingTag: []
  1470. fold: 0
  1471. - uid: 18
  1472. name: Pass Permit
  1473. description: Quest item.
  1474. type: 3
  1475. icon: {fileID: 2800000, guid: 281dc1b7394fa1b4681ef884e2b45c85, type: 3}
  1476. quality: 0
  1477. tradeable: 0
  1478. deletable: 0
  1479. useable: 0
  1480. consumable: 0
  1481. visible: 1
  1482. price: 0
  1483. currency: 0
  1484. maxiumStack: 1
  1485. upgradeLevel: 0
  1486. weight: 0
  1487. dropRates: 10
  1488. favorite: 0
  1489. attributes: []
  1490. maximumRandomAttributes: 5
  1491. enchantments:
  1492. craftMaterials: []
  1493. actions: []
  1494. tags: []
  1495. customData: []
  1496. lastUseTimeStamp: 0
  1497. restrictionKey:
  1498. restrictionValue: 0
  1499. socketingSlots: 0
  1500. socketedItems:
  1501. socketingTag: []
  1502. fold: 0
  1503. - uid: 19
  1504. name: Strange Egg
  1505. description: Quest item.
  1506. type: 3
  1507. icon: {fileID: 2800000, guid: 190c851db0a9e5c438e7e5a58ce83fd0, type: 3}
  1508. quality: 0
  1509. tradeable: 0
  1510. deletable: 0
  1511. useable: 0
  1512. consumable: 0
  1513. visible: 1
  1514. price: 0
  1515. currency: 0
  1516. maxiumStack: 99
  1517. upgradeLevel: 0
  1518. weight: 0
  1519. dropRates: 15
  1520. favorite: 0
  1521. attributes: []
  1522. maximumRandomAttributes: 5
  1523. enchantments:
  1524. craftMaterials: []
  1525. actions: []
  1526. tags: []
  1527. customData: []
  1528. lastUseTimeStamp: 0
  1529. restrictionKey:
  1530. restrictionValue: 0
  1531. socketingSlots: 0
  1532. socketedItems:
  1533. socketingTag: []
  1534. fold: 0
  1535. - uid: 20
  1536. name: Corn
  1537. description: Quest item.
  1538. type: 3
  1539. icon: {fileID: 2800000, guid: f21118186e702064da079c2d5bfca9f8, type: 3}
  1540. quality: 0
  1541. tradeable: 0
  1542. deletable: 0
  1543. useable: 0
  1544. consumable: 0
  1545. visible: 1
  1546. price: 0
  1547. currency: 0
  1548. maxiumStack: 99
  1549. upgradeLevel: 0
  1550. weight: 0
  1551. dropRates: 40
  1552. favorite: 0
  1553. attributes: []
  1554. maximumRandomAttributes: 5
  1555. enchantments:
  1556. craftMaterials: []
  1557. actions: []
  1558. tags: []
  1559. customData: []
  1560. lastUseTimeStamp: 0
  1561. restrictionKey:
  1562. restrictionValue: 0
  1563. socketingSlots: 0
  1564. socketedItems:
  1565. socketingTag: []
  1566. fold: 0
  1567. - uid: 21
  1568. name: Poison
  1569. description: Quest item.
  1570. type: 3
  1571. icon: {fileID: 2800000, guid: 06ec224aeb0c14d4a81992f51adf8197, type: 3}
  1572. quality: 0
  1573. tradeable: 0
  1574. deletable: 0
  1575. useable: 0
  1576. consumable: 0
  1577. visible: 1
  1578. price: 0
  1579. currency: 0
  1580. maxiumStack: 1
  1581. upgradeLevel: 0
  1582. weight: 0
  1583. dropRates: 20
  1584. favorite: 0
  1585. attributes: []
  1586. maximumRandomAttributes: 5
  1587. enchantments:
  1588. craftMaterials: []
  1589. actions: []
  1590. tags: []
  1591. customData: []
  1592. lastUseTimeStamp: 0
  1593. restrictionKey:
  1594. restrictionValue: 0
  1595. socketingSlots: 0
  1596. socketedItems:
  1597. socketingTag: []
  1598. fold: 0
  1599. - uid: 22
  1600. name: Monster Head
  1601. description: Quest item.
  1602. type: 2
  1603. icon: {fileID: 2800000, guid: 669286f610c1a2f4ab1c902ca7802777, type: 3}
  1604. quality: 1
  1605. tradeable: 1
  1606. deletable: 1
  1607. useable: 0
  1608. consumable: 0
  1609. visible: 1
  1610. price: 80
  1611. currency: 0
  1612. maxiumStack: 99
  1613. upgradeLevel: 0
  1614. weight: 0
  1615. dropRates: 40
  1616. favorite: 0
  1617. attributes: []
  1618. maximumRandomAttributes: 5
  1619. enchantments:
  1620. craftMaterials: []
  1621. actions: []
  1622. tags: []
  1623. customData: []
  1624. lastUseTimeStamp: 0
  1625. restrictionKey:
  1626. restrictionValue: 0
  1627. socketingSlots: 0
  1628. socketedItems:
  1629. socketingTag: []
  1630. fold: 0
  1631. - uid: 23
  1632. name: Monster Meat
  1633. description: Quest item.
  1634. type: 2
  1635. icon: {fileID: 2800000, guid: 5ebd164e2f48bbf4a83e6314b2bbbe6d, type: 3}
  1636. quality: 0
  1637. tradeable: 1
  1638. deletable: 1
  1639. useable: 0
  1640. consumable: 0
  1641. visible: 1
  1642. price: 50
  1643. currency: 0
  1644. maxiumStack: 99
  1645. upgradeLevel: 0
  1646. weight: 0
  1647. dropRates: 50
  1648. favorite: 0
  1649. attributes: []
  1650. maximumRandomAttributes: 5
  1651. enchantments:
  1652. craftMaterials: []
  1653. actions: []
  1654. tags: []
  1655. customData: []
  1656. lastUseTimeStamp: 0
  1657. restrictionKey:
  1658. restrictionValue: 0
  1659. socketingSlots: 0
  1660. socketedItems:
  1661. socketingTag: []
  1662. fold: 0
  1663. - uid: 24
  1664. name: Monster Wing
  1665. description: Quest item.
  1666. type: 3
  1667. icon: {fileID: 2800000, guid: 0f08f1e25f43e3b4ab2fda126331ffc1, type: 3}
  1668. quality: 1
  1669. tradeable: 0
  1670. deletable: 0
  1671. useable: 0
  1672. consumable: 0
  1673. visible: 1
  1674. price: 0
  1675. currency: 0
  1676. maxiumStack: 99
  1677. upgradeLevel: 0
  1678. weight: 0
  1679. dropRates: 30
  1680. favorite: 0
  1681. attributes: []
  1682. maximumRandomAttributes: 5
  1683. enchantments:
  1684. craftMaterials: []
  1685. actions: []
  1686. tags: []
  1687. customData: []
  1688. lastUseTimeStamp: 0
  1689. restrictionKey:
  1690. restrictionValue: 0
  1691. socketingSlots: 0
  1692. socketedItems:
  1693. socketingTag: []
  1694. fold: 0
  1695. - uid: 25
  1696. name: Monster Skin
  1697. description: Quest item.
  1698. type: 3
  1699. icon: {fileID: 2800000, guid: 5a1bb02e4ad7b0c4e9491e4d6fa8e33f, type: 3}
  1700. quality: 0
  1701. tradeable: 0
  1702. deletable: 0
  1703. useable: 0
  1704. consumable: 0
  1705. visible: 1
  1706. price: 0
  1707. currency: 0
  1708. maxiumStack: 99
  1709. upgradeLevel: 0
  1710. weight: 0
  1711. dropRates: 40
  1712. favorite: 0
  1713. attributes: []
  1714. maximumRandomAttributes: 5
  1715. enchantments:
  1716. craftMaterials: []
  1717. actions: []
  1718. tags: []
  1719. customData: []
  1720. lastUseTimeStamp: 0
  1721. restrictionKey:
  1722. restrictionValue: 0
  1723. socketingSlots: 0
  1724. socketedItems:
  1725. socketingTag: []
  1726. fold: 0
  1727. - uid: 26
  1728. name: Gem
  1729. description: Quest item.
  1730. type: 3
  1731. icon: {fileID: 2800000, guid: 3fc89da9b027cf74bb19faed48205b70, type: 3}
  1732. quality: 3
  1733. tradeable: 0
  1734. deletable: 0
  1735. useable: 0
  1736. consumable: 0
  1737. visible: 1
  1738. price: 0
  1739. currency: 0
  1740. maxiumStack: 99
  1741. upgradeLevel: 0
  1742. weight: 0
  1743. dropRates: 20
  1744. favorite: 0
  1745. attributes: []
  1746. maximumRandomAttributes: 5
  1747. enchantments:
  1748. craftMaterials: []
  1749. actions: []
  1750. tags: []
  1751. customData: []
  1752. lastUseTimeStamp: 0
  1753. restrictionKey:
  1754. restrictionValue: 0
  1755. socketingSlots: 0
  1756. socketedItems:
  1757. socketingTag: []
  1758. fold: 0
  1759. - uid: 27
  1760. name: Knight's Gauntlet Blueprint
  1761. description: Crafting blueprint.
  1762. type: 2
  1763. icon: {fileID: 2800000, guid: 47c8004104562e74f826e8774f6544b4, type: 3}
  1764. quality: 0
  1765. tradeable: 0
  1766. deletable: 0
  1767. useable: 0
  1768. consumable: 0
  1769. visible: 0
  1770. price: 0
  1771. currency: 0
  1772. maxiumStack: 1
  1773. upgradeLevel: 0
  1774. weight: 0
  1775. dropRates: 0
  1776. favorite: 0
  1777. attributes: []
  1778. maximumRandomAttributes: 5
  1779. enchantments:
  1780. craftMaterials:
  1781. - {x: 52, y: 1}
  1782. actions: []
  1783. tags:
  1784. - Blueprint
  1785. customData: []
  1786. lastUseTimeStamp: 0
  1787. restrictionKey:
  1788. restrictionValue: 0
  1789. socketingSlots: 0
  1790. socketedItems:
  1791. socketingTag: []
  1792. fold: 0
  1793. - uid: 28
  1794. name: Plate Armor Blueprint
  1795. description: Crafting blueprint.
  1796. type: 2
  1797. icon: {fileID: 2800000, guid: c8f5ef940f80df3489b447e201e43aa6, type: 3}
  1798. quality: 1
  1799. tradeable: 0
  1800. deletable: 0
  1801. useable: 0
  1802. consumable: 0
  1803. visible: 0
  1804. price: 0
  1805. currency: 0
  1806. maxiumStack: 1
  1807. upgradeLevel: 0
  1808. weight: 0
  1809. dropRates: 0
  1810. favorite: 0
  1811. attributes: []
  1812. maximumRandomAttributes: 5
  1813. enchantments:
  1814. craftMaterials:
  1815. - {x: 43, y: 1}
  1816. actions: []
  1817. tags:
  1818. - Blueprint
  1819. customData: []
  1820. lastUseTimeStamp: 0
  1821. restrictionKey:
  1822. restrictionValue: 0
  1823. socketingSlots: 0
  1824. socketedItems:
  1825. socketingTag: []
  1826. fold: 0
  1827. - uid: 29
  1828. name: Great Axe Blueprint
  1829. description: Crafting blueprint.
  1830. type: 2
  1831. icon: {fileID: 2800000, guid: 13730909590cd7a4d9043c5006a3b166, type: 3}
  1832. quality: 2
  1833. tradeable: 0
  1834. deletable: 0
  1835. useable: 0
  1836. consumable: 0
  1837. visible: 0
  1838. price: 0
  1839. currency: 0
  1840. maxiumStack: 1
  1841. upgradeLevel: 0
  1842. weight: 0
  1843. dropRates: 0
  1844. favorite: 0
  1845. attributes: []
  1846. maximumRandomAttributes: 5
  1847. enchantments:
  1848. craftMaterials:
  1849. - {x: 33, y: 1}
  1850. actions: []
  1851. tags:
  1852. - Blueprint
  1853. customData: []
  1854. lastUseTimeStamp: 0
  1855. restrictionKey:
  1856. restrictionValue: 0
  1857. socketingSlots: 0
  1858. socketedItems:
  1859. socketingTag: []
  1860. fold: 0
  1861. - uid: 30
  1862. name: Knight's Helmet Blueprint
  1863. description: Crafting blueprint.
  1864. type: 2
  1865. icon: {fileID: 2800000, guid: 7a29ab3b587e1b143ad0b653b5faa4c8, type: 3}
  1866. quality: 0
  1867. tradeable: 0
  1868. deletable: 0
  1869. useable: 0
  1870. consumable: 0
  1871. visible: 0
  1872. price: 0
  1873. currency: 0
  1874. maxiumStack: 1
  1875. upgradeLevel: 0
  1876. weight: 0
  1877. dropRates: 0
  1878. favorite: 0
  1879. attributes: []
  1880. maximumRandomAttributes: 5
  1881. enchantments:
  1882. craftMaterials:
  1883. - {x: 55, y: 1}
  1884. actions: []
  1885. tags:
  1886. - Blueprint
  1887. customData: []
  1888. lastUseTimeStamp: 0
  1889. restrictionKey:
  1890. restrictionValue: 0
  1891. socketingSlots: 0
  1892. socketedItems:
  1893. socketingTag: []
  1894. fold: 0
  1895. - uid: 31
  1896. name: Short Sword
  1897. description: Basic sword made with iron.
  1898. type: 1
  1899. icon: {fileID: 2800000, guid: a8641a0461e6a424f87c1e09ccda76db, type: 3}
  1900. quality: 0
  1901. tradeable: 1
  1902. deletable: 1
  1903. useable: 1
  1904. consumable: 0
  1905. visible: 1
  1906. price: 500
  1907. currency: 0
  1908. maxiumStack: 1
  1909. upgradeLevel: 0
  1910. weight: 1.5
  1911. dropRates: 10
  1912. favorite: 0
  1913. attributes:
  1914. - key: atk
  1915. name: Attack
  1916. value: 20
  1917. stringValue: 0
  1918. upgradeIncrement: 2
  1919. coreStats: 0
  1920. visible: 1
  1921. visibleInStatsPanel: 1
  1922. displayFormat: 0
  1923. suffixes:
  1924. compareInfo: 1
  1925. randomChange: 100
  1926. locked: 0
  1927. isFixed: 0
  1928. minValue: 10
  1929. maxValue: 30
  1930. fold: 1
  1931. - key: crit
  1932. name: Critical Chance
  1933. value: 5
  1934. stringValue: 0
  1935. upgradeIncrement: 3
  1936. coreStats: 0
  1937. visible: 1
  1938. visibleInStatsPanel: 1
  1939. displayFormat: 0
  1940. suffixes: '%'
  1941. compareInfo: 1
  1942. randomChange: 100
  1943. locked: 0
  1944. isFixed: 0
  1945. minValue: 2
  1946. maxValue: 10
  1947. fold: 1
  1948. maximumRandomAttributes: 1
  1949. enchantments:
  1950. craftMaterials: []
  1951. actions:
  1952. - attck_sword
  1953. - equip
  1954. tags:
  1955. - MainHand
  1956. customData: []
  1957. lastUseTimeStamp: 0
  1958. restrictionKey:
  1959. restrictionValue: 0
  1960. socketingSlots: 0
  1961. socketedItems:
  1962. socketingTag:
  1963. - Red
  1964. - Yellow
  1965. fold: 0
  1966. - uid: 32
  1967. name: Long Sword
  1968. description: Sharp sword made with copper.
  1969. type: 1
  1970. icon: {fileID: 2800000, guid: c85a0405879412a4dac22978c2a6baa5, type: 3}
  1971. quality: 1
  1972. tradeable: 1
  1973. deletable: 1
  1974. useable: 1
  1975. consumable: 0
  1976. visible: 1
  1977. price: 800
  1978. currency: 0
  1979. maxiumStack: 1
  1980. upgradeLevel: 0
  1981. weight: 1.5
  1982. dropRates: 5
  1983. favorite: 0
  1984. attributes:
  1985. - key: atk
  1986. name: Attack
  1987. value: 30
  1988. stringValue: 0
  1989. upgradeIncrement: 2
  1990. coreStats: 0
  1991. visible: 1
  1992. visibleInStatsPanel: 1
  1993. displayFormat: 0
  1994. suffixes:
  1995. compareInfo: 1
  1996. randomChange: 100
  1997. locked: 0
  1998. isFixed: 0
  1999. minValue: 20
  2000. maxValue: 40
  2001. fold: 1
  2002. - key: crit
  2003. name: Critical Chance
  2004. value: 10
  2005. stringValue: 0
  2006. upgradeIncrement: 3
  2007. coreStats: 0
  2008. visible: 1
  2009. visibleInStatsPanel: 1
  2010. displayFormat: 0
  2011. suffixes: '%'
  2012. compareInfo: 1
  2013. randomChange: 100
  2014. locked: 0
  2015. isFixed: 0
  2016. minValue: 3
  2017. maxValue: 8
  2018. fold: 1
  2019. maximumRandomAttributes: 1
  2020. enchantments:
  2021. craftMaterials: []
  2022. actions:
  2023. - attck_sword
  2024. - equip
  2025. tags:
  2026. - MainHand
  2027. customData: []
  2028. lastUseTimeStamp: 0
  2029. restrictionKey:
  2030. restrictionValue: 0
  2031. socketingSlots: 0
  2032. socketedItems:
  2033. socketingTag:
  2034. - Red
  2035. - Yellow
  2036. fold: 0
  2037. - uid: 33
  2038. name: Great Axe
  2039. description: Great sword can destroy anything. {stun}% chance to stun enemy on
  2040. hit.
  2041. type: 1
  2042. icon: {fileID: 2800000, guid: 13730909590cd7a4d9043c5006a3b166, type: 3}
  2043. quality: 2
  2044. tradeable: 1
  2045. deletable: 1
  2046. useable: 1
  2047. consumable: 0
  2048. visible: 1
  2049. price: 1200
  2050. currency: 0
  2051. maxiumStack: 1
  2052. upgradeLevel: 0
  2053. weight: 3
  2054. dropRates: 3
  2055. favorite: 0
  2056. attributes:
  2057. - key: atk
  2058. name: Attack
  2059. value: 30
  2060. stringValue: 0
  2061. upgradeIncrement: 2
  2062. coreStats: 0
  2063. visible: 1
  2064. visibleInStatsPanel: 1
  2065. displayFormat: 0
  2066. suffixes:
  2067. compareInfo: 1
  2068. randomChange: 100
  2069. locked: 0
  2070. isFixed: 0
  2071. minValue: 30
  2072. maxValue: 50
  2073. fold: 1
  2074. - key: crit
  2075. name: Critical Chance
  2076. value: 10
  2077. stringValue: 0
  2078. upgradeIncrement: 3
  2079. coreStats: 0
  2080. visible: 1
  2081. visibleInStatsPanel: 1
  2082. displayFormat: 0
  2083. suffixes: '%'
  2084. compareInfo: 1
  2085. randomChange: 100
  2086. locked: 0
  2087. isFixed: 0
  2088. minValue: 10
  2089. maxValue: 20
  2090. fold: 1
  2091. - key: steal
  2092. name: Health Steal
  2093. value: 5
  2094. stringValue: 0
  2095. upgradeIncrement: 1
  2096. coreStats: 0
  2097. visible: 1
  2098. visibleInStatsPanel: 1
  2099. displayFormat: 0
  2100. suffixes:
  2101. compareInfo: 1
  2102. randomChange: 39
  2103. locked: 0
  2104. isFixed: 0
  2105. minValue: 5
  2106. maxValue: 15
  2107. fold: 1
  2108. - key: stun
  2109. name: Stun Chance
  2110. value: 10
  2111. stringValue: 0
  2112. upgradeIncrement: 1
  2113. coreStats: 0
  2114. visible: 0
  2115. visibleInStatsPanel: 0
  2116. displayFormat: 0
  2117. suffixes:
  2118. compareInfo: 0
  2119. randomChange: 100
  2120. locked: 0
  2121. isFixed: 1
  2122. minValue: 10
  2123. maxValue: 10
  2124. fold: 1
  2125. maximumRandomAttributes: 1
  2126. enchantments:
  2127. craftMaterials:
  2128. - {x: 6, y: 2}
  2129. - {x: 8, y: 5}
  2130. - {x: 15, y: 3}
  2131. actions:
  2132. - attck_axe
  2133. - equip
  2134. tags:
  2135. - MainHand
  2136. - TwoHanded
  2137. customData: []
  2138. lastUseTimeStamp: 0
  2139. restrictionKey:
  2140. restrictionValue: 0
  2141. socketingSlots: 0
  2142. socketedItems:
  2143. socketingTag:
  2144. - Red
  2145. - Yellow
  2146. fold: 0
  2147. - uid: 34
  2148. name: Knight's Sword
  2149. description: Fine heavy sword. {stun}% chance to stun enemy on hit.
  2150. type: 1
  2151. icon: {fileID: 2800000, guid: 2ed3c772715ec614d83edd38efbf51c9, type: 3}
  2152. quality: 2
  2153. tradeable: 1
  2154. deletable: 1
  2155. useable: 1
  2156. consumable: 0
  2157. visible: 1
  2158. price: 400
  2159. currency: 0
  2160. maxiumStack: 1
  2161. upgradeLevel: 0
  2162. weight: 1.5
  2163. dropRates: 2
  2164. favorite: 0
  2165. attributes:
  2166. - key: atk
  2167. name: Attack
  2168. value: 20
  2169. stringValue: 0
  2170. upgradeIncrement: 2
  2171. coreStats: 0
  2172. visible: 1
  2173. visibleInStatsPanel: 1
  2174. displayFormat: 0
  2175. suffixes:
  2176. compareInfo: 1
  2177. randomChange: 100
  2178. locked: 0
  2179. isFixed: 0
  2180. minValue: 20
  2181. maxValue: 30
  2182. fold: 1
  2183. - key: crit
  2184. name: Critical Chance
  2185. value: 5
  2186. stringValue: 0
  2187. upgradeIncrement: 3
  2188. coreStats: 0
  2189. visible: 1
  2190. visibleInStatsPanel: 1
  2191. displayFormat: 0
  2192. suffixes: '%'
  2193. compareInfo: 1
  2194. randomChange: 100
  2195. locked: 0
  2196. isFixed: 0
  2197. minValue: 5
  2198. maxValue: 20
  2199. fold: 1
  2200. - key: stun
  2201. name: Stun Chance
  2202. value: 3
  2203. stringValue: 0
  2204. upgradeIncrement: 1
  2205. coreStats: 0
  2206. visible: 0
  2207. visibleInStatsPanel: 0
  2208. displayFormat: 0
  2209. suffixes:
  2210. compareInfo: 0
  2211. randomChange: 100
  2212. locked: 0
  2213. isFixed: 1
  2214. minValue: 3
  2215. maxValue: 3
  2216. fold: 1
  2217. maximumRandomAttributes: 1
  2218. enchantments:
  2219. craftMaterials: []
  2220. actions:
  2221. - attck_sword
  2222. - equip
  2223. tags:
  2224. - MainHand
  2225. customData: []
  2226. lastUseTimeStamp: 0
  2227. restrictionKey:
  2228. restrictionValue: 0
  2229. socketingSlots: 0
  2230. socketedItems:
  2231. socketingTag:
  2232. - Red
  2233. - Yellow
  2234. fold: 0
  2235. - uid: 35
  2236. name: King's Sword
  2237. description: Burning sword with ultimate power. {stun}% chance to stun enemy
  2238. on hit.
  2239. type: 1
  2240. icon: {fileID: 2800000, guid: 36eb3bf59f691dc47ae8087e69bdcc95, type: 3}
  2241. quality: 3
  2242. tradeable: 1
  2243. deletable: 1
  2244. useable: 1
  2245. consumable: 0
  2246. visible: 1
  2247. price: 3000
  2248. currency: 0
  2249. maxiumStack: 1
  2250. upgradeLevel: 0
  2251. weight: 3
  2252. dropRates: 1
  2253. favorite: 0
  2254. attributes:
  2255. - key: atk
  2256. name: Attack
  2257. value: 40
  2258. stringValue: 0
  2259. upgradeIncrement: 2
  2260. coreStats: 0
  2261. visible: 1
  2262. visibleInStatsPanel: 1
  2263. displayFormat: 0
  2264. suffixes:
  2265. compareInfo: 1
  2266. randomChange: 50
  2267. locked: 0
  2268. isFixed: 0
  2269. minValue: 40
  2270. maxValue: 60
  2271. fold: 1
  2272. - key: crit
  2273. name: Critical Chance
  2274. value: 20
  2275. stringValue: 0
  2276. upgradeIncrement: 3
  2277. coreStats: 0
  2278. visible: 1
  2279. visibleInStatsPanel: 1
  2280. displayFormat: 0
  2281. suffixes: '%'
  2282. compareInfo: 1
  2283. randomChange: 100
  2284. locked: 0
  2285. isFixed: 0
  2286. minValue: 20
  2287. maxValue: 40
  2288. fold: 1
  2289. - key: steal
  2290. name: Health Steal
  2291. value: 5
  2292. stringValue: 0
  2293. upgradeIncrement: 1
  2294. coreStats: 0
  2295. visible: 1
  2296. visibleInStatsPanel: 1
  2297. displayFormat: 0
  2298. suffixes:
  2299. compareInfo: 1
  2300. randomChange: 40
  2301. locked: 0
  2302. isFixed: 0
  2303. minValue: 5
  2304. maxValue: 15
  2305. fold: 1
  2306. - key: stun
  2307. name: Stun Chance
  2308. value: 5
  2309. stringValue: 0
  2310. upgradeIncrement: 1
  2311. coreStats: 0
  2312. visible: 0
  2313. visibleInStatsPanel: 0
  2314. displayFormat: 0
  2315. suffixes:
  2316. compareInfo: 0
  2317. randomChange: 100
  2318. locked: 0
  2319. isFixed: 1
  2320. minValue: 5
  2321. maxValue: 5
  2322. fold: 1
  2323. maximumRandomAttributes: 1
  2324. enchantments:
  2325. craftMaterials: []
  2326. actions:
  2327. - attck_sword
  2328. - equip
  2329. tags:
  2330. - MainHand
  2331. - TwoHanded
  2332. customData:
  2333. - key: Custom0
  2334. value: {fileID: 8300000, guid: 60c2d9d57ef93744c81f2dcf1fd8feb3, type: 3}
  2335. - key: Custom1
  2336. value: {fileID: 2800000, guid: 6ba6000225e569049a0d6aab3e5508d7, type: 3}
  2337. lastUseTimeStamp: 0
  2338. restrictionKey: lvl
  2339. restrictionValue: 5
  2340. socketingSlots: 0
  2341. socketedItems:
  2342. socketingTag:
  2343. - Red
  2344. - Yellow
  2345. fold: 0
  2346. - uid: 36
  2347. name: Leather Ring
  2348. description: Simple ring made with leather.
  2349. type: 1
  2350. icon: {fileID: 2800000, guid: c0825c24e7e046d4ebcae22d1a18c117, type: 3}
  2351. quality: 0
  2352. tradeable: 1
  2353. deletable: 1
  2354. useable: 1
  2355. consumable: 0
  2356. visible: 1
  2357. price: 500
  2358. currency: 0
  2359. maxiumStack: 1
  2360. upgradeLevel: 0
  2361. weight: 0.3
  2362. dropRates: 10
  2363. favorite: 0
  2364. attributes:
  2365. - key: resist
  2366. name: Resistance
  2367. value: 0
  2368. stringValue: 0
  2369. upgradeIncrement: 2
  2370. coreStats: 0
  2371. visible: 1
  2372. visibleInStatsPanel: 1
  2373. displayFormat: 0
  2374. suffixes:
  2375. compareInfo: 1
  2376. randomChange: 100
  2377. locked: 0
  2378. isFixed: 0
  2379. minValue: 5
  2380. maxValue: 10
  2381. fold: 1
  2382. - key: luck
  2383. name: Luck
  2384. value: 5
  2385. stringValue: 0
  2386. upgradeIncrement: 1
  2387. coreStats: 0
  2388. visible: 1
  2389. visibleInStatsPanel: 1
  2390. displayFormat: 0
  2391. suffixes:
  2392. compareInfo: 1
  2393. randomChange: 100
  2394. locked: 0
  2395. isFixed: 1
  2396. minValue: 5
  2397. maxValue: 5
  2398. fold: 1
  2399. - key: crit
  2400. name: Critical Chance
  2401. value: 5
  2402. stringValue: 0
  2403. upgradeIncrement: 3
  2404. coreStats: 0
  2405. visible: 1
  2406. visibleInStatsPanel: 1
  2407. displayFormat: 0
  2408. suffixes: '%'
  2409. compareInfo: 1
  2410. randomChange: 100
  2411. locked: 0
  2412. isFixed: 1
  2413. minValue: 5
  2414. maxValue: 5
  2415. fold: 1
  2416. maximumRandomAttributes: 1
  2417. enchantments:
  2418. craftMaterials: []
  2419. actions:
  2420. - equip
  2421. tags:
  2422. - Ring
  2423. customData: []
  2424. lastUseTimeStamp: 0
  2425. restrictionKey:
  2426. restrictionValue: 0
  2427. socketingSlots: 0
  2428. socketedItems:
  2429. socketingTag:
  2430. - Red
  2431. - Yellow
  2432. - Green
  2433. - Blue
  2434. fold: 0
  2435. - uid: 37
  2436. name: Copper Ring
  2437. description: Nice copper ring with magical power.
  2438. type: 1
  2439. icon: {fileID: 2800000, guid: 6f912f0fe9e80f94fbd8a6fcfa21025a, type: 3}
  2440. quality: 1
  2441. tradeable: 1
  2442. deletable: 1
  2443. useable: 1
  2444. consumable: 0
  2445. visible: 1
  2446. price: 200
  2447. currency: 0
  2448. maxiumStack: 1
  2449. upgradeLevel: 0
  2450. weight: 0.2
  2451. dropRates: 8
  2452. favorite: 0
  2453. attributes:
  2454. - key: resist
  2455. name: Resistance
  2456. value: 10
  2457. stringValue: 0
  2458. upgradeIncrement: 2
  2459. coreStats: 0
  2460. visible: 1
  2461. visibleInStatsPanel: 1
  2462. displayFormat: 0
  2463. suffixes:
  2464. compareInfo: 1
  2465. randomChange: 100
  2466. locked: 0
  2467. isFixed: 0
  2468. minValue: 5
  2469. maxValue: 15
  2470. fold: 1
  2471. - key: agi
  2472. name: Agility
  2473. value: 2
  2474. stringValue: 0
  2475. upgradeIncrement: 1
  2476. coreStats: 0
  2477. visible: 1
  2478. visibleInStatsPanel: 1
  2479. displayFormat: 0
  2480. suffixes:
  2481. compareInfo: 1
  2482. randomChange: 100
  2483. locked: 0
  2484. isFixed: 1
  2485. minValue: 2
  2486. maxValue: 2
  2487. fold: 1
  2488. maximumRandomAttributes: 1
  2489. enchantments:
  2490. craftMaterials: []
  2491. actions:
  2492. - equip
  2493. tags:
  2494. - Ring
  2495. customData: []
  2496. lastUseTimeStamp: 0
  2497. restrictionKey:
  2498. restrictionValue: 0
  2499. socketingSlots: 0
  2500. socketedItems:
  2501. socketingTag:
  2502. - Red
  2503. - Yellow
  2504. - Green
  2505. - Blue
  2506. fold: 0
  2507. - uid: 38
  2508. name: Ancient Ring
  2509. description: Legendary magic ring.
  2510. type: 1
  2511. icon: {fileID: 2800000, guid: 9db53c3ed6c613243be0f3d396ed11e2, type: 3}
  2512. quality: 3
  2513. tradeable: 1
  2514. deletable: 1
  2515. useable: 1
  2516. consumable: 0
  2517. visible: 1
  2518. price: 400
  2519. currency: 0
  2520. maxiumStack: 1
  2521. upgradeLevel: 0
  2522. weight: 0.2
  2523. dropRates: 5
  2524. favorite: 0
  2525. attributes:
  2526. - key: atk
  2527. name: Attack
  2528. value: 10
  2529. stringValue: 0
  2530. upgradeIncrement: 2
  2531. coreStats: 0
  2532. visible: 1
  2533. visibleInStatsPanel: 1
  2534. displayFormat: 0
  2535. suffixes:
  2536. compareInfo: 1
  2537. randomChange: 100
  2538. locked: 0
  2539. isFixed: 0
  2540. minValue: 5
  2541. maxValue: 15
  2542. fold: 1
  2543. - key: crit
  2544. name: Critical Chance
  2545. value: 15
  2546. stringValue: 0
  2547. upgradeIncrement: 3
  2548. coreStats: 0
  2549. visible: 1
  2550. visibleInStatsPanel: 1
  2551. displayFormat: 0
  2552. suffixes: '%'
  2553. compareInfo: 1
  2554. randomChange: 100
  2555. locked: 0
  2556. isFixed: 1
  2557. minValue: 15
  2558. maxValue: 15
  2559. fold: 1
  2560. - key: steal
  2561. name: Health Steal
  2562. value: 0
  2563. stringValue: 0
  2564. upgradeIncrement: 1
  2565. coreStats: 0
  2566. visible: 1
  2567. visibleInStatsPanel: 1
  2568. displayFormat: 0
  2569. suffixes:
  2570. compareInfo: 1
  2571. randomChange: 40
  2572. locked: 0
  2573. isFixed: 0
  2574. minValue: 5
  2575. maxValue: 10
  2576. fold: 1
  2577. maximumRandomAttributes: 1
  2578. enchantments:
  2579. craftMaterials: []
  2580. actions:
  2581. - equip
  2582. tags:
  2583. - Ring
  2584. customData: []
  2585. lastUseTimeStamp: 0
  2586. restrictionKey:
  2587. restrictionValue: 0
  2588. socketingSlots: 0
  2589. socketedItems:
  2590. socketingTag:
  2591. - Red
  2592. - Yellow
  2593. - Green
  2594. - Blue
  2595. fold: 0
  2596. - uid: 39
  2597. name: Necklace of Fire
  2598. description: Necklace with fire power.
  2599. type: 1
  2600. icon: {fileID: 2800000, guid: 744b27e3ef39fb546893e328ce6744b6, type: 3}
  2601. quality: 1
  2602. tradeable: 1
  2603. deletable: 1
  2604. useable: 1
  2605. consumable: 0
  2606. visible: 1
  2607. price: 200
  2608. currency: 0
  2609. maxiumStack: 1
  2610. upgradeLevel: 0
  2611. weight: 0.2
  2612. dropRates: 5
  2613. favorite: 0
  2614. attributes:
  2615. - key: hp
  2616. name: Health
  2617. value: 50
  2618. stringValue: 0
  2619. upgradeIncrement: 20
  2620. coreStats: 0
  2621. visible: 1
  2622. visibleInStatsPanel: 1
  2623. displayFormat: 0
  2624. suffixes:
  2625. compareInfo: 1
  2626. randomChange: 100
  2627. locked: 0
  2628. isFixed: 1
  2629. minValue: 50
  2630. maxValue: 50
  2631. fold: 1
  2632. - key: resist
  2633. name: Resistance
  2634. value: 10
  2635. stringValue: 0
  2636. upgradeIncrement: 2
  2637. coreStats: 0
  2638. visible: 1
  2639. visibleInStatsPanel: 1
  2640. displayFormat: 0
  2641. suffixes:
  2642. compareInfo: 1
  2643. randomChange: 100
  2644. locked: 0
  2645. isFixed: 0
  2646. minValue: 5
  2647. maxValue: 15
  2648. fold: 1
  2649. maximumRandomAttributes: 1
  2650. enchantments:
  2651. craftMaterials: []
  2652. actions:
  2653. - equip
  2654. tags:
  2655. - Necklace
  2656. customData: []
  2657. lastUseTimeStamp: 0
  2658. restrictionKey:
  2659. restrictionValue: 0
  2660. socketingSlots: 0
  2661. socketedItems:
  2662. socketingTag:
  2663. - Red
  2664. - Yellow
  2665. - Green
  2666. - Blue
  2667. fold: 0
  2668. - uid: 40
  2669. name: Blue Gem Necklace
  2670. description: Beauftiful necklace with blue gem.
  2671. type: 1
  2672. icon: {fileID: 2800000, guid: e1e1fe62a6c0cea4e8f8334acf0b2edf, type: 3}
  2673. quality: 2
  2674. tradeable: 1
  2675. deletable: 1
  2676. useable: 1
  2677. consumable: 0
  2678. visible: 1
  2679. price: 400
  2680. currency: 0
  2681. maxiumStack: 1
  2682. upgradeLevel: 0
  2683. weight: 0.2
  2684. dropRates: 3
  2685. favorite: 0
  2686. attributes:
  2687. - key: spcost
  2688. name: SP Cost
  2689. value: 50
  2690. stringValue: 0
  2691. upgradeIncrement: -1
  2692. coreStats: 1
  2693. visible: 1
  2694. visibleInStatsPanel: 0
  2695. displayFormat: 1
  2696. suffixes:
  2697. compareInfo: 0
  2698. randomChange: 100
  2699. locked: 0
  2700. isFixed: 1
  2701. minValue: 50
  2702. maxValue: 50
  2703. fold: 1
  2704. - key: crit
  2705. name: Critical Chance
  2706. value: 10
  2707. stringValue: 0
  2708. upgradeIncrement: 3
  2709. coreStats: 0
  2710. visible: 1
  2711. visibleInStatsPanel: 1
  2712. displayFormat: 0
  2713. suffixes: '%'
  2714. compareInfo: 1
  2715. randomChange: 100
  2716. locked: 0
  2717. isFixed: 0
  2718. minValue: 5
  2719. maxValue: 15
  2720. fold: 1
  2721. maximumRandomAttributes: 1
  2722. enchantments:
  2723. craftMaterials: []
  2724. actions:
  2725. - equip
  2726. tags:
  2727. - Necklace
  2728. customData: []
  2729. lastUseTimeStamp: 0
  2730. restrictionKey:
  2731. restrictionValue: 0
  2732. socketingSlots: 0
  2733. socketedItems:
  2734. socketingTag:
  2735. - Red
  2736. - Yellow
  2737. - Green
  2738. - Blue
  2739. fold: 0
  2740. - uid: 41
  2741. name: Red Gem Necklace
  2742. description: Beauftiful necklace with red gem.
  2743. type: 1
  2744. icon: {fileID: 2800000, guid: 242472df2a0312149be2f7fdae1e4ad2, type: 3}
  2745. quality: 3
  2746. tradeable: 1
  2747. deletable: 1
  2748. useable: 1
  2749. consumable: 0
  2750. visible: 1
  2751. price: 400
  2752. currency: 0
  2753. maxiumStack: 1
  2754. upgradeLevel: 0
  2755. weight: 0.2
  2756. dropRates: 2
  2757. favorite: 0
  2758. attributes:
  2759. - key: atk
  2760. name: Attack
  2761. value: 15
  2762. stringValue: 0
  2763. upgradeIncrement: 2
  2764. coreStats: 0
  2765. visible: 1
  2766. visibleInStatsPanel: 1
  2767. displayFormat: 0
  2768. suffixes:
  2769. compareInfo: 1
  2770. randomChange: 100
  2771. locked: 0
  2772. isFixed: 1
  2773. minValue: 15
  2774. maxValue: 15
  2775. fold: 1
  2776. - key: crit
  2777. name: Critical Chance
  2778. value: 15
  2779. stringValue: 0
  2780. upgradeIncrement: 3
  2781. coreStats: 0
  2782. visible: 1
  2783. visibleInStatsPanel: 1
  2784. displayFormat: 0
  2785. suffixes: '%'
  2786. compareInfo: 1
  2787. randomChange: 100
  2788. locked: 0
  2789. isFixed: 0
  2790. minValue: 10
  2791. maxValue: 20
  2792. fold: 1
  2793. - key: steal
  2794. name: Health Steal
  2795. value: 0
  2796. stringValue: 0
  2797. upgradeIncrement: 1
  2798. coreStats: 0
  2799. visible: 1
  2800. visibleInStatsPanel: 1
  2801. displayFormat: 0
  2802. suffixes:
  2803. compareInfo: 1
  2804. randomChange: 41
  2805. locked: 0
  2806. isFixed: 0
  2807. minValue: 5
  2808. maxValue: 15
  2809. fold: 1
  2810. maximumRandomAttributes: 1
  2811. enchantments:
  2812. craftMaterials: []
  2813. actions:
  2814. - equip
  2815. tags:
  2816. - Necklace
  2817. customData: []
  2818. lastUseTimeStamp: 0
  2819. restrictionKey:
  2820. restrictionValue: 0
  2821. socketingSlots: 0
  2822. socketedItems:
  2823. socketingTag:
  2824. - Red
  2825. - Yellow
  2826. - Green
  2827. - Blue
  2828. fold: 0
  2829. - uid: 42
  2830. name: Leather Armor
  2831. description: Leather armor to protect the torso.
  2832. type: 1
  2833. icon: {fileID: 2800000, guid: 4676644fbba9425489342ff7ec2e8907, type: 3}
  2834. quality: 0
  2835. tradeable: 1
  2836. deletable: 1
  2837. useable: 1
  2838. consumable: 0
  2839. visible: 1
  2840. price: 200
  2841. currency: 0
  2842. maxiumStack: 1
  2843. upgradeLevel: 0
  2844. weight: 3
  2845. dropRates: 15
  2846. favorite: 0
  2847. attributes:
  2848. - key: def
  2849. name: Defence
  2850. value: 20
  2851. stringValue: 0
  2852. upgradeIncrement: 2
  2853. coreStats: 0
  2854. visible: 1
  2855. visibleInStatsPanel: 1
  2856. displayFormat: 0
  2857. suffixes:
  2858. compareInfo: 1
  2859. randomChange: 100
  2860. locked: 0
  2861. isFixed: 1
  2862. minValue: 20
  2863. maxValue: 20
  2864. fold: 1
  2865. - key: hp
  2866. name: Health
  2867. value: 5
  2868. stringValue: 0
  2869. upgradeIncrement: 20
  2870. coreStats: 0
  2871. visible: 1
  2872. visibleInStatsPanel: 1
  2873. displayFormat: 0
  2874. suffixes:
  2875. compareInfo: 1
  2876. randomChange: 100
  2877. locked: 0
  2878. isFixed: 0
  2879. minValue: 2
  2880. maxValue: 10
  2881. fold: 1
  2882. maximumRandomAttributes: 1
  2883. enchantments:
  2884. craftMaterials: []
  2885. actions:
  2886. - equip
  2887. tags:
  2888. - Torso
  2889. customData: []
  2890. lastUseTimeStamp: 0
  2891. restrictionKey:
  2892. restrictionValue: 0
  2893. socketingSlots: 0
  2894. socketedItems:
  2895. socketingTag:
  2896. - Green
  2897. - Blue
  2898. fold: 0
  2899. - uid: 43
  2900. name: Plate Armor
  2901. description: Plate armor to protect the torso.
  2902. type: 1
  2903. icon: {fileID: 2800000, guid: c8f5ef940f80df3489b447e201e43aa6, type: 3}
  2904. quality: 1
  2905. tradeable: 1
  2906. deletable: 1
  2907. useable: 1
  2908. consumable: 0
  2909. visible: 1
  2910. price: 600
  2911. currency: 0
  2912. maxiumStack: 1
  2913. upgradeLevel: 0
  2914. weight: 5
  2915. dropRates: 8
  2916. favorite: 0
  2917. attributes:
  2918. - key: def
  2919. name: Defence
  2920. value: 45
  2921. stringValue: 0
  2922. upgradeIncrement: 2
  2923. coreStats: 0
  2924. visible: 1
  2925. visibleInStatsPanel: 1
  2926. displayFormat: 0
  2927. suffixes:
  2928. compareInfo: 1
  2929. randomChange: 100
  2930. locked: 0
  2931. isFixed: 0
  2932. minValue: 30
  2933. maxValue: 55
  2934. fold: 1
  2935. - key: hp
  2936. name: Health
  2937. value: 15
  2938. stringValue: 0
  2939. upgradeIncrement: 20
  2940. coreStats: 0
  2941. visible: 1
  2942. visibleInStatsPanel: 1
  2943. displayFormat: 0
  2944. suffixes:
  2945. compareInfo: 1
  2946. randomChange: 100
  2947. locked: 0
  2948. isFixed: 0
  2949. minValue: 5
  2950. maxValue: 20
  2951. fold: 1
  2952. - key: luck
  2953. name: Luck
  2954. value: 0
  2955. stringValue: 0
  2956. upgradeIncrement: 1
  2957. coreStats: 0
  2958. visible: 1
  2959. visibleInStatsPanel: 1
  2960. displayFormat: 0
  2961. suffixes:
  2962. compareInfo: 1
  2963. randomChange: 34
  2964. locked: 0
  2965. isFixed: 0
  2966. minValue: 5
  2967. maxValue: 10
  2968. fold: 1
  2969. maximumRandomAttributes: 3
  2970. enchantments:
  2971. craftMaterials:
  2972. - {x: 7, y: 5}
  2973. - {x: 8, y: 3}
  2974. - {x: 14, y: 2}
  2975. actions:
  2976. - equip
  2977. tags:
  2978. - Torso
  2979. customData: []
  2980. lastUseTimeStamp: 0
  2981. restrictionKey:
  2982. restrictionValue: 0
  2983. socketingSlots: 0
  2984. socketedItems:
  2985. socketingTag:
  2986. - Green
  2987. - Blue
  2988. fold: 0
  2989. - uid: 44
  2990. name: Knight's Armor
  2991. description: Knight's plate armor to protect the torso.
  2992. type: 1
  2993. icon: {fileID: 2800000, guid: cc108c3e4d9e69d479a8ff8f41d25649, type: 3}
  2994. quality: 1
  2995. tradeable: 1
  2996. deletable: 1
  2997. useable: 1
  2998. consumable: 0
  2999. visible: 1
  3000. price: 1200
  3001. currency: 0
  3002. maxiumStack: 1
  3003. upgradeLevel: 0
  3004. weight: 6.5
  3005. dropRates: 4
  3006. favorite: 0
  3007. attributes:
  3008. - key: def
  3009. name: Defence
  3010. value: 60
  3011. stringValue: 0
  3012. upgradeIncrement: 2
  3013. coreStats: 0
  3014. visible: 1
  3015. visibleInStatsPanel: 1
  3016. displayFormat: 0
  3017. suffixes:
  3018. compareInfo: 1
  3019. randomChange: 100
  3020. locked: 0
  3021. isFixed: 1
  3022. minValue: 60
  3023. maxValue: 60
  3024. fold: 1
  3025. - key: hp
  3026. name: Health
  3027. value: 30
  3028. stringValue: 0
  3029. upgradeIncrement: 20
  3030. coreStats: 0
  3031. visible: 1
  3032. visibleInStatsPanel: 1
  3033. displayFormat: 0
  3034. suffixes:
  3035. compareInfo: 1
  3036. randomChange: 100
  3037. locked: 0
  3038. isFixed: 0
  3039. minValue: 20
  3040. maxValue: 40
  3041. fold: 1
  3042. maximumRandomAttributes: 1
  3043. enchantments:
  3044. craftMaterials: []
  3045. actions:
  3046. - equip
  3047. tags:
  3048. - Torso
  3049. customData: []
  3050. lastUseTimeStamp: 0
  3051. restrictionKey:
  3052. restrictionValue: 0
  3053. socketingSlots: 0
  3054. socketedItems:
  3055. socketingTag:
  3056. - Green
  3057. - Blue
  3058. fold: 0
  3059. - uid: 45
  3060. name: Leather Boots
  3061. description: Light weight leather boots.
  3062. type: 1
  3063. icon: {fileID: 2800000, guid: 553403acf75896e4aac12579e60921eb, type: 3}
  3064. quality: 0
  3065. tradeable: 1
  3066. deletable: 1
  3067. useable: 1
  3068. consumable: 0
  3069. visible: 1
  3070. price: 100
  3071. currency: 0
  3072. maxiumStack: 1
  3073. upgradeLevel: 0
  3074. weight: 0.8
  3075. dropRates: 10
  3076. favorite: 0
  3077. attributes:
  3078. - key: def
  3079. name: Defence
  3080. value: 5
  3081. stringValue: 0
  3082. upgradeIncrement: 2
  3083. coreStats: 0
  3084. visible: 1
  3085. visibleInStatsPanel: 1
  3086. displayFormat: 0
  3087. suffixes:
  3088. compareInfo: 1
  3089. randomChange: 100
  3090. locked: 0
  3091. isFixed: 1
  3092. minValue: 5
  3093. maxValue: 5
  3094. fold: 1
  3095. - key: agi
  3096. name: Agility
  3097. value: 10
  3098. stringValue: 0
  3099. upgradeIncrement: 1
  3100. coreStats: 0
  3101. visible: 1
  3102. visibleInStatsPanel: 1
  3103. displayFormat: 0
  3104. suffixes:
  3105. compareInfo: 1
  3106. randomChange: 100
  3107. locked: 0
  3108. isFixed: 0
  3109. minValue: 5
  3110. maxValue: 15
  3111. fold: 1
  3112. maximumRandomAttributes: 1
  3113. enchantments:
  3114. craftMaterials: []
  3115. actions:
  3116. - equip
  3117. tags:
  3118. - Boots
  3119. customData: []
  3120. lastUseTimeStamp: 0
  3121. restrictionKey:
  3122. restrictionValue: 0
  3123. socketingSlots: 0
  3124. socketedItems:
  3125. socketingTag:
  3126. - Green
  3127. - Blue
  3128. fold: 0
  3129. - uid: 46
  3130. name: Guard's Boots
  3131. description: Leather boots with metal pieces.
  3132. type: 1
  3133. icon: {fileID: 2800000, guid: b722c8059bd0bfe45a14f027e239728c, type: 3}
  3134. quality: 1
  3135. tradeable: 1
  3136. deletable: 1
  3137. useable: 1
  3138. consumable: 0
  3139. visible: 1
  3140. price: 300
  3141. currency: 0
  3142. maxiumStack: 1
  3143. upgradeLevel: 0
  3144. weight: 1.2
  3145. dropRates: 6
  3146. favorite: 0
  3147. attributes:
  3148. - key: def
  3149. name: Defence
  3150. value: 10
  3151. stringValue: 0
  3152. upgradeIncrement: 2
  3153. coreStats: 0
  3154. visible: 1
  3155. visibleInStatsPanel: 1
  3156. displayFormat: 0
  3157. suffixes:
  3158. compareInfo: 1
  3159. randomChange: 100
  3160. locked: 0
  3161. isFixed: 1
  3162. minValue: 10
  3163. maxValue: 10
  3164. fold: 1
  3165. - key: agi
  3166. name: Agility
  3167. value: 7
  3168. stringValue: 0
  3169. upgradeIncrement: 1
  3170. coreStats: 0
  3171. visible: 1
  3172. visibleInStatsPanel: 1
  3173. displayFormat: 0
  3174. suffixes:
  3175. compareInfo: 1
  3176. randomChange: 100
  3177. locked: 0
  3178. isFixed: 0
  3179. minValue: 3
  3180. maxValue: 9
  3181. fold: 1
  3182. maximumRandomAttributes: 1
  3183. enchantments:
  3184. craftMaterials: []
  3185. actions:
  3186. - equip
  3187. tags:
  3188. - Boots
  3189. customData: []
  3190. lastUseTimeStamp: 0
  3191. restrictionKey:
  3192. restrictionValue: 0
  3193. socketingSlots: 0
  3194. socketedItems:
  3195. socketingTag:
  3196. - Green
  3197. - Blue
  3198. fold: 0
  3199. - uid: 47
  3200. name: Knight's Boots
  3201. description: Knight's plate armor boots.
  3202. type: 1
  3203. icon: {fileID: 2800000, guid: f1b07cc1710676646a02476d9dff5ff5, type: 3}
  3204. quality: 2
  3205. tradeable: 1
  3206. deletable: 1
  3207. useable: 1
  3208. consumable: 0
  3209. visible: 1
  3210. price: 800
  3211. currency: 0
  3212. maxiumStack: 1
  3213. upgradeLevel: 0
  3214. weight: 2
  3215. dropRates: 3
  3216. favorite: 0
  3217. attributes:
  3218. - key: def
  3219. name: Defence
  3220. value: 15
  3221. stringValue: 0
  3222. upgradeIncrement: 2
  3223. coreStats: 0
  3224. visible: 1
  3225. visibleInStatsPanel: 1
  3226. displayFormat: 0
  3227. suffixes:
  3228. compareInfo: 1
  3229. randomChange: 100
  3230. locked: 0
  3231. isFixed: 1
  3232. minValue: 15
  3233. maxValue: 15
  3234. fold: 1
  3235. - key: agi
  3236. name: Agility
  3237. value: 5
  3238. stringValue: 0
  3239. upgradeIncrement: 1
  3240. coreStats: 0
  3241. visible: 1
  3242. visibleInStatsPanel: 1
  3243. displayFormat: 0
  3244. suffixes:
  3245. compareInfo: 1
  3246. randomChange: 100
  3247. locked: 0
  3248. isFixed: 0
  3249. minValue: 3
  3250. maxValue: 10
  3251. fold: 1
  3252. maximumRandomAttributes: 1
  3253. enchantments:
  3254. craftMaterials: []
  3255. actions:
  3256. - equip
  3257. tags:
  3258. - Boots
  3259. customData: []
  3260. lastUseTimeStamp: 0
  3261. restrictionKey:
  3262. restrictionValue: 0
  3263. socketingSlots: 0
  3264. socketedItems:
  3265. socketingTag:
  3266. - Green
  3267. - Blue
  3268. fold: 0
  3269. - uid: 48
  3270. name: Dark Hoods
  3271. description: Dark hoods with golden embroider.
  3272. type: 1
  3273. icon: {fileID: 2800000, guid: da51a00b1fe50954091cfb2a8d7ef1d3, type: 3}
  3274. quality: 1
  3275. tradeable: 1
  3276. deletable: 1
  3277. useable: 1
  3278. consumable: 0
  3279. visible: 1
  3280. price: 400
  3281. currency: 0
  3282. maxiumStack: 1
  3283. upgradeLevel: 0
  3284. weight: 0.3
  3285. dropRates: 8
  3286. favorite: 0
  3287. attributes:
  3288. - key: resist
  3289. name: Resistance
  3290. value: 20
  3291. stringValue: 0
  3292. upgradeIncrement: 2
  3293. coreStats: 0
  3294. visible: 1
  3295. visibleInStatsPanel: 1
  3296. displayFormat: 0
  3297. suffixes:
  3298. compareInfo: 1
  3299. randomChange: 100
  3300. locked: 0
  3301. isFixed: 0
  3302. minValue: 10
  3303. maxValue: 30
  3304. fold: 1
  3305. - key: luck
  3306. name: Luck
  3307. value: 5
  3308. stringValue: 0
  3309. upgradeIncrement: 1
  3310. coreStats: 0
  3311. visible: 1
  3312. visibleInStatsPanel: 1
  3313. displayFormat: 0
  3314. suffixes:
  3315. compareInfo: 1
  3316. randomChange: 100
  3317. locked: 0
  3318. isFixed: 1
  3319. minValue: 5
  3320. maxValue: 5
  3321. fold: 1
  3322. maximumRandomAttributes: 1
  3323. enchantments:
  3324. craftMaterials: []
  3325. actions:
  3326. - equip
  3327. tags:
  3328. - Cape
  3329. customData: []
  3330. lastUseTimeStamp: 0
  3331. restrictionKey:
  3332. restrictionValue: 0
  3333. socketingSlots: 0
  3334. socketedItems:
  3335. socketingTag:
  3336. - Green
  3337. - Blue
  3338. fold: 0
  3339. - uid: 49
  3340. name: Knight's Cape
  3341. description: Heavy red cape with armor pieces.
  3342. type: 1
  3343. icon: {fileID: 2800000, guid: 7555de2df5b8b424e81d7c9c284d4e65, type: 3}
  3344. quality: 3
  3345. tradeable: 1
  3346. deletable: 1
  3347. useable: 1
  3348. consumable: 0
  3349. visible: 1
  3350. price: 900
  3351. currency: 0
  3352. maxiumStack: 1
  3353. upgradeLevel: 0
  3354. weight: 1.2
  3355. dropRates: 5
  3356. favorite: 0
  3357. attributes:
  3358. - key: resist
  3359. name: Resistance
  3360. value: 40
  3361. stringValue: 0
  3362. upgradeIncrement: 2
  3363. coreStats: 0
  3364. visible: 1
  3365. visibleInStatsPanel: 1
  3366. displayFormat: 0
  3367. suffixes:
  3368. compareInfo: 1
  3369. randomChange: 100
  3370. locked: 0
  3371. isFixed: 0
  3372. minValue: 30
  3373. maxValue: 50
  3374. fold: 1
  3375. - key: luck
  3376. name: Luck
  3377. value: 15
  3378. stringValue: 0
  3379. upgradeIncrement: 1
  3380. coreStats: 0
  3381. visible: 1
  3382. visibleInStatsPanel: 1
  3383. displayFormat: 0
  3384. suffixes:
  3385. compareInfo: 1
  3386. randomChange: 100
  3387. locked: 0
  3388. isFixed: 1
  3389. minValue: 15
  3390. maxValue: 15
  3391. fold: 1
  3392. maximumRandomAttributes: 1
  3393. enchantments:
  3394. craftMaterials: []
  3395. actions:
  3396. - equip
  3397. tags:
  3398. - Cape
  3399. customData: []
  3400. lastUseTimeStamp: 0
  3401. restrictionKey:
  3402. restrictionValue: 0
  3403. socketingSlots: 0
  3404. socketedItems:
  3405. socketingTag:
  3406. - Green
  3407. - Blue
  3408. fold: 0
  3409. - uid: 50
  3410. name: Leather Glove
  3411. description: Heavy red cape with armor pieces.
  3412. type: 1
  3413. icon: {fileID: 2800000, guid: dc5229ac3c0f1b54f9aafeaaf0f11e33, type: 3}
  3414. quality: 0
  3415. tradeable: 1
  3416. deletable: 1
  3417. useable: 1
  3418. consumable: 0
  3419. visible: 1
  3420. price: 120
  3421. currency: 0
  3422. maxiumStack: 1
  3423. upgradeLevel: 0
  3424. weight: 0.5
  3425. dropRates: 4
  3426. favorite: 0
  3427. attributes:
  3428. - key: def
  3429. name: Defence
  3430. value: 10
  3431. stringValue: 0
  3432. upgradeIncrement: 2
  3433. coreStats: 0
  3434. visible: 1
  3435. visibleInStatsPanel: 1
  3436. displayFormat: 0
  3437. suffixes:
  3438. compareInfo: 1
  3439. randomChange: 100
  3440. locked: 0
  3441. isFixed: 1
  3442. minValue: 10
  3443. maxValue: 10
  3444. fold: 1
  3445. - key: atk
  3446. name: Attack
  3447. value: 2
  3448. stringValue: 0
  3449. upgradeIncrement: 2
  3450. coreStats: 0
  3451. visible: 1
  3452. visibleInStatsPanel: 1
  3453. displayFormat: 0
  3454. suffixes:
  3455. compareInfo: 1
  3456. randomChange: 100
  3457. locked: 0
  3458. isFixed: 0
  3459. minValue: 1
  3460. maxValue: 3
  3461. fold: 1
  3462. maximumRandomAttributes: 1
  3463. enchantments:
  3464. craftMaterials: []
  3465. actions:
  3466. - equip
  3467. tags:
  3468. - Gauntlet
  3469. customData: []
  3470. lastUseTimeStamp: 0
  3471. restrictionKey:
  3472. restrictionValue: 0
  3473. socketingSlots: 0
  3474. socketedItems:
  3475. socketingTag:
  3476. - Red
  3477. - Yellow
  3478. fold: 0
  3479. - uid: 51
  3480. name: Guard's Gauntlet
  3481. description: Leather gauntlet with metal armor.
  3482. type: 1
  3483. icon: {fileID: 2800000, guid: a0da18c2a493cdf42b63dbda0a39e5a5, type: 3}
  3484. quality: 1
  3485. tradeable: 1
  3486. deletable: 1
  3487. useable: 1
  3488. consumable: 0
  3489. visible: 1
  3490. price: 400
  3491. currency: 0
  3492. maxiumStack: 1
  3493. upgradeLevel: 0
  3494. weight: 1
  3495. dropRates: 3
  3496. favorite: 0
  3497. attributes:
  3498. - key: def
  3499. name: Defence
  3500. value: 20
  3501. stringValue: 0
  3502. upgradeIncrement: 2
  3503. coreStats: 0
  3504. visible: 1
  3505. visibleInStatsPanel: 1
  3506. displayFormat: 0
  3507. suffixes:
  3508. compareInfo: 1
  3509. randomChange: 100
  3510. locked: 0
  3511. isFixed: 1
  3512. minValue: 20
  3513. maxValue: 20
  3514. fold: 1
  3515. - key: atk
  3516. name: Attack
  3517. value: 5
  3518. stringValue: 0
  3519. upgradeIncrement: 2
  3520. coreStats: 0
  3521. visible: 1
  3522. visibleInStatsPanel: 1
  3523. displayFormat: 0
  3524. suffixes:
  3525. compareInfo: 1
  3526. randomChange: 100
  3527. locked: 0
  3528. isFixed: 0
  3529. minValue: 3
  3530. maxValue: 7
  3531. fold: 1
  3532. maximumRandomAttributes: 1
  3533. enchantments:
  3534. craftMaterials: []
  3535. actions:
  3536. - equip
  3537. tags:
  3538. - Gauntlet
  3539. customData: []
  3540. lastUseTimeStamp: 0
  3541. restrictionKey:
  3542. restrictionValue: 0
  3543. socketingSlots: 0
  3544. socketedItems:
  3545. socketingTag:
  3546. - Red
  3547. - Yellow
  3548. fold: 0
  3549. - uid: 52
  3550. name: Knight's Gauntlet
  3551. description: Plate armor gauntlet.
  3552. type: 1
  3553. icon: {fileID: 2800000, guid: 47c8004104562e74f826e8774f6544b4, type: 3}
  3554. quality: 2
  3555. tradeable: 1
  3556. deletable: 1
  3557. useable: 1
  3558. consumable: 0
  3559. visible: 1
  3560. price: 700
  3561. currency: 0
  3562. maxiumStack: 1
  3563. upgradeLevel: 0
  3564. weight: 1
  3565. dropRates: 2
  3566. favorite: 0
  3567. attributes:
  3568. - key: def
  3569. name: Defence
  3570. value: 30
  3571. stringValue: 0
  3572. upgradeIncrement: 2
  3573. coreStats: 0
  3574. visible: 1
  3575. visibleInStatsPanel: 1
  3576. displayFormat: 0
  3577. suffixes:
  3578. compareInfo: 1
  3579. randomChange: 100
  3580. locked: 0
  3581. isFixed: 1
  3582. minValue: 30
  3583. maxValue: 30
  3584. fold: 1
  3585. - key: atk
  3586. name: Attack
  3587. value: 10
  3588. stringValue: 0
  3589. upgradeIncrement: 2
  3590. coreStats: 0
  3591. visible: 1
  3592. visibleInStatsPanel: 1
  3593. displayFormat: 0
  3594. suffixes:
  3595. compareInfo: 1
  3596. randomChange: 100
  3597. locked: 0
  3598. isFixed: 0
  3599. minValue: 8
  3600. maxValue: 12
  3601. fold: 1
  3602. - key: crit
  3603. name: Critical Chance
  3604. value: 0
  3605. stringValue: 0
  3606. upgradeIncrement: 3
  3607. coreStats: 0
  3608. visible: 1
  3609. visibleInStatsPanel: 1
  3610. displayFormat: 0
  3611. suffixes: '%'
  3612. compareInfo: 1
  3613. randomChange: 50
  3614. locked: 0
  3615. isFixed: 0
  3616. minValue: 5
  3617. maxValue: 15
  3618. fold: 1
  3619. maximumRandomAttributes: 1
  3620. enchantments:
  3621. craftMaterials:
  3622. - {x: 6, y: 2}
  3623. - {x: 8, y: 3}
  3624. - {x: 13, y: 2}
  3625. actions:
  3626. - equip
  3627. tags:
  3628. - Gauntlet
  3629. customData: []
  3630. lastUseTimeStamp: 0
  3631. restrictionKey:
  3632. restrictionValue: 0
  3633. socketingSlots: 0
  3634. socketedItems:
  3635. socketingTag:
  3636. - Red
  3637. - Yellow
  3638. fold: 0
  3639. - uid: 53
  3640. name: Leather Helmet
  3641. description: Light weight leather helmet.
  3642. type: 1
  3643. icon: {fileID: 2800000, guid: 5e6543b2938ecf143a0d8a19f0a9a642, type: 3}
  3644. quality: 0
  3645. tradeable: 1
  3646. deletable: 1
  3647. useable: 1
  3648. consumable: 0
  3649. visible: 1
  3650. price: 250
  3651. currency: 0
  3652. maxiumStack: 1
  3653. upgradeLevel: 0
  3654. weight: 0.8
  3655. dropRates: 6
  3656. favorite: 0
  3657. attributes:
  3658. - key: def
  3659. name: Defence
  3660. value: 10
  3661. stringValue: 0
  3662. upgradeIncrement: 2
  3663. coreStats: 0
  3664. visible: 1
  3665. visibleInStatsPanel: 1
  3666. displayFormat: 0
  3667. suffixes:
  3668. compareInfo: 1
  3669. randomChange: 100
  3670. locked: 0
  3671. isFixed: 1
  3672. minValue: 10
  3673. maxValue: 10
  3674. fold: 1
  3675. - key: resist
  3676. name: Resistance
  3677. value: 0
  3678. stringValue: 0
  3679. upgradeIncrement: 2
  3680. coreStats: 0
  3681. visible: 1
  3682. visibleInStatsPanel: 1
  3683. displayFormat: 0
  3684. suffixes:
  3685. compareInfo: 1
  3686. randomChange: 100
  3687. locked: 0
  3688. isFixed: 0
  3689. minValue: 3
  3690. maxValue: 10
  3691. fold: 1
  3692. maximumRandomAttributes: 1
  3693. enchantments:
  3694. craftMaterials: []
  3695. actions:
  3696. - equip
  3697. tags:
  3698. - Helmet
  3699. customData: []
  3700. lastUseTimeStamp: 0
  3701. restrictionKey:
  3702. restrictionValue: 0
  3703. socketingSlots: 0
  3704. socketedItems:
  3705. socketingTag:
  3706. - Green
  3707. - Blue
  3708. fold: 0
  3709. - uid: 54
  3710. name: Guard's Helmet
  3711. description: Metal helmet with good protection.
  3712. type: 1
  3713. icon: {fileID: 2800000, guid: 32b3534aa4ed30f4a98c9091ae325ba4, type: 3}
  3714. quality: 1
  3715. tradeable: 1
  3716. deletable: 1
  3717. useable: 1
  3718. consumable: 0
  3719. visible: 1
  3720. price: 500
  3721. currency: 0
  3722. maxiumStack: 1
  3723. upgradeLevel: 0
  3724. weight: 1.2
  3725. dropRates: 4
  3726. favorite: 0
  3727. attributes:
  3728. - key: def
  3729. name: Defence
  3730. value: 15
  3731. stringValue: 0
  3732. upgradeIncrement: 2
  3733. coreStats: 0
  3734. visible: 1
  3735. visibleInStatsPanel: 1
  3736. displayFormat: 0
  3737. suffixes:
  3738. compareInfo: 1
  3739. randomChange: 100
  3740. locked: 0
  3741. isFixed: 1
  3742. minValue: 15
  3743. maxValue: 15
  3744. fold: 1
  3745. - key: resist
  3746. name: Resistance
  3747. value: 0
  3748. stringValue: 0
  3749. upgradeIncrement: 2
  3750. coreStats: 0
  3751. visible: 1
  3752. visibleInStatsPanel: 1
  3753. displayFormat: 0
  3754. suffixes:
  3755. compareInfo: 1
  3756. randomChange: 100
  3757. locked: 0
  3758. isFixed: 0
  3759. minValue: 5
  3760. maxValue: 15
  3761. fold: 1
  3762. maximumRandomAttributes: 1
  3763. enchantments:
  3764. craftMaterials: []
  3765. actions:
  3766. - equip
  3767. tags:
  3768. - Helmet
  3769. customData: []
  3770. lastUseTimeStamp: 0
  3771. restrictionKey:
  3772. restrictionValue: 0
  3773. socketingSlots: 0
  3774. socketedItems:
  3775. socketingTag:
  3776. - Green
  3777. - Blue
  3778. fold: 0
  3779. - uid: 55
  3780. name: Knight's Helmet
  3781. description: Plate armor helmet with best protection.
  3782. type: 1
  3783. icon: {fileID: 2800000, guid: 7a29ab3b587e1b143ad0b653b5faa4c8, type: 3}
  3784. quality: 2
  3785. tradeable: 1
  3786. deletable: 1
  3787. useable: 1
  3788. consumable: 0
  3789. visible: 1
  3790. price: 900
  3791. currency: 0
  3792. maxiumStack: 1
  3793. upgradeLevel: 0
  3794. weight: 2.5
  3795. dropRates: 3
  3796. favorite: 0
  3797. attributes:
  3798. - key: def
  3799. name: Defence
  3800. value: 30
  3801. stringValue: 0
  3802. upgradeIncrement: 2
  3803. coreStats: 0
  3804. visible: 1
  3805. visibleInStatsPanel: 1
  3806. displayFormat: 0
  3807. suffixes:
  3808. compareInfo: 1
  3809. randomChange: 100
  3810. locked: 0
  3811. isFixed: 1
  3812. minValue: 30
  3813. maxValue: 30
  3814. fold: 1
  3815. - key: resist
  3816. name: Resistance
  3817. value: 0
  3818. stringValue: 0
  3819. upgradeIncrement: 2
  3820. coreStats: 0
  3821. visible: 1
  3822. visibleInStatsPanel: 1
  3823. displayFormat: 0
  3824. suffixes:
  3825. compareInfo: 1
  3826. randomChange: 100
  3827. locked: 0
  3828. isFixed: 0
  3829. minValue: 10
  3830. maxValue: 20
  3831. fold: 1
  3832. - key: hp
  3833. name: Health
  3834. value: 20
  3835. stringValue: 0
  3836. upgradeIncrement: 20
  3837. coreStats: 0
  3838. visible: 1
  3839. visibleInStatsPanel: 1
  3840. displayFormat: 0
  3841. suffixes:
  3842. compareInfo: 1
  3843. randomChange: 49
  3844. locked: 0
  3845. isFixed: 0
  3846. minValue: 15
  3847. maxValue: 30
  3848. fold: 1
  3849. maximumRandomAttributes: 1
  3850. enchantments:
  3851. craftMaterials:
  3852. - {x: 8, y: 4}
  3853. - {x: 12, y: 1}
  3854. actions:
  3855. - equip
  3856. tags:
  3857. - Helmet
  3858. customData: []
  3859. lastUseTimeStamp: 0
  3860. restrictionKey:
  3861. restrictionValue: 0
  3862. socketingSlots: 0
  3863. socketedItems:
  3864. socketingTag:
  3865. - Green
  3866. - Blue
  3867. fold: 0
  3868. - uid: 56
  3869. name: Buckler
  3870. description: Small buckler made with leather and woods.
  3871. type: 1
  3872. icon: {fileID: 2800000, guid: 8a52cebbfe7aa0d4191319fd8d7a1d24, type: 3}
  3873. quality: 0
  3874. tradeable: 1
  3875. deletable: 1
  3876. useable: 1
  3877. consumable: 0
  3878. visible: 1
  3879. price: 180
  3880. currency: 0
  3881. maxiumStack: 1
  3882. upgradeLevel: 0
  3883. weight: 1
  3884. dropRates: 6
  3885. favorite: 0
  3886. attributes:
  3887. - key: def
  3888. name: Defence
  3889. value: 15
  3890. stringValue: 0
  3891. upgradeIncrement: 2
  3892. coreStats: 0
  3893. visible: 1
  3894. visibleInStatsPanel: 1
  3895. displayFormat: 0
  3896. suffixes:
  3897. compareInfo: 1
  3898. randomChange: 100
  3899. locked: 0
  3900. isFixed: 0
  3901. minValue: 10
  3902. maxValue: 20
  3903. fold: 1
  3904. - key: resist
  3905. name: Resistance
  3906. value: 10
  3907. stringValue: 0
  3908. upgradeIncrement: 2
  3909. coreStats: 0
  3910. visible: 1
  3911. visibleInStatsPanel: 1
  3912. displayFormat: 0
  3913. suffixes:
  3914. compareInfo: 1
  3915. randomChange: 100
  3916. locked: 0
  3917. isFixed: 0
  3918. minValue: 5
  3919. maxValue: 15
  3920. fold: 1
  3921. maximumRandomAttributes: 1
  3922. enchantments:
  3923. craftMaterials: []
  3924. actions:
  3925. - equip
  3926. tags:
  3927. - OffHand
  3928. customData: []
  3929. lastUseTimeStamp: 0
  3930. restrictionKey:
  3931. restrictionValue: 0
  3932. socketingSlots: 0
  3933. socketedItems:
  3934. socketingTag:
  3935. - Green
  3936. - Blue
  3937. - Red
  3938. fold: 0
  3939. - uid: 57
  3940. name: Leather Shield
  3941. description: Nice shield made with leather and woods.
  3942. type: 1
  3943. icon: {fileID: 2800000, guid: a015f22e8b786194ca51dd8e57f6c604, type: 3}
  3944. quality: 1
  3945. tradeable: 1
  3946. deletable: 1
  3947. useable: 1
  3948. consumable: 0
  3949. visible: 1
  3950. price: 300
  3951. currency: 0
  3952. maxiumStack: 1
  3953. upgradeLevel: 0
  3954. weight: 2
  3955. dropRates: 4
  3956. favorite: 0
  3957. attributes:
  3958. - key: def
  3959. name: Defence
  3960. value: 25
  3961. stringValue: 0
  3962. upgradeIncrement: 2
  3963. coreStats: 0
  3964. visible: 1
  3965. visibleInStatsPanel: 1
  3966. displayFormat: 0
  3967. suffixes:
  3968. compareInfo: 1
  3969. randomChange: 100
  3970. locked: 0
  3971. isFixed: 0
  3972. minValue: 15
  3973. maxValue: 30
  3974. fold: 1
  3975. - key: resist
  3976. name: Resistance
  3977. value: 15
  3978. stringValue: 0
  3979. upgradeIncrement: 2
  3980. coreStats: 0
  3981. visible: 1
  3982. visibleInStatsPanel: 1
  3983. displayFormat: 0
  3984. suffixes:
  3985. compareInfo: 1
  3986. randomChange: 100
  3987. locked: 0
  3988. isFixed: 0
  3989. minValue: 10
  3990. maxValue: 20
  3991. fold: 1
  3992. maximumRandomAttributes: 1
  3993. enchantments:
  3994. craftMaterials: []
  3995. actions:
  3996. - equip
  3997. tags:
  3998. - OffHand
  3999. customData: []
  4000. lastUseTimeStamp: 0
  4001. restrictionKey:
  4002. restrictionValue: 0
  4003. socketingSlots: 0
  4004. socketedItems:
  4005. socketingTag:
  4006. - Green
  4007. - Blue
  4008. - Red
  4009. fold: 0
  4010. - uid: 58
  4011. name: Knight's Shield
  4012. description: Metal shield can block any attack.
  4013. type: 1
  4014. icon: {fileID: 2800000, guid: fbc972cdac1d3794095524aae90baf55, type: 3}
  4015. quality: 2
  4016. tradeable: 1
  4017. deletable: 1
  4018. useable: 1
  4019. consumable: 0
  4020. visible: 1
  4021. price: 700
  4022. currency: 0
  4023. maxiumStack: 1
  4024. upgradeLevel: 0
  4025. weight: 3
  4026. dropRates: 3
  4027. favorite: 0
  4028. attributes:
  4029. - key: def
  4030. name: Defence
  4031. value: 25
  4032. stringValue: 0
  4033. upgradeIncrement: 2
  4034. coreStats: 0
  4035. visible: 1
  4036. visibleInStatsPanel: 1
  4037. displayFormat: 0
  4038. suffixes:
  4039. compareInfo: 1
  4040. randomChange: 100
  4041. locked: 0
  4042. isFixed: 0
  4043. minValue: 15
  4044. maxValue: 25
  4045. fold: 1
  4046. - key: resist
  4047. name: Resistance
  4048. value: 15
  4049. stringValue: 0
  4050. upgradeIncrement: 2
  4051. coreStats: 0
  4052. visible: 1
  4053. visibleInStatsPanel: 1
  4054. displayFormat: 0
  4055. suffixes:
  4056. compareInfo: 1
  4057. randomChange: 100
  4058. locked: 0
  4059. isFixed: 0
  4060. minValue: 15
  4061. maxValue: 25
  4062. fold: 1
  4063. - key: luck
  4064. name: Luck
  4065. value: 10
  4066. stringValue: 0
  4067. upgradeIncrement: 1
  4068. coreStats: 0
  4069. visible: 1
  4070. visibleInStatsPanel: 1
  4071. displayFormat: 0
  4072. suffixes:
  4073. compareInfo: 1
  4074. randomChange: 20
  4075. locked: 0
  4076. isFixed: 0
  4077. minValue: 5
  4078. maxValue: 10
  4079. fold: 1
  4080. maximumRandomAttributes: 2
  4081. enchantments:
  4082. craftMaterials: []
  4083. actions:
  4084. - equip
  4085. tags:
  4086. - OffHand
  4087. customData: []
  4088. lastUseTimeStamp: 0
  4089. restrictionKey:
  4090. restrictionValue: 0
  4091. socketingSlots: 0
  4092. socketedItems:
  4093. socketingTag:
  4094. - Green
  4095. - Blue
  4096. - Red
  4097. fold: 0
  4098. - uid: 59
  4099. name: Power Stone
  4100. description: Magic stone to enhance your equipments.
  4101. type: 2
  4102. icon: {fileID: 2800000, guid: 4a56d60cc27b46c4ba9c7e2c7d8fdcf1, type: 3}
  4103. quality: 2
  4104. tradeable: 1
  4105. deletable: 1
  4106. useable: 0
  4107. consumable: 0
  4108. visible: 1
  4109. price: 800
  4110. currency: 0
  4111. maxiumStack: 99
  4112. upgradeLevel: 0
  4113. weight: 0.1
  4114. dropRates: 5
  4115. favorite: 0
  4116. attributes: []
  4117. maximumRandomAttributes: 5
  4118. enchantments:
  4119. craftMaterials: []
  4120. actions: []
  4121. tags: []
  4122. customData: []
  4123. lastUseTimeStamp: 0
  4124. restrictionKey:
  4125. restrictionValue: 0
  4126. socketingSlots: 0
  4127. socketedItems:
  4128. socketingTag: []
  4129. fold: 0
  4130. - uid: 60
  4131. name: Ancient Rune
  4132. description: Magic rune to enhance your equipments.
  4133. type: 2
  4134. icon: {fileID: 2800000, guid: 246a34852738a394ba4d361b02333bde, type: 3}
  4135. quality: 3
  4136. tradeable: 1
  4137. deletable: 1
  4138. useable: 0
  4139. consumable: 0
  4140. visible: 1
  4141. price: 1200
  4142. currency: 1
  4143. maxiumStack: 99
  4144. upgradeLevel: 0
  4145. weight: 0.1
  4146. dropRates: 4
  4147. favorite: 0
  4148. attributes: []
  4149. maximumRandomAttributes: 5
  4150. enchantments:
  4151. craftMaterials: []
  4152. actions: []
  4153. tags: []
  4154. customData: []
  4155. lastUseTimeStamp: 0
  4156. restrictionKey:
  4157. restrictionValue: 0
  4158. socketingSlots: 0
  4159. socketedItems:
  4160. socketingTag: []
  4161. fold: 0
  4162. - uid: 61
  4163. name: Enchantment Recipe
  4164. description: Add enchantments to your equipment.
  4165. type: 2
  4166. icon: {fileID: 2800000, guid: 031fe12f217b2d943a7dbd966de8b80c, type: 3}
  4167. quality: 3
  4168. tradeable: 1
  4169. deletable: 1
  4170. useable: 0
  4171. consumable: 0
  4172. visible: 1
  4173. price: 600
  4174. currency: 1
  4175. maxiumStack: 99
  4176. upgradeLevel: 0
  4177. weight: 0.1
  4178. dropRates: 3
  4179. favorite: 0
  4180. attributes: []
  4181. maximumRandomAttributes: 5
  4182. enchantments:
  4183. craftMaterials: []
  4184. actions: []
  4185. tags: []
  4186. customData: []
  4187. lastUseTimeStamp: 0
  4188. restrictionKey:
  4189. restrictionValue: 0
  4190. socketingSlots: 0
  4191. socketedItems:
  4192. socketingTag: []
  4193. fold: 0
  4194. - uid: 62
  4195. name: Skill 1
  4196. description: Example Skill.
  4197. type: 4
  4198. icon: {fileID: 2800000, guid: 358adc923ae38af41b1423425131092b, type: 3}
  4199. quality: 0
  4200. tradeable: 1
  4201. deletable: 0
  4202. useable: 1
  4203. consumable: 0
  4204. visible: 0
  4205. price: 500
  4206. currency: 1
  4207. maxiumStack: 1
  4208. upgradeLevel: 0
  4209. weight: 0
  4210. dropRates: 0
  4211. favorite: 0
  4212. attributes:
  4213. - key: cd
  4214. name: Cool Down
  4215. value: 5
  4216. stringValue: 0
  4217. upgradeIncrement: -0.3
  4218. coreStats: 1
  4219. visible: 1
  4220. visibleInStatsPanel: 0
  4221. displayFormat: 1
  4222. suffixes: ' sec'
  4223. compareInfo: 0
  4224. randomChange: 100
  4225. locked: 0
  4226. isFixed: 1
  4227. minValue: 5
  4228. maxValue: 5
  4229. fold: 1
  4230. - key: dmg
  4231. name: Damage
  4232. value: 30
  4233. stringValue: 0
  4234. upgradeIncrement: 3
  4235. coreStats: 0
  4236. visible: 1
  4237. visibleInStatsPanel: 0
  4238. displayFormat: 1
  4239. suffixes:
  4240. compareInfo: 1
  4241. randomChange: 100
  4242. locked: 0
  4243. isFixed: 1
  4244. minValue: 30
  4245. maxValue: 30
  4246. fold: 1
  4247. - key: delay
  4248. name: Damage Delay
  4249. value: 0.3
  4250. stringValue: 0
  4251. upgradeIncrement: -0.02
  4252. coreStats: 0
  4253. visible: 1
  4254. visibleInStatsPanel: 0
  4255. displayFormat: 1
  4256. suffixes: ' sec'
  4257. compareInfo: 1
  4258. randomChange: 100
  4259. locked: 0
  4260. isFixed: 1
  4261. minValue: 0.3
  4262. maxValue: 0.3
  4263. fold: 1
  4264. - key: spcost
  4265. name: SP Cost
  4266. value: 15
  4267. stringValue: 0
  4268. upgradeIncrement: -1
  4269. coreStats: 1
  4270. visible: 1
  4271. visibleInStatsPanel: 0
  4272. displayFormat: 1
  4273. suffixes:
  4274. compareInfo: 0
  4275. randomChange: 100
  4276. locked: 0
  4277. isFixed: 1
  4278. minValue: 15
  4279. maxValue: 15
  4280. fold: 1
  4281. maximumRandomAttributes: 5
  4282. enchantments:
  4283. craftMaterials: []
  4284. actions:
  4285. - Skill_1
  4286. tags:
  4287. - Warrior
  4288. customData: []
  4289. lastUseTimeStamp: 0
  4290. restrictionKey:
  4291. restrictionValue: 0
  4292. socketingSlots: 0
  4293. socketedItems:
  4294. socketingTag: []
  4295. fold: 0
  4296. - uid: 63
  4297. name: Skill 2
  4298. description: Example Skill.
  4299. type: 4
  4300. icon: {fileID: 2800000, guid: eb098d3ba4c2df84b9d82e5bed6af83c, type: 3}
  4301. quality: 0
  4302. tradeable: 1
  4303. deletable: 0
  4304. useable: 1
  4305. consumable: 0
  4306. visible: 1
  4307. price: 500
  4308. currency: 1
  4309. maxiumStack: 1
  4310. upgradeLevel: 0
  4311. weight: 0
  4312. dropRates: 0
  4313. favorite: 0
  4314. attributes:
  4315. - key: cd
  4316. name: Cool Down
  4317. value: 7
  4318. stringValue: 0
  4319. upgradeIncrement: -0.3
  4320. coreStats: 1
  4321. visible: 1
  4322. visibleInStatsPanel: 0
  4323. displayFormat: 1
  4324. suffixes: ' sec'
  4325. compareInfo: 0
  4326. randomChange: 100
  4327. locked: 0
  4328. isFixed: 1
  4329. minValue: 7
  4330. maxValue: 7
  4331. fold: 1
  4332. - key: dmg
  4333. name: Damage
  4334. value: 30
  4335. stringValue: 0
  4336. upgradeIncrement: 3
  4337. coreStats: 0
  4338. visible: 1
  4339. visibleInStatsPanel: 0
  4340. displayFormat: 1
  4341. suffixes:
  4342. compareInfo: 1
  4343. randomChange: 100
  4344. locked: 0
  4345. isFixed: 1
  4346. minValue: 30
  4347. maxValue: 30
  4348. fold: 1
  4349. - key: delay
  4350. name: Damage Delay
  4351. value: 0.3
  4352. stringValue: 0
  4353. upgradeIncrement: -0.02
  4354. coreStats: 0
  4355. visible: 1
  4356. visibleInStatsPanel: 0
  4357. displayFormat: 1
  4358. suffixes: ' sec'
  4359. compareInfo: 1
  4360. randomChange: 100
  4361. locked: 0
  4362. isFixed: 1
  4363. minValue: 0.3
  4364. maxValue: 0.3
  4365. fold: 1
  4366. - key: spcost
  4367. name: SP Cost
  4368. value: 15
  4369. stringValue: 0
  4370. upgradeIncrement: -1
  4371. coreStats: 1
  4372. visible: 1
  4373. visibleInStatsPanel: 0
  4374. displayFormat: 1
  4375. suffixes:
  4376. compareInfo: 0
  4377. randomChange: 100
  4378. locked: 0
  4379. isFixed: 1
  4380. minValue: 15
  4381. maxValue: 15
  4382. fold: 1
  4383. maximumRandomAttributes: 5
  4384. enchantments:
  4385. craftMaterials: []
  4386. actions:
  4387. - Skill_2
  4388. tags:
  4389. - Warrior
  4390. customData: []
  4391. lastUseTimeStamp: 0
  4392. restrictionKey:
  4393. restrictionValue: 0
  4394. socketingSlots: 0
  4395. socketedItems:
  4396. socketingTag: []
  4397. fold: 0
  4398. - uid: 64
  4399. name: Skill 3
  4400. description: Example Skill.
  4401. type: 4
  4402. icon: {fileID: 2800000, guid: f3278d1974a653443a5b5b34240c5aa6, type: 3}
  4403. quality: 1
  4404. tradeable: 1
  4405. deletable: 0
  4406. useable: 1
  4407. consumable: 0
  4408. visible: 1
  4409. price: 500
  4410. currency: 1
  4411. maxiumStack: 1
  4412. upgradeLevel: 0
  4413. weight: 0
  4414. dropRates: 0
  4415. favorite: 0
  4416. attributes:
  4417. - key: cd
  4418. name: Cool Down
  4419. value: 4
  4420. stringValue: 0
  4421. upgradeIncrement: -0.3
  4422. coreStats: 1
  4423. visible: 1
  4424. visibleInStatsPanel: 0
  4425. displayFormat: 1
  4426. suffixes: ' sec'
  4427. compareInfo: 0
  4428. randomChange: 100
  4429. locked: 0
  4430. isFixed: 1
  4431. minValue: 4
  4432. maxValue: 4
  4433. fold: 1
  4434. - key: dmg
  4435. name: Damage
  4436. value: 30
  4437. stringValue: 0
  4438. upgradeIncrement: 3
  4439. coreStats: 0
  4440. visible: 1
  4441. visibleInStatsPanel: 0
  4442. displayFormat: 1
  4443. suffixes:
  4444. compareInfo: 1
  4445. randomChange: 100
  4446. locked: 0
  4447. isFixed: 1
  4448. minValue: 30
  4449. maxValue: 30
  4450. fold: 1
  4451. - key: delay
  4452. name: Damage Delay
  4453. value: 0.3
  4454. stringValue: 0
  4455. upgradeIncrement: -0.02
  4456. coreStats: 0
  4457. visible: 1
  4458. visibleInStatsPanel: 0
  4459. displayFormat: 1
  4460. suffixes: ' sec'
  4461. compareInfo: 1
  4462. randomChange: 100
  4463. locked: 0
  4464. isFixed: 1
  4465. minValue: 0.3
  4466. maxValue: 0.3
  4467. fold: 1
  4468. - key: spcost
  4469. name: SP Cost
  4470. value: 15
  4471. stringValue: 0
  4472. upgradeIncrement: -1
  4473. coreStats: 1
  4474. visible: 1
  4475. visibleInStatsPanel: 0
  4476. displayFormat: 1
  4477. suffixes:
  4478. compareInfo: 0
  4479. randomChange: 100
  4480. locked: 0
  4481. isFixed: 1
  4482. minValue: 15
  4483. maxValue: 15
  4484. fold: 1
  4485. maximumRandomAttributes: 5
  4486. enchantments:
  4487. craftMaterials: []
  4488. actions:
  4489. - Skill_3
  4490. tags:
  4491. - Warrior
  4492. customData: []
  4493. lastUseTimeStamp: 0
  4494. restrictionKey:
  4495. restrictionValue: 0
  4496. socketingSlots: 0
  4497. socketedItems:
  4498. socketingTag: []
  4499. fold: 0
  4500. - uid: 65
  4501. name: Skill 4
  4502. description: Example Skill.
  4503. type: 4
  4504. icon: {fileID: 2800000, guid: 15d4ab8f510170543ba598cd5e63d02a, type: 3}
  4505. quality: 1
  4506. tradeable: 1
  4507. deletable: 0
  4508. useable: 1
  4509. consumable: 0
  4510. visible: 1
  4511. price: 500
  4512. currency: 1
  4513. maxiumStack: 1
  4514. upgradeLevel: 0
  4515. weight: 0
  4516. dropRates: 0
  4517. favorite: 0
  4518. attributes:
  4519. - key: cd
  4520. name: Cool Down
  4521. value: 5
  4522. stringValue: 0
  4523. upgradeIncrement: -0.3
  4524. coreStats: 1
  4525. visible: 1
  4526. visibleInStatsPanel: 0
  4527. displayFormat: 1
  4528. suffixes: ' sec'
  4529. compareInfo: 0
  4530. randomChange: 100
  4531. locked: 0
  4532. isFixed: 1
  4533. minValue: 5
  4534. maxValue: 5
  4535. fold: 1
  4536. - key: dmg
  4537. name: Damage
  4538. value: 30
  4539. stringValue: 0
  4540. upgradeIncrement: 3
  4541. coreStats: 0
  4542. visible: 1
  4543. visibleInStatsPanel: 0
  4544. displayFormat: 1
  4545. suffixes:
  4546. compareInfo: 1
  4547. randomChange: 100
  4548. locked: 0
  4549. isFixed: 1
  4550. minValue: 30
  4551. maxValue: 30
  4552. fold: 1
  4553. - key: delay
  4554. name: Damage Delay
  4555. value: 0.3
  4556. stringValue: 0
  4557. upgradeIncrement: -0.02
  4558. coreStats: 0
  4559. visible: 1
  4560. visibleInStatsPanel: 0
  4561. displayFormat: 1
  4562. suffixes: ' sec'
  4563. compareInfo: 1
  4564. randomChange: 100
  4565. locked: 0
  4566. isFixed: 1
  4567. minValue: 0.3
  4568. maxValue: 0.3
  4569. fold: 1
  4570. - key: spcost
  4571. name: SP Cost
  4572. value: 15
  4573. stringValue: 0
  4574. upgradeIncrement: -1
  4575. coreStats: 1
  4576. visible: 1
  4577. visibleInStatsPanel: 0
  4578. displayFormat: 1
  4579. suffixes:
  4580. compareInfo: 0
  4581. randomChange: 100
  4582. locked: 0
  4583. isFixed: 1
  4584. minValue: 15
  4585. maxValue: 15
  4586. fold: 1
  4587. maximumRandomAttributes: 5
  4588. enchantments:
  4589. craftMaterials: []
  4590. actions:
  4591. - Skill_4
  4592. tags:
  4593. - Warrior
  4594. customData: []
  4595. lastUseTimeStamp: 0
  4596. restrictionKey:
  4597. restrictionValue: 0
  4598. socketingSlots: 0
  4599. socketedItems:
  4600. socketingTag: []
  4601. fold: 0
  4602. - uid: 66
  4603. name: Skill 5
  4604. description: Example Skill.
  4605. type: 4
  4606. icon: {fileID: 2800000, guid: caf614f1372980b4fa1811c8997dbad6, type: 3}
  4607. quality: 0
  4608. tradeable: 1
  4609. deletable: 0
  4610. useable: 1
  4611. consumable: 0
  4612. visible: 1
  4613. price: 500
  4614. currency: 1
  4615. maxiumStack: 1
  4616. upgradeLevel: 0
  4617. weight: 0
  4618. dropRates: 0
  4619. favorite: 0
  4620. attributes:
  4621. - key: cd
  4622. name: Cool Down
  4623. value: 10
  4624. stringValue: 0
  4625. upgradeIncrement: -0.3
  4626. coreStats: 1
  4627. visible: 1
  4628. visibleInStatsPanel: 0
  4629. displayFormat: 1
  4630. suffixes: ' sec'
  4631. compareInfo: 0
  4632. randomChange: 100
  4633. locked: 0
  4634. isFixed: 1
  4635. minValue: 10
  4636. maxValue: 10
  4637. fold: 1
  4638. - key: dmg
  4639. name: Damage
  4640. value: 30
  4641. stringValue: 0
  4642. upgradeIncrement: 3
  4643. coreStats: 0
  4644. visible: 1
  4645. visibleInStatsPanel: 0
  4646. displayFormat: 1
  4647. suffixes:
  4648. compareInfo: 1
  4649. randomChange: 100
  4650. locked: 0
  4651. isFixed: 1
  4652. minValue: 30
  4653. maxValue: 30
  4654. fold: 1
  4655. - key: delay
  4656. name: Damage Delay
  4657. value: 0.3
  4658. stringValue: 0
  4659. upgradeIncrement: -0.02
  4660. coreStats: 0
  4661. visible: 1
  4662. visibleInStatsPanel: 0
  4663. displayFormat: 1
  4664. suffixes: ' sec'
  4665. compareInfo: 1
  4666. randomChange: 100
  4667. locked: 0
  4668. isFixed: 1
  4669. minValue: 0.3
  4670. maxValue: 0.3
  4671. fold: 1
  4672. - key: spcost
  4673. name: SP Cost
  4674. value: 15
  4675. stringValue: 0
  4676. upgradeIncrement: -1
  4677. coreStats: 1
  4678. visible: 1
  4679. visibleInStatsPanel: 0
  4680. displayFormat: 1
  4681. suffixes:
  4682. compareInfo: 0
  4683. randomChange: 100
  4684. locked: 0
  4685. isFixed: 1
  4686. minValue: 15
  4687. maxValue: 15
  4688. fold: 1
  4689. maximumRandomAttributes: 5
  4690. enchantments:
  4691. craftMaterials: []
  4692. actions:
  4693. - Skill_5
  4694. tags:
  4695. - Mage
  4696. customData: []
  4697. lastUseTimeStamp: 0
  4698. restrictionKey:
  4699. restrictionValue: 0
  4700. socketingSlots: 0
  4701. socketedItems:
  4702. socketingTag: []
  4703. fold: 0
  4704. - uid: 67
  4705. name: Skill 6
  4706. description: Example Skill.
  4707. type: 4
  4708. icon: {fileID: 2800000, guid: a61c35fcc4d7e424fac6acc73b9a2ce0, type: 3}
  4709. quality: 0
  4710. tradeable: 1
  4711. deletable: 0
  4712. useable: 1
  4713. consumable: 0
  4714. visible: 1
  4715. price: 500
  4716. currency: 1
  4717. maxiumStack: 1
  4718. upgradeLevel: 0
  4719. weight: 0
  4720. dropRates: 0
  4721. favorite: 0
  4722. attributes:
  4723. - key: cd
  4724. name: Cool Down
  4725. value: 12
  4726. stringValue: 0
  4727. upgradeIncrement: -0.3
  4728. coreStats: 1
  4729. visible: 1
  4730. visibleInStatsPanel: 0
  4731. displayFormat: 1
  4732. suffixes: ' sec'
  4733. compareInfo: 0
  4734. randomChange: 100
  4735. locked: 0
  4736. isFixed: 1
  4737. minValue: 12
  4738. maxValue: 12
  4739. fold: 1
  4740. - key: dmg
  4741. name: Damage
  4742. value: 30
  4743. stringValue: 0
  4744. upgradeIncrement: 3
  4745. coreStats: 0
  4746. visible: 1
  4747. visibleInStatsPanel: 0
  4748. displayFormat: 1
  4749. suffixes:
  4750. compareInfo: 1
  4751. randomChange: 100
  4752. locked: 0
  4753. isFixed: 1
  4754. minValue: 30
  4755. maxValue: 30
  4756. fold: 1
  4757. - key: delay
  4758. name: Damage Delay
  4759. value: 0.3
  4760. stringValue: 0
  4761. upgradeIncrement: -0.02
  4762. coreStats: 0
  4763. visible: 1
  4764. visibleInStatsPanel: 0
  4765. displayFormat: 1
  4766. suffixes: ' sec'
  4767. compareInfo: 1
  4768. randomChange: 100
  4769. locked: 0
  4770. isFixed: 1
  4771. minValue: 0.3
  4772. maxValue: 0.3
  4773. fold: 1
  4774. - key: spcost
  4775. name: SP Cost
  4776. value: 15
  4777. stringValue: 0
  4778. upgradeIncrement: -1
  4779. coreStats: 1
  4780. visible: 1
  4781. visibleInStatsPanel: 0
  4782. displayFormat: 1
  4783. suffixes:
  4784. compareInfo: 0
  4785. randomChange: 100
  4786. locked: 0
  4787. isFixed: 1
  4788. minValue: 15
  4789. maxValue: 15
  4790. fold: 1
  4791. maximumRandomAttributes: 5
  4792. enchantments:
  4793. craftMaterials: []
  4794. actions:
  4795. - Skill_6
  4796. tags:
  4797. - Mage
  4798. customData: []
  4799. lastUseTimeStamp: 0
  4800. restrictionKey:
  4801. restrictionValue: 0
  4802. socketingSlots: 0
  4803. socketedItems:
  4804. socketingTag: []
  4805. fold: 0
  4806. - uid: 68
  4807. name: Skill 7
  4808. description: Example Skill.
  4809. type: 4
  4810. icon: {fileID: 2800000, guid: 0f71cd7655d89ab428c2e7e2cbb11558, type: 3}
  4811. quality: 1
  4812. tradeable: 1
  4813. deletable: 0
  4814. useable: 1
  4815. consumable: 0
  4816. visible: 1
  4817. price: 500
  4818. currency: 1
  4819. maxiumStack: 1
  4820. upgradeLevel: 0
  4821. weight: 0
  4822. dropRates: 0
  4823. favorite: 0
  4824. attributes:
  4825. - key: cd
  4826. name: Cool Down
  4827. value: 5
  4828. stringValue: 0
  4829. upgradeIncrement: -0.3
  4830. coreStats: 1
  4831. visible: 1
  4832. visibleInStatsPanel: 0
  4833. displayFormat: 1
  4834. suffixes: ' sec'
  4835. compareInfo: 0
  4836. randomChange: 100
  4837. locked: 0
  4838. isFixed: 1
  4839. minValue: 5
  4840. maxValue: 5
  4841. fold: 1
  4842. - key: dmg
  4843. name: Damage
  4844. value: 30
  4845. stringValue: 0
  4846. upgradeIncrement: 3
  4847. coreStats: 0
  4848. visible: 1
  4849. visibleInStatsPanel: 0
  4850. displayFormat: 1
  4851. suffixes:
  4852. compareInfo: 1
  4853. randomChange: 100
  4854. locked: 0
  4855. isFixed: 1
  4856. minValue: 30
  4857. maxValue: 30
  4858. fold: 1
  4859. - key: delay
  4860. name: Damage Delay
  4861. value: 0.3
  4862. stringValue: 0
  4863. upgradeIncrement: -0.02
  4864. coreStats: 0
  4865. visible: 1
  4866. visibleInStatsPanel: 0
  4867. displayFormat: 1
  4868. suffixes: ' sec'
  4869. compareInfo: 1
  4870. randomChange: 100
  4871. locked: 0
  4872. isFixed: 1
  4873. minValue: 0.3
  4874. maxValue: 0.3
  4875. fold: 1
  4876. - key: spcost
  4877. name: SP Cost
  4878. value: 15
  4879. stringValue: 0
  4880. upgradeIncrement: -1
  4881. coreStats: 1
  4882. visible: 1
  4883. visibleInStatsPanel: 0
  4884. displayFormat: 1
  4885. suffixes:
  4886. compareInfo: 0
  4887. randomChange: 100
  4888. locked: 0
  4889. isFixed: 1
  4890. minValue: 15
  4891. maxValue: 15
  4892. fold: 1
  4893. maximumRandomAttributes: 5
  4894. enchantments:
  4895. craftMaterials: []
  4896. actions:
  4897. - Skill_7
  4898. tags:
  4899. - Mage
  4900. customData: []
  4901. lastUseTimeStamp: 0
  4902. restrictionKey:
  4903. restrictionValue: 0
  4904. socketingSlots: 0
  4905. socketedItems:
  4906. socketingTag: []
  4907. fold: 0
  4908. - uid: 69
  4909. name: Skill 8
  4910. description: Example Skill.
  4911. type: 4
  4912. icon: {fileID: 2800000, guid: 8b92adf5062c5f649b28071e5ab7e825, type: 3}
  4913. quality: 1
  4914. tradeable: 1
  4915. deletable: 0
  4916. useable: 1
  4917. consumable: 0
  4918. visible: 1
  4919. price: 500
  4920. currency: 1
  4921. maxiumStack: 1
  4922. upgradeLevel: 0
  4923. weight: 0
  4924. dropRates: 0
  4925. favorite: 0
  4926. attributes:
  4927. - key: cd
  4928. name: Cool Down
  4929. value: 8
  4930. stringValue: 0
  4931. upgradeIncrement: -0.3
  4932. coreStats: 1
  4933. visible: 1
  4934. visibleInStatsPanel: 0
  4935. displayFormat: 1
  4936. suffixes: ' sec'
  4937. compareInfo: 0
  4938. randomChange: 100
  4939. locked: 0
  4940. isFixed: 1
  4941. minValue: 8
  4942. maxValue: 8
  4943. fold: 1
  4944. - key: dmg
  4945. name: Damage
  4946. value: 30
  4947. stringValue: 0
  4948. upgradeIncrement: 3
  4949. coreStats: 0
  4950. visible: 1
  4951. visibleInStatsPanel: 0
  4952. displayFormat: 1
  4953. suffixes:
  4954. compareInfo: 1
  4955. randomChange: 100
  4956. locked: 0
  4957. isFixed: 1
  4958. minValue: 30
  4959. maxValue: 30
  4960. fold: 1
  4961. - key: delay
  4962. name: Damage Delay
  4963. value: 0.3
  4964. stringValue: 0
  4965. upgradeIncrement: -0.02
  4966. coreStats: 0
  4967. visible: 1
  4968. visibleInStatsPanel: 0
  4969. displayFormat: 1
  4970. suffixes: ' sec'
  4971. compareInfo: 1
  4972. randomChange: 100
  4973. locked: 0
  4974. isFixed: 1
  4975. minValue: 0.3
  4976. maxValue: 0.3
  4977. fold: 1
  4978. - key: spcost
  4979. name: SP Cost
  4980. value: 15
  4981. stringValue: 0
  4982. upgradeIncrement: -1
  4983. coreStats: 1
  4984. visible: 1
  4985. visibleInStatsPanel: 0
  4986. displayFormat: 1
  4987. suffixes:
  4988. compareInfo: 0
  4989. randomChange: 100
  4990. locked: 0
  4991. isFixed: 1
  4992. minValue: 15
  4993. maxValue: 15
  4994. fold: 1
  4995. maximumRandomAttributes: 5
  4996. enchantments:
  4997. craftMaterials: []
  4998. actions:
  4999. - Skill_8
  5000. tags:
  5001. - Mage
  5002. customData: []
  5003. lastUseTimeStamp: 0
  5004. restrictionKey:
  5005. restrictionValue: 0
  5006. socketingSlots: 0
  5007. socketedItems:
  5008. socketingTag: []
  5009. fold: 0
  5010. - uid: 70
  5011. name: Skill 9
  5012. description: Example Skill.
  5013. type: 4
  5014. icon: {fileID: 2800000, guid: 5d8451e34e268624bb3ad16e9d53a07a, type: 3}
  5015. quality: 2
  5016. tradeable: 1
  5017. deletable: 0
  5018. useable: 1
  5019. consumable: 0
  5020. visible: 1
  5021. price: 500
  5022. currency: 1
  5023. maxiumStack: 1
  5024. upgradeLevel: 0
  5025. weight: 0
  5026. dropRates: 0
  5027. favorite: 0
  5028. attributes:
  5029. - key: cd
  5030. name: Cool Down
  5031. value: 11
  5032. stringValue: 0
  5033. upgradeIncrement: -0.3
  5034. coreStats: 1
  5035. visible: 1
  5036. visibleInStatsPanel: 0
  5037. displayFormat: 1
  5038. suffixes: ' sec'
  5039. compareInfo: 0
  5040. randomChange: 100
  5041. locked: 0
  5042. isFixed: 1
  5043. minValue: 11
  5044. maxValue: 11
  5045. fold: 1
  5046. - key: dmg
  5047. name: Damage
  5048. value: 30
  5049. stringValue: 0
  5050. upgradeIncrement: 3
  5051. coreStats: 0
  5052. visible: 1
  5053. visibleInStatsPanel: 0
  5054. displayFormat: 1
  5055. suffixes:
  5056. compareInfo: 1
  5057. randomChange: 100
  5058. locked: 0
  5059. isFixed: 1
  5060. minValue: 30
  5061. maxValue: 30
  5062. fold: 1
  5063. - key: delay
  5064. name: Damage Delay
  5065. value: 0.3
  5066. stringValue: 0
  5067. upgradeIncrement: -0.02
  5068. coreStats: 0
  5069. visible: 1
  5070. visibleInStatsPanel: 0
  5071. displayFormat: 1
  5072. suffixes: ' sec'
  5073. compareInfo: 1
  5074. randomChange: 100
  5075. locked: 0
  5076. isFixed: 1
  5077. minValue: 0.3
  5078. maxValue: 0.3
  5079. fold: 1
  5080. - key: spcost
  5081. name: SP Cost
  5082. value: 15
  5083. stringValue: 0
  5084. upgradeIncrement: -1
  5085. coreStats: 1
  5086. visible: 1
  5087. visibleInStatsPanel: 0
  5088. displayFormat: 1
  5089. suffixes:
  5090. compareInfo: 0
  5091. randomChange: 100
  5092. locked: 0
  5093. isFixed: 1
  5094. minValue: 15
  5095. maxValue: 15
  5096. fold: 1
  5097. maximumRandomAttributes: 5
  5098. enchantments:
  5099. craftMaterials: []
  5100. actions:
  5101. - Skill_9
  5102. tags:
  5103. - Mage
  5104. customData: []
  5105. lastUseTimeStamp: 0
  5106. restrictionKey:
  5107. restrictionValue: 0
  5108. socketingSlots: 0
  5109. socketedItems:
  5110. socketingTag: []
  5111. fold: 0
  5112. - uid: 71
  5113. name: Skill 10
  5114. description: Example Skill.
  5115. type: 4
  5116. icon: {fileID: 2800000, guid: 4c189ee2ac5f64c43a65d0787aa97bab, type: 3}
  5117. quality: 2
  5118. tradeable: 1
  5119. deletable: 0
  5120. useable: 1
  5121. consumable: 0
  5122. visible: 1
  5123. price: 500
  5124. currency: 1
  5125. maxiumStack: 1
  5126. upgradeLevel: 0
  5127. weight: 0
  5128. dropRates: 0
  5129. favorite: 0
  5130. attributes:
  5131. - key: cd
  5132. name: Cool Down
  5133. value: 5
  5134. stringValue: 0
  5135. upgradeIncrement: -0.3
  5136. coreStats: 1
  5137. visible: 1
  5138. visibleInStatsPanel: 0
  5139. displayFormat: 1
  5140. suffixes: ' sec'
  5141. compareInfo: 0
  5142. randomChange: 100
  5143. locked: 0
  5144. isFixed: 1
  5145. minValue: 5
  5146. maxValue: 5
  5147. fold: 1
  5148. - key: dmg
  5149. name: Damage
  5150. value: 30
  5151. stringValue: 0
  5152. upgradeIncrement: 3
  5153. coreStats: 0
  5154. visible: 1
  5155. visibleInStatsPanel: 0
  5156. displayFormat: 1
  5157. suffixes:
  5158. compareInfo: 1
  5159. randomChange: 100
  5160. locked: 0
  5161. isFixed: 1
  5162. minValue: 30
  5163. maxValue: 30
  5164. fold: 1
  5165. - key: delay
  5166. name: Damage Delay
  5167. value: 0.3
  5168. stringValue: 0
  5169. upgradeIncrement: -0.02
  5170. coreStats: 0
  5171. visible: 1
  5172. visibleInStatsPanel: 0
  5173. displayFormat: 1
  5174. suffixes: ' sec'
  5175. compareInfo: 1
  5176. randomChange: 100
  5177. locked: 0
  5178. isFixed: 1
  5179. minValue: 0.3
  5180. maxValue: 0.3
  5181. fold: 1
  5182. - key: spcost
  5183. name: SP Cost
  5184. value: 15
  5185. stringValue: 0
  5186. upgradeIncrement: -1
  5187. coreStats: 1
  5188. visible: 1
  5189. visibleInStatsPanel: 0
  5190. displayFormat: 1
  5191. suffixes:
  5192. compareInfo: 0
  5193. randomChange: 100
  5194. locked: 0
  5195. isFixed: 1
  5196. minValue: 15
  5197. maxValue: 15
  5198. fold: 1
  5199. maximumRandomAttributes: 5
  5200. enchantments:
  5201. craftMaterials: []
  5202. actions:
  5203. - Skill_10
  5204. tags:
  5205. - Mage
  5206. customData: []
  5207. lastUseTimeStamp: 0
  5208. restrictionKey:
  5209. restrictionValue: 0
  5210. socketingSlots: 0
  5211. socketedItems:
  5212. socketingTag: []
  5213. fold: 0
  5214. - uid: 72
  5215. name: Skill 11
  5216. description: Example Skill.
  5217. type: 4
  5218. icon: {fileID: 2800000, guid: d17bcc64ae8db344f98c00be712c9a5b, type: 3}
  5219. quality: 3
  5220. tradeable: 1
  5221. deletable: 0
  5222. useable: 1
  5223. consumable: 0
  5224. visible: 1
  5225. price: 500
  5226. currency: 1
  5227. maxiumStack: 1
  5228. upgradeLevel: 0
  5229. weight: 0
  5230. dropRates: 0
  5231. favorite: 0
  5232. attributes:
  5233. - key: cd
  5234. name: Cool Down
  5235. value: 7
  5236. stringValue: 0
  5237. upgradeIncrement: -0.3
  5238. coreStats: 1
  5239. visible: 1
  5240. visibleInStatsPanel: 0
  5241. displayFormat: 1
  5242. suffixes: ' sec'
  5243. compareInfo: 0
  5244. randomChange: 100
  5245. locked: 0
  5246. isFixed: 1
  5247. minValue: 7
  5248. maxValue: 7
  5249. fold: 1
  5250. - key: dmg
  5251. name: Damage
  5252. value: 30
  5253. stringValue: 0
  5254. upgradeIncrement: 3
  5255. coreStats: 0
  5256. visible: 1
  5257. visibleInStatsPanel: 0
  5258. displayFormat: 1
  5259. suffixes:
  5260. compareInfo: 1
  5261. randomChange: 100
  5262. locked: 0
  5263. isFixed: 1
  5264. minValue: 30
  5265. maxValue: 30
  5266. fold: 1
  5267. - key: delay
  5268. name: Damage Delay
  5269. value: 0.3
  5270. stringValue: 0
  5271. upgradeIncrement: -0.02
  5272. coreStats: 0
  5273. visible: 1
  5274. visibleInStatsPanel: 0
  5275. displayFormat: 1
  5276. suffixes: ' sec'
  5277. compareInfo: 1
  5278. randomChange: 100
  5279. locked: 0
  5280. isFixed: 1
  5281. minValue: 0.3
  5282. maxValue: 0.3
  5283. fold: 1
  5284. - key: spcost
  5285. name: SP Cost
  5286. value: 15
  5287. stringValue: 0
  5288. upgradeIncrement: -1
  5289. coreStats: 1
  5290. visible: 1
  5291. visibleInStatsPanel: 0
  5292. displayFormat: 1
  5293. suffixes:
  5294. compareInfo: 0
  5295. randomChange: 100
  5296. locked: 0
  5297. isFixed: 1
  5298. minValue: 15
  5299. maxValue: 15
  5300. fold: 1
  5301. maximumRandomAttributes: 5
  5302. enchantments:
  5303. craftMaterials: []
  5304. actions:
  5305. - Skill_11
  5306. tags:
  5307. - Mage
  5308. customData: []
  5309. lastUseTimeStamp: 0
  5310. restrictionKey:
  5311. restrictionValue: 0
  5312. socketingSlots: 0
  5313. socketedItems:
  5314. socketingTag: []
  5315. fold: 0
  5316. - uid: 73
  5317. name: Skill 12
  5318. description: Example Skill.
  5319. type: 4
  5320. icon: {fileID: 2800000, guid: 3755acb606a5d7f44927ee243fbf1ee1, type: 3}
  5321. quality: 3
  5322. tradeable: 1
  5323. deletable: 0
  5324. useable: 1
  5325. consumable: 0
  5326. visible: 1
  5327. price: 500
  5328. currency: 1
  5329. maxiumStack: 1
  5330. upgradeLevel: 0
  5331. weight: 0
  5332. dropRates: 0
  5333. favorite: 0
  5334. attributes:
  5335. - key: cd
  5336. name: Cool Down
  5337. value: 3
  5338. stringValue: 0
  5339. upgradeIncrement: -0.3
  5340. coreStats: 1
  5341. visible: 1
  5342. visibleInStatsPanel: 0
  5343. displayFormat: 1
  5344. suffixes: ' sec'
  5345. compareInfo: 0
  5346. randomChange: 100
  5347. locked: 0
  5348. isFixed: 1
  5349. minValue: 3
  5350. maxValue: 3
  5351. fold: 1
  5352. - key: dmg
  5353. name: Damage
  5354. value: 30
  5355. stringValue: 0
  5356. upgradeIncrement: 3
  5357. coreStats: 0
  5358. visible: 1
  5359. visibleInStatsPanel: 0
  5360. displayFormat: 1
  5361. suffixes:
  5362. compareInfo: 1
  5363. randomChange: 100
  5364. locked: 0
  5365. isFixed: 1
  5366. minValue: 30
  5367. maxValue: 30
  5368. fold: 1
  5369. - key: delay
  5370. name: Damage Delay
  5371. value: 0.3
  5372. stringValue: 0
  5373. upgradeIncrement: -0.02
  5374. coreStats: 0
  5375. visible: 1
  5376. visibleInStatsPanel: 0
  5377. displayFormat: 1
  5378. suffixes: ' sec'
  5379. compareInfo: 1
  5380. randomChange: 100
  5381. locked: 0
  5382. isFixed: 1
  5383. minValue: 0.3
  5384. maxValue: 0.3
  5385. fold: 1
  5386. - key: spcost
  5387. name: SP Cost
  5388. value: 15
  5389. stringValue: 0
  5390. upgradeIncrement: -1
  5391. coreStats: 1
  5392. visible: 1
  5393. visibleInStatsPanel: 0
  5394. displayFormat: 1
  5395. suffixes:
  5396. compareInfo: 0
  5397. randomChange: 100
  5398. locked: 0
  5399. isFixed: 1
  5400. minValue: 15
  5401. maxValue: 15
  5402. fold: 1
  5403. maximumRandomAttributes: 5
  5404. enchantments:
  5405. craftMaterials: []
  5406. actions:
  5407. - Skill_12
  5408. tags:
  5409. - Mage
  5410. customData: []
  5411. lastUseTimeStamp: 0
  5412. restrictionKey:
  5413. restrictionValue: 0
  5414. socketingSlots: 0
  5415. socketedItems:
  5416. socketingTag: []
  5417. fold: 0
  5418. - uid: 74
  5419. name: Skill 13
  5420. description: Example Skill.
  5421. type: 4
  5422. icon: {fileID: 2800000, guid: 3755acb606a5d7f44927ee243fbf1ee1, type: 3}
  5423. quality: 0
  5424. tradeable: 1
  5425. deletable: 0
  5426. useable: 1
  5427. consumable: 0
  5428. visible: 1
  5429. price: 500
  5430. currency: 1
  5431. maxiumStack: 1
  5432. upgradeLevel: 0
  5433. weight: 0
  5434. dropRates: 0
  5435. favorite: 0
  5436. attributes:
  5437. - key: cd
  5438. name: Cool Down
  5439. value: 30
  5440. stringValue: 0
  5441. upgradeIncrement: -0.3
  5442. coreStats: 1
  5443. visible: 1
  5444. visibleInStatsPanel: 0
  5445. displayFormat: 1
  5446. suffixes: ' sec'
  5447. compareInfo: 0
  5448. randomChange: 100
  5449. locked: 0
  5450. isFixed: 1
  5451. minValue: 30
  5452. maxValue: 30
  5453. fold: 1
  5454. - key: dmg
  5455. name: Damage
  5456. value: 30
  5457. stringValue: 0
  5458. upgradeIncrement: 3
  5459. coreStats: 0
  5460. visible: 1
  5461. visibleInStatsPanel: 0
  5462. displayFormat: 1
  5463. suffixes:
  5464. compareInfo: 1
  5465. randomChange: 100
  5466. locked: 0
  5467. isFixed: 1
  5468. minValue: 30
  5469. maxValue: 30
  5470. fold: 1
  5471. - key: delay
  5472. name: Damage Delay
  5473. value: 0.3
  5474. stringValue: 0
  5475. upgradeIncrement: -0.02
  5476. coreStats: 0
  5477. visible: 1
  5478. visibleInStatsPanel: 0
  5479. displayFormat: 1
  5480. suffixes: ' sec'
  5481. compareInfo: 1
  5482. randomChange: 100
  5483. locked: 0
  5484. isFixed: 1
  5485. minValue: 0.3
  5486. maxValue: 0.3
  5487. fold: 1
  5488. - key: spcost
  5489. name: SP Cost
  5490. value: 15
  5491. stringValue: 0
  5492. upgradeIncrement: -1
  5493. coreStats: 1
  5494. visible: 1
  5495. visibleInStatsPanel: 0
  5496. displayFormat: 1
  5497. suffixes:
  5498. compareInfo: 0
  5499. randomChange: 100
  5500. locked: 0
  5501. isFixed: 1
  5502. minValue: 15
  5503. maxValue: 15
  5504. fold: 1
  5505. maximumRandomAttributes: 5
  5506. enchantments:
  5507. craftMaterials: []
  5508. actions:
  5509. - Skill_13
  5510. tags:
  5511. - Knight
  5512. customData: []
  5513. lastUseTimeStamp: 0
  5514. restrictionKey:
  5515. restrictionValue: 0
  5516. socketingSlots: 0
  5517. socketedItems:
  5518. socketingTag: []
  5519. fold: 0
  5520. - uid: 75
  5521. name: Skill 14
  5522. description: Example Skill.
  5523. type: 4
  5524. icon: {fileID: 2800000, guid: 9c17f88a9d167344d90a64768347f593, type: 3}
  5525. quality: 0
  5526. tradeable: 1
  5527. deletable: 0
  5528. useable: 1
  5529. consumable: 0
  5530. visible: 1
  5531. price: 500
  5532. currency: 1
  5533. maxiumStack: 1
  5534. upgradeLevel: 0
  5535. weight: 0
  5536. dropRates: 0
  5537. favorite: 0
  5538. attributes:
  5539. - key: cd
  5540. name: Cool Down
  5541. value: 15
  5542. stringValue: 0
  5543. upgradeIncrement: -0.3
  5544. coreStats: 1
  5545. visible: 1
  5546. visibleInStatsPanel: 0
  5547. displayFormat: 1
  5548. suffixes: ' sec'
  5549. compareInfo: 0
  5550. randomChange: 100
  5551. locked: 0
  5552. isFixed: 1
  5553. minValue: 15
  5554. maxValue: 15
  5555. fold: 1
  5556. - key: dmg
  5557. name: Damage
  5558. value: 30
  5559. stringValue: 0
  5560. upgradeIncrement: 3
  5561. coreStats: 0
  5562. visible: 1
  5563. visibleInStatsPanel: 0
  5564. displayFormat: 1
  5565. suffixes:
  5566. compareInfo: 1
  5567. randomChange: 100
  5568. locked: 0
  5569. isFixed: 1
  5570. minValue: 30
  5571. maxValue: 30
  5572. fold: 1
  5573. - key: delay
  5574. name: Damage Delay
  5575. value: 0.3
  5576. stringValue: 0
  5577. upgradeIncrement: -0.02
  5578. coreStats: 0
  5579. visible: 1
  5580. visibleInStatsPanel: 0
  5581. displayFormat: 1
  5582. suffixes: ' sec'
  5583. compareInfo: 1
  5584. randomChange: 100
  5585. locked: 0
  5586. isFixed: 1
  5587. minValue: 0.3
  5588. maxValue: 0.3
  5589. fold: 1
  5590. - key: spcost
  5591. name: SP Cost
  5592. value: 15
  5593. stringValue: 0
  5594. upgradeIncrement: -1
  5595. coreStats: 1
  5596. visible: 1
  5597. visibleInStatsPanel: 0
  5598. displayFormat: 1
  5599. suffixes:
  5600. compareInfo: 0
  5601. randomChange: 100
  5602. locked: 0
  5603. isFixed: 1
  5604. minValue: 15
  5605. maxValue: 15
  5606. fold: 1
  5607. maximumRandomAttributes: 5
  5608. enchantments:
  5609. craftMaterials: []
  5610. actions:
  5611. - Skill_14
  5612. tags:
  5613. - Knight
  5614. customData: []
  5615. lastUseTimeStamp: 0
  5616. restrictionKey:
  5617. restrictionValue: 0
  5618. socketingSlots: 0
  5619. socketedItems:
  5620. socketingTag: []
  5621. fold: 0
  5622. - uid: 76
  5623. name: Skill 15
  5624. description: Example Skill.
  5625. type: 4
  5626. icon: {fileID: 2800000, guid: b32c4b2f3bc4d0549bae30c7422d27f5, type: 3}
  5627. quality: 1
  5628. tradeable: 1
  5629. deletable: 0
  5630. useable: 1
  5631. consumable: 0
  5632. visible: 1
  5633. price: 500
  5634. currency: 1
  5635. maxiumStack: 1
  5636. upgradeLevel: 0
  5637. weight: 0
  5638. dropRates: 0
  5639. favorite: 0
  5640. attributes:
  5641. - key: cd
  5642. name: Cool Down
  5643. value: 12
  5644. stringValue: 0
  5645. upgradeIncrement: -0.3
  5646. coreStats: 1
  5647. visible: 1
  5648. visibleInStatsPanel: 0
  5649. displayFormat: 1
  5650. suffixes: ' sec'
  5651. compareInfo: 0
  5652. randomChange: 100
  5653. locked: 0
  5654. isFixed: 1
  5655. minValue: 12
  5656. maxValue: 12
  5657. fold: 1
  5658. - key: dmg
  5659. name: Damage
  5660. value: 30
  5661. stringValue: 0
  5662. upgradeIncrement: 3
  5663. coreStats: 0
  5664. visible: 1
  5665. visibleInStatsPanel: 0
  5666. displayFormat: 1
  5667. suffixes:
  5668. compareInfo: 1
  5669. randomChange: 100
  5670. locked: 0
  5671. isFixed: 1
  5672. minValue: 30
  5673. maxValue: 30
  5674. fold: 1
  5675. - key: delay
  5676. name: Damage Delay
  5677. value: 0.3
  5678. stringValue: 0
  5679. upgradeIncrement: -0.02
  5680. coreStats: 0
  5681. visible: 1
  5682. visibleInStatsPanel: 0
  5683. displayFormat: 1
  5684. suffixes: ' sec'
  5685. compareInfo: 1
  5686. randomChange: 100
  5687. locked: 0
  5688. isFixed: 1
  5689. minValue: 0.3
  5690. maxValue: 0.3
  5691. fold: 1
  5692. - key: spcost
  5693. name: SP Cost
  5694. value: 15
  5695. stringValue: 0
  5696. upgradeIncrement: -1
  5697. coreStats: 1
  5698. visible: 1
  5699. visibleInStatsPanel: 0
  5700. displayFormat: 1
  5701. suffixes:
  5702. compareInfo: 0
  5703. randomChange: 100
  5704. locked: 0
  5705. isFixed: 1
  5706. minValue: 15
  5707. maxValue: 15
  5708. fold: 1
  5709. maximumRandomAttributes: 5
  5710. enchantments:
  5711. craftMaterials: []
  5712. actions:
  5713. - Skill_15
  5714. tags:
  5715. - Knight
  5716. customData: []
  5717. lastUseTimeStamp: 0
  5718. restrictionKey:
  5719. restrictionValue: 0
  5720. socketingSlots: 0
  5721. socketedItems:
  5722. socketingTag: []
  5723. fold: 0
  5724. - uid: 77
  5725. name: Skill 16
  5726. description: Example Skill.
  5727. type: 4
  5728. icon: {fileID: 2800000, guid: 1767f3a09161086429ba41776bcbd446, type: 3}
  5729. quality: 1
  5730. tradeable: 1
  5731. deletable: 0
  5732. useable: 1
  5733. consumable: 0
  5734. visible: 1
  5735. price: 500
  5736. currency: 1
  5737. maxiumStack: 1
  5738. upgradeLevel: 0
  5739. weight: 0
  5740. dropRates: 0
  5741. favorite: 0
  5742. attributes:
  5743. - key: cd
  5744. name: Cool Down
  5745. value: 5
  5746. stringValue: 0
  5747. upgradeIncrement: -0.3
  5748. coreStats: 1
  5749. visible: 1
  5750. visibleInStatsPanel: 0
  5751. displayFormat: 1
  5752. suffixes: ' sec'
  5753. compareInfo: 0
  5754. randomChange: 100
  5755. locked: 0
  5756. isFixed: 1
  5757. minValue: 5
  5758. maxValue: 5
  5759. fold: 1
  5760. - key: dmg
  5761. name: Damage
  5762. value: 30
  5763. stringValue: 0
  5764. upgradeIncrement: 3
  5765. coreStats: 0
  5766. visible: 1
  5767. visibleInStatsPanel: 0
  5768. displayFormat: 1
  5769. suffixes:
  5770. compareInfo: 1
  5771. randomChange: 100
  5772. locked: 0
  5773. isFixed: 1
  5774. minValue: 30
  5775. maxValue: 30
  5776. fold: 1
  5777. - key: delay
  5778. name: Damage Delay
  5779. value: 0.3
  5780. stringValue: 0
  5781. upgradeIncrement: -0.02
  5782. coreStats: 0
  5783. visible: 1
  5784. visibleInStatsPanel: 0
  5785. displayFormat: 1
  5786. suffixes: ' sec'
  5787. compareInfo: 1
  5788. randomChange: 100
  5789. locked: 0
  5790. isFixed: 1
  5791. minValue: 0.3
  5792. maxValue: 0.3
  5793. fold: 1
  5794. - key: spcost
  5795. name: SP Cost
  5796. value: 15
  5797. stringValue: 0
  5798. upgradeIncrement: -1
  5799. coreStats: 1
  5800. visible: 1
  5801. visibleInStatsPanel: 0
  5802. displayFormat: 1
  5803. suffixes:
  5804. compareInfo: 0
  5805. randomChange: 100
  5806. locked: 0
  5807. isFixed: 1
  5808. minValue: 15
  5809. maxValue: 15
  5810. fold: 1
  5811. maximumRandomAttributes: 5
  5812. enchantments:
  5813. craftMaterials: []
  5814. actions:
  5815. - Skill_16
  5816. tags:
  5817. - Knight
  5818. customData: []
  5819. lastUseTimeStamp: 0
  5820. restrictionKey:
  5821. restrictionValue: 0
  5822. socketingSlots: 0
  5823. socketedItems:
  5824. socketingTag: []
  5825. fold: 0
  5826. - uid: 78
  5827. name: Skill 17
  5828. description: Example Skill.
  5829. type: 4
  5830. icon: {fileID: 2800000, guid: d9d7c3e9e2fc16147b603b6e9286f987, type: 3}
  5831. quality: 2
  5832. tradeable: 1
  5833. deletable: 0
  5834. useable: 1
  5835. consumable: 0
  5836. visible: 1
  5837. price: 500
  5838. currency: 1
  5839. maxiumStack: 1
  5840. upgradeLevel: 0
  5841. weight: 0
  5842. dropRates: 0
  5843. favorite: 0
  5844. attributes:
  5845. - key: cd
  5846. name: Cool Down
  5847. value: 8
  5848. stringValue: 0
  5849. upgradeIncrement: -0.3
  5850. coreStats: 1
  5851. visible: 1
  5852. visibleInStatsPanel: 0
  5853. displayFormat: 1
  5854. suffixes: ' sec'
  5855. compareInfo: 0
  5856. randomChange: 100
  5857. locked: 0
  5858. isFixed: 1
  5859. minValue: 8
  5860. maxValue: 8
  5861. fold: 1
  5862. - key: dmg
  5863. name: Damage
  5864. value: 30
  5865. stringValue: 0
  5866. upgradeIncrement: 3
  5867. coreStats: 0
  5868. visible: 1
  5869. visibleInStatsPanel: 0
  5870. displayFormat: 1
  5871. suffixes:
  5872. compareInfo: 1
  5873. randomChange: 100
  5874. locked: 0
  5875. isFixed: 1
  5876. minValue: 30
  5877. maxValue: 30
  5878. fold: 1
  5879. - key: delay
  5880. name: Damage Delay
  5881. value: 0.3
  5882. stringValue: 0
  5883. upgradeIncrement: -0.02
  5884. coreStats: 0
  5885. visible: 1
  5886. visibleInStatsPanel: 0
  5887. displayFormat: 1
  5888. suffixes: ' sec'
  5889. compareInfo: 1
  5890. randomChange: 100
  5891. locked: 0
  5892. isFixed: 1
  5893. minValue: 0.3
  5894. maxValue: 0.3
  5895. fold: 1
  5896. - key: spcost
  5897. name: SP Cost
  5898. value: 15
  5899. stringValue: 0
  5900. upgradeIncrement: -1
  5901. coreStats: 1
  5902. visible: 1
  5903. visibleInStatsPanel: 0
  5904. displayFormat: 1
  5905. suffixes:
  5906. compareInfo: 0
  5907. randomChange: 100
  5908. locked: 0
  5909. isFixed: 1
  5910. minValue: 15
  5911. maxValue: 15
  5912. fold: 1
  5913. maximumRandomAttributes: 5
  5914. enchantments:
  5915. craftMaterials: []
  5916. actions:
  5917. - Skill_17
  5918. tags:
  5919. - Knight
  5920. customData: []
  5921. lastUseTimeStamp: 0
  5922. restrictionKey:
  5923. restrictionValue: 0
  5924. socketingSlots: 0
  5925. socketedItems:
  5926. socketingTag: []
  5927. fold: 0
  5928. - uid: 79
  5929. name: Skill 18
  5930. description: Example Skill.
  5931. type: 4
  5932. icon: {fileID: 2800000, guid: 251d65d93e107e44d9b6583832458052, type: 3}
  5933. quality: 3
  5934. tradeable: 1
  5935. deletable: 0
  5936. useable: 1
  5937. consumable: 0
  5938. visible: 1
  5939. price: 500
  5940. currency: 1
  5941. maxiumStack: 1
  5942. upgradeLevel: 0
  5943. weight: 0
  5944. dropRates: 0
  5945. favorite: 0
  5946. attributes:
  5947. - key: cd
  5948. name: Cool Down
  5949. value: 10
  5950. stringValue: 0
  5951. upgradeIncrement: -0.3
  5952. coreStats: 1
  5953. visible: 1
  5954. visibleInStatsPanel: 0
  5955. displayFormat: 1
  5956. suffixes: ' sec'
  5957. compareInfo: 0
  5958. randomChange: 100
  5959. locked: 0
  5960. isFixed: 1
  5961. minValue: 10
  5962. maxValue: 10
  5963. fold: 1
  5964. - key: dmg
  5965. name: Damage
  5966. value: 30
  5967. stringValue: 0
  5968. upgradeIncrement: 3
  5969. coreStats: 0
  5970. visible: 1
  5971. visibleInStatsPanel: 0
  5972. displayFormat: 1
  5973. suffixes:
  5974. compareInfo: 1
  5975. randomChange: 100
  5976. locked: 0
  5977. isFixed: 1
  5978. minValue: 30
  5979. maxValue: 30
  5980. fold: 1
  5981. - key: delay
  5982. name: Damage Delay
  5983. value: 0.3
  5984. stringValue: 0
  5985. upgradeIncrement: -0.02
  5986. coreStats: 0
  5987. visible: 1
  5988. visibleInStatsPanel: 0
  5989. displayFormat: 1
  5990. suffixes: ' sec'
  5991. compareInfo: 1
  5992. randomChange: 100
  5993. locked: 0
  5994. isFixed: 1
  5995. minValue: 0.3
  5996. maxValue: 0.3
  5997. fold: 1
  5998. - key: spcost
  5999. name: SP Cost
  6000. value: 15
  6001. stringValue: 0
  6002. upgradeIncrement: -1
  6003. coreStats: 1
  6004. visible: 1
  6005. visibleInStatsPanel: 0
  6006. displayFormat: 1
  6007. suffixes:
  6008. compareInfo: 0
  6009. randomChange: 100
  6010. locked: 0
  6011. isFixed: 1
  6012. minValue: 15
  6013. maxValue: 15
  6014. fold: 1
  6015. maximumRandomAttributes: 5
  6016. enchantments:
  6017. craftMaterials: []
  6018. actions:
  6019. - Skill_18
  6020. tags:
  6021. - Knight
  6022. customData: []
  6023. lastUseTimeStamp: 0
  6024. restrictionKey:
  6025. restrictionValue: 0
  6026. socketingSlots: 0
  6027. socketedItems:
  6028. socketingTag: []
  6029. fold: 0
  6030. - uid: 80
  6031. name: Skill 19
  6032. description: Example Skill.
  6033. type: 4
  6034. icon: {fileID: 2800000, guid: b3eb6a3c6066308409cb3ff20f817203, type: 3}
  6035. quality: 2
  6036. tradeable: 1
  6037. deletable: 0
  6038. useable: 1
  6039. consumable: 0
  6040. visible: 1
  6041. price: 500
  6042. currency: 1
  6043. maxiumStack: 1
  6044. upgradeLevel: 0
  6045. weight: 0
  6046. dropRates: 0
  6047. favorite: 0
  6048. attributes:
  6049. - key: cd
  6050. name: Cool Down
  6051. value: 12
  6052. stringValue: 0
  6053. upgradeIncrement: -0.3
  6054. coreStats: 1
  6055. visible: 1
  6056. visibleInStatsPanel: 0
  6057. displayFormat: 1
  6058. suffixes: ' sec'
  6059. compareInfo: 0
  6060. randomChange: 100
  6061. locked: 0
  6062. isFixed: 1
  6063. minValue: 12
  6064. maxValue: 12
  6065. fold: 1
  6066. - key: dmg
  6067. name: Damage
  6068. value: 30
  6069. stringValue: 0
  6070. upgradeIncrement: 3
  6071. coreStats: 0
  6072. visible: 1
  6073. visibleInStatsPanel: 0
  6074. displayFormat: 1
  6075. suffixes:
  6076. compareInfo: 1
  6077. randomChange: 100
  6078. locked: 0
  6079. isFixed: 1
  6080. minValue: 30
  6081. maxValue: 30
  6082. fold: 1
  6083. - key: delay
  6084. name: Damage Delay
  6085. value: 0.3
  6086. stringValue: 0
  6087. upgradeIncrement: -0.02
  6088. coreStats: 0
  6089. visible: 1
  6090. visibleInStatsPanel: 0
  6091. displayFormat: 1
  6092. suffixes: ' sec'
  6093. compareInfo: 1
  6094. randomChange: 100
  6095. locked: 0
  6096. isFixed: 1
  6097. minValue: 0.3
  6098. maxValue: 0.3
  6099. fold: 1
  6100. - key: spcost
  6101. name: SP Cost
  6102. value: 15
  6103. stringValue: 0
  6104. upgradeIncrement: -1
  6105. coreStats: 1
  6106. visible: 1
  6107. visibleInStatsPanel: 0
  6108. displayFormat: 1
  6109. suffixes:
  6110. compareInfo: 0
  6111. randomChange: 100
  6112. locked: 0
  6113. isFixed: 1
  6114. minValue: 15
  6115. maxValue: 15
  6116. fold: 1
  6117. maximumRandomAttributes: 5
  6118. enchantments:
  6119. craftMaterials: []
  6120. actions:
  6121. - Skill_19
  6122. tags:
  6123. - Warrior
  6124. customData: []
  6125. lastUseTimeStamp: 0
  6126. restrictionKey:
  6127. restrictionValue: 0
  6128. socketingSlots: 0
  6129. socketedItems:
  6130. socketingTag: []
  6131. fold: 0
  6132. - uid: 81
  6133. name: Skill 20
  6134. description: Example Skill.
  6135. type: 4
  6136. icon: {fileID: 2800000, guid: 87d5f22a130e84a4dbc657494c064b20, type: 3}
  6137. quality: 2
  6138. tradeable: 1
  6139. deletable: 0
  6140. useable: 1
  6141. consumable: 0
  6142. visible: 1
  6143. price: 500
  6144. currency: 1
  6145. maxiumStack: 1
  6146. upgradeLevel: 0
  6147. weight: 0
  6148. dropRates: 0
  6149. favorite: 0
  6150. attributes:
  6151. - key: cd
  6152. name: Cool Down
  6153. value: 10
  6154. stringValue: 0
  6155. upgradeIncrement: -0.3
  6156. coreStats: 1
  6157. visible: 1
  6158. visibleInStatsPanel: 0
  6159. displayFormat: 1
  6160. suffixes: ' sec'
  6161. compareInfo: 0
  6162. randomChange: 100
  6163. locked: 0
  6164. isFixed: 1
  6165. minValue: 10
  6166. maxValue: 10
  6167. fold: 1
  6168. - key: dmg
  6169. name: Damage
  6170. value: 30
  6171. stringValue: 0
  6172. upgradeIncrement: 3
  6173. coreStats: 0
  6174. visible: 1
  6175. visibleInStatsPanel: 0
  6176. displayFormat: 1
  6177. suffixes:
  6178. compareInfo: 1
  6179. randomChange: 100
  6180. locked: 0
  6181. isFixed: 1
  6182. minValue: 30
  6183. maxValue: 30
  6184. fold: 1
  6185. - key: delay
  6186. name: Damage Delay
  6187. value: 0.3
  6188. stringValue: 0
  6189. upgradeIncrement: -0.02
  6190. coreStats: 0
  6191. visible: 1
  6192. visibleInStatsPanel: 0
  6193. displayFormat: 1
  6194. suffixes: ' sec'
  6195. compareInfo: 1
  6196. randomChange: 100
  6197. locked: 0
  6198. isFixed: 1
  6199. minValue: 0.3
  6200. maxValue: 0.3
  6201. fold: 1
  6202. - key: spcost
  6203. name: SP Cost
  6204. value: 15
  6205. stringValue: 0
  6206. upgradeIncrement: -1
  6207. coreStats: 1
  6208. visible: 1
  6209. visibleInStatsPanel: 0
  6210. displayFormat: 1
  6211. suffixes:
  6212. compareInfo: 0
  6213. randomChange: 100
  6214. locked: 0
  6215. isFixed: 1
  6216. minValue: 15
  6217. maxValue: 15
  6218. fold: 1
  6219. maximumRandomAttributes: 5
  6220. enchantments:
  6221. craftMaterials: []
  6222. actions:
  6223. - Skill_20
  6224. tags:
  6225. - Warrior
  6226. customData: []
  6227. lastUseTimeStamp: 0
  6228. restrictionKey:
  6229. restrictionValue: 0
  6230. socketingSlots: 0
  6231. socketedItems:
  6232. socketingTag: []
  6233. fold: 0
  6234. - uid: 82
  6235. name: Skill 21
  6236. description: Example Skill.
  6237. type: 4
  6238. icon: {fileID: 2800000, guid: 0c859e78f6aea5a46adf9e217cb77785, type: 3}
  6239. quality: 3
  6240. tradeable: 1
  6241. deletable: 0
  6242. useable: 1
  6243. consumable: 0
  6244. visible: 1
  6245. price: 500
  6246. currency: 1
  6247. maxiumStack: 1
  6248. upgradeLevel: 0
  6249. weight: 0
  6250. dropRates: 0
  6251. favorite: 0
  6252. attributes:
  6253. - key: cd
  6254. name: Cool Down
  6255. value: 5
  6256. stringValue: 0
  6257. upgradeIncrement: -0.3
  6258. coreStats: 1
  6259. visible: 1
  6260. visibleInStatsPanel: 0
  6261. displayFormat: 1
  6262. suffixes: ' sec'
  6263. compareInfo: 0
  6264. randomChange: 100
  6265. locked: 0
  6266. isFixed: 1
  6267. minValue: 5
  6268. maxValue: 5
  6269. fold: 1
  6270. - key: dmg
  6271. name: Damage
  6272. value: 30
  6273. stringValue: 0
  6274. upgradeIncrement: 3
  6275. coreStats: 0
  6276. visible: 1
  6277. visibleInStatsPanel: 0
  6278. displayFormat: 1
  6279. suffixes:
  6280. compareInfo: 1
  6281. randomChange: 100
  6282. locked: 0
  6283. isFixed: 1
  6284. minValue: 30
  6285. maxValue: 30
  6286. fold: 1
  6287. - key: delay
  6288. name: Damage Delay
  6289. value: 0.3
  6290. stringValue: 0
  6291. upgradeIncrement: -0.02
  6292. coreStats: 0
  6293. visible: 1
  6294. visibleInStatsPanel: 0
  6295. displayFormat: 1
  6296. suffixes: ' sec'
  6297. compareInfo: 1
  6298. randomChange: 100
  6299. locked: 0
  6300. isFixed: 1
  6301. minValue: 0.3
  6302. maxValue: 0.3
  6303. fold: 1
  6304. - key: spcost
  6305. name: SP Cost
  6306. value: 15
  6307. stringValue: 0
  6308. upgradeIncrement: -1
  6309. coreStats: 1
  6310. visible: 1
  6311. visibleInStatsPanel: 0
  6312. displayFormat: 1
  6313. suffixes:
  6314. compareInfo: 0
  6315. randomChange: 100
  6316. locked: 0
  6317. isFixed: 1
  6318. minValue: 15
  6319. maxValue: 15
  6320. fold: 1
  6321. maximumRandomAttributes: 5
  6322. enchantments:
  6323. craftMaterials: []
  6324. actions:
  6325. - Skill_21
  6326. tags:
  6327. - Warrior
  6328. customData: []
  6329. lastUseTimeStamp: 0
  6330. restrictionKey:
  6331. restrictionValue: 0
  6332. socketingSlots: 0
  6333. socketedItems:
  6334. socketingTag: []
  6335. fold: 0
  6336. - uid: 83
  6337. name: Skill 22
  6338. description: Example Skill.
  6339. type: 4
  6340. icon: {fileID: 2800000, guid: 79ac69c403556be47b97ebdefa0d057b, type: 3}
  6341. quality: 0
  6342. tradeable: 1
  6343. deletable: 0
  6344. useable: 1
  6345. consumable: 0
  6346. visible: 1
  6347. price: 500
  6348. currency: 1
  6349. maxiumStack: 1
  6350. upgradeLevel: 0
  6351. weight: 0
  6352. dropRates: 0
  6353. favorite: 0
  6354. attributes:
  6355. - key: cd
  6356. name: Cool Down
  6357. value: 4
  6358. stringValue: 0
  6359. upgradeIncrement: -0.3
  6360. coreStats: 1
  6361. visible: 1
  6362. visibleInStatsPanel: 0
  6363. displayFormat: 1
  6364. suffixes: ' sec'
  6365. compareInfo: 0
  6366. randomChange: 100
  6367. locked: 0
  6368. isFixed: 1
  6369. minValue: 4
  6370. maxValue: 4
  6371. fold: 1
  6372. - key: dmg
  6373. name: Damage
  6374. value: 30
  6375. stringValue: 0
  6376. upgradeIncrement: 3
  6377. coreStats: 0
  6378. visible: 1
  6379. visibleInStatsPanel: 0
  6380. displayFormat: 1
  6381. suffixes:
  6382. compareInfo: 1
  6383. randomChange: 100
  6384. locked: 0
  6385. isFixed: 1
  6386. minValue: 30
  6387. maxValue: 30
  6388. fold: 1
  6389. - key: delay
  6390. name: Damage Delay
  6391. value: 0.3
  6392. stringValue: 0
  6393. upgradeIncrement: -0.02
  6394. coreStats: 0
  6395. visible: 1
  6396. visibleInStatsPanel: 0
  6397. displayFormat: 1
  6398. suffixes: ' sec'
  6399. compareInfo: 1
  6400. randomChange: 100
  6401. locked: 0
  6402. isFixed: 1
  6403. minValue: 0.3
  6404. maxValue: 0.3
  6405. fold: 1
  6406. - key: spcost
  6407. name: SP Cost
  6408. value: 15
  6409. stringValue: 0
  6410. upgradeIncrement: -1
  6411. coreStats: 1
  6412. visible: 1
  6413. visibleInStatsPanel: 0
  6414. displayFormat: 1
  6415. suffixes:
  6416. compareInfo: 0
  6417. randomChange: 100
  6418. locked: 0
  6419. isFixed: 1
  6420. minValue: 15
  6421. maxValue: 15
  6422. fold: 1
  6423. maximumRandomAttributes: 5
  6424. enchantments:
  6425. craftMaterials: []
  6426. actions:
  6427. - Skill_22
  6428. tags:
  6429. - Healer
  6430. customData: []
  6431. lastUseTimeStamp: 0
  6432. restrictionKey:
  6433. restrictionValue: 0
  6434. socketingSlots: 0
  6435. socketedItems:
  6436. socketingTag: []
  6437. fold: 0
  6438. - uid: 84
  6439. name: Skill 23
  6440. description: Example Skill.
  6441. type: 4
  6442. icon: {fileID: 2800000, guid: 2ebfe1cf275d6bd4880be3a5fcd07751, type: 3}
  6443. quality: 1
  6444. tradeable: 1
  6445. deletable: 0
  6446. useable: 1
  6447. consumable: 0
  6448. visible: 1
  6449. price: 500
  6450. currency: 1
  6451. maxiumStack: 1
  6452. upgradeLevel: 0
  6453. weight: 0
  6454. dropRates: 0
  6455. favorite: 0
  6456. attributes:
  6457. - key: cd
  6458. name: Cool Down
  6459. value: 10
  6460. stringValue: 0
  6461. upgradeIncrement: -0.3
  6462. coreStats: 1
  6463. visible: 1
  6464. visibleInStatsPanel: 0
  6465. displayFormat: 1
  6466. suffixes: ' sec'
  6467. compareInfo: 0
  6468. randomChange: 100
  6469. locked: 0
  6470. isFixed: 1
  6471. minValue: 10
  6472. maxValue: 10
  6473. fold: 1
  6474. - key: dmg
  6475. name: Damage
  6476. value: 30
  6477. stringValue: 0
  6478. upgradeIncrement: 3
  6479. coreStats: 0
  6480. visible: 1
  6481. visibleInStatsPanel: 0
  6482. displayFormat: 1
  6483. suffixes:
  6484. compareInfo: 1
  6485. randomChange: 100
  6486. locked: 0
  6487. isFixed: 1
  6488. minValue: 30
  6489. maxValue: 30
  6490. fold: 1
  6491. - key: delay
  6492. name: Damage Delay
  6493. value: 0.3
  6494. stringValue: 0
  6495. upgradeIncrement: -0.02
  6496. coreStats: 0
  6497. visible: 1
  6498. visibleInStatsPanel: 0
  6499. displayFormat: 1
  6500. suffixes: ' sec'
  6501. compareInfo: 1
  6502. randomChange: 100
  6503. locked: 0
  6504. isFixed: 1
  6505. minValue: 0.3
  6506. maxValue: 0.3
  6507. fold: 1
  6508. - key: spcost
  6509. name: SP Cost
  6510. value: 15
  6511. stringValue: 0
  6512. upgradeIncrement: -1
  6513. coreStats: 1
  6514. visible: 1
  6515. visibleInStatsPanel: 0
  6516. displayFormat: 1
  6517. suffixes:
  6518. compareInfo: 0
  6519. randomChange: 100
  6520. locked: 0
  6521. isFixed: 1
  6522. minValue: 15
  6523. maxValue: 15
  6524. fold: 1
  6525. maximumRandomAttributes: 5
  6526. enchantments:
  6527. craftMaterials: []
  6528. actions:
  6529. - Skill_23
  6530. tags:
  6531. - Healer
  6532. customData: []
  6533. lastUseTimeStamp: 0
  6534. restrictionKey:
  6535. restrictionValue: 0
  6536. socketingSlots: 0
  6537. socketedItems:
  6538. socketingTag: []
  6539. fold: 0
  6540. - uid: 85
  6541. name: Skill 24
  6542. description: Example Skill.
  6543. type: 4
  6544. icon: {fileID: 2800000, guid: f24fa062b2c2ced4591c3c6bf53c766e, type: 3}
  6545. quality: 2
  6546. tradeable: 1
  6547. deletable: 0
  6548. useable: 1
  6549. consumable: 0
  6550. visible: 1
  6551. price: 500
  6552. currency: 1
  6553. maxiumStack: 1
  6554. upgradeLevel: 0
  6555. weight: 0
  6556. dropRates: 0
  6557. favorite: 0
  6558. attributes:
  6559. - key: cd
  6560. name: Cool Down
  6561. value: 5
  6562. stringValue: 0
  6563. upgradeIncrement: -0.3
  6564. coreStats: 1
  6565. visible: 1
  6566. visibleInStatsPanel: 0
  6567. displayFormat: 1
  6568. suffixes: ' sec'
  6569. compareInfo: 0
  6570. randomChange: 100
  6571. locked: 0
  6572. isFixed: 1
  6573. minValue: 5
  6574. maxValue: 5
  6575. fold: 1
  6576. - key: dmg
  6577. name: Damage
  6578. value: 30
  6579. stringValue: 0
  6580. upgradeIncrement: 3
  6581. coreStats: 0
  6582. visible: 1
  6583. visibleInStatsPanel: 0
  6584. displayFormat: 1
  6585. suffixes:
  6586. compareInfo: 1
  6587. randomChange: 100
  6588. locked: 0
  6589. isFixed: 1
  6590. minValue: 30
  6591. maxValue: 30
  6592. fold: 1
  6593. - key: delay
  6594. name: Damage Delay
  6595. value: 0.3
  6596. stringValue: 0
  6597. upgradeIncrement: -0.02
  6598. coreStats: 0
  6599. visible: 1
  6600. visibleInStatsPanel: 0
  6601. displayFormat: 1
  6602. suffixes: ' sec'
  6603. compareInfo: 1
  6604. randomChange: 100
  6605. locked: 0
  6606. isFixed: 1
  6607. minValue: 0.3
  6608. maxValue: 0.3
  6609. fold: 1
  6610. - key: spcost
  6611. name: SP Cost
  6612. value: 15
  6613. stringValue: 0
  6614. upgradeIncrement: -1
  6615. coreStats: 1
  6616. visible: 1
  6617. visibleInStatsPanel: 0
  6618. displayFormat: 1
  6619. suffixes:
  6620. compareInfo: 0
  6621. randomChange: 100
  6622. locked: 0
  6623. isFixed: 1
  6624. minValue: 15
  6625. maxValue: 15
  6626. fold: 1
  6627. maximumRandomAttributes: 5
  6628. enchantments:
  6629. craftMaterials: []
  6630. actions:
  6631. - Skill_24
  6632. tags:
  6633. - Healer
  6634. customData: []
  6635. lastUseTimeStamp: 0
  6636. restrictionKey:
  6637. restrictionValue: 0
  6638. socketingSlots: 0
  6639. socketedItems:
  6640. socketingTag: []
  6641. fold: 0
  6642. - uid: 86
  6643. name: Health Potion(L) Recipe
  6644. description: Example Skill.
  6645. type: 2
  6646. icon: {fileID: 2800000, guid: 031fe12f217b2d943a7dbd966de8b80c, type: 3}
  6647. quality: 1
  6648. tradeable: 0
  6649. deletable: 0
  6650. useable: 0
  6651. consumable: 0
  6652. visible: 0
  6653. price: 500
  6654. currency: 1
  6655. maxiumStack: 1
  6656. upgradeLevel: 0
  6657. weight: 0
  6658. dropRates: 0
  6659. favorite: 0
  6660. attributes: []
  6661. maximumRandomAttributes: 5
  6662. enchantments:
  6663. craftMaterials:
  6664. - {x: 1, y: 1}
  6665. actions: []
  6666. tags:
  6667. - Blueprint
  6668. customData: []
  6669. lastUseTimeStamp: 0
  6670. restrictionKey:
  6671. restrictionValue: 0
  6672. socketingSlots: 0
  6673. socketedItems:
  6674. socketingTag: []
  6675. fold: 0
  6676. - uid: 87
  6677. name: Gem of Strengh
  6678. description: Sockets on equipment to enchance its abilities.
  6679. type: 2
  6680. icon: {fileID: 2800000, guid: c5aa8ce4dd674c44d9233689e08012a2, type: 3}
  6681. quality: 2
  6682. tradeable: 1
  6683. deletable: 1
  6684. useable: 0
  6685. consumable: 0
  6686. visible: 1
  6687. price: 5
  6688. currency: 0
  6689. maxiumStack: 99
  6690. upgradeLevel: 0
  6691. weight: 0
  6692. dropRates: 23
  6693. favorite: 0
  6694. attributes:
  6695. - key: atk
  6696. name: Attack
  6697. value: 4
  6698. stringValue: 0
  6699. upgradeIncrement: 2
  6700. coreStats: 0
  6701. visible: 1
  6702. visibleInStatsPanel: 1
  6703. displayFormat: 0
  6704. suffixes:
  6705. compareInfo: 1
  6706. randomChange: 100
  6707. locked: 0
  6708. isFixed: 1
  6709. minValue: 0
  6710. maxValue: 0
  6711. fold: 1
  6712. maximumRandomAttributes: 5
  6713. enchantments:
  6714. craftMaterials: []
  6715. actions: []
  6716. tags:
  6717. - Socketing
  6718. - Red
  6719. customData: []
  6720. lastUseTimeStamp: 0
  6721. restrictionKey:
  6722. restrictionValue: 0
  6723. socketingSlots: 0
  6724. socketedItems:
  6725. socketingTag: []
  6726. fold: 0
  6727. - uid: 88
  6728. name: Gem of Speed
  6729. description: Sockets on equipment to enchance its abilities.
  6730. type: 2
  6731. icon: {fileID: 2800000, guid: ceaf9e5bf5c397a49a426a758d79a8d8, type: 3}
  6732. quality: 2
  6733. tradeable: 1
  6734. deletable: 1
  6735. useable: 0
  6736. consumable: 0
  6737. visible: 1
  6738. price: 5
  6739. currency: 0
  6740. maxiumStack: 99
  6741. upgradeLevel: 0
  6742. weight: 0
  6743. dropRates: 23
  6744. favorite: 0
  6745. attributes:
  6746. - key: agi
  6747. name: Agility
  6748. value: 2
  6749. stringValue: 0
  6750. upgradeIncrement: 1
  6751. coreStats: 0
  6752. visible: 1
  6753. visibleInStatsPanel: 1
  6754. displayFormat: 0
  6755. suffixes:
  6756. compareInfo: 1
  6757. randomChange: 100
  6758. locked: 0
  6759. isFixed: 1
  6760. minValue: 0
  6761. maxValue: 0
  6762. fold: 1
  6763. maximumRandomAttributes: 5
  6764. enchantments:
  6765. craftMaterials: []
  6766. actions: []
  6767. tags:
  6768. - Socketing
  6769. - Green
  6770. customData: []
  6771. lastUseTimeStamp: 0
  6772. restrictionKey:
  6773. restrictionValue: 0
  6774. socketingSlots: 0
  6775. socketedItems:
  6776. socketingTag: []
  6777. fold: 0
  6778. - uid: 89
  6779. name: Gem of Life
  6780. description: Sockets on equipment to enchance its abilities.
  6781. type: 2
  6782. icon: {fileID: 2800000, guid: bf957eca8c05d854c96cc68046312f1b, type: 3}
  6783. quality: 2
  6784. tradeable: 1
  6785. deletable: 1
  6786. useable: 0
  6787. consumable: 0
  6788. visible: 1
  6789. price: 5
  6790. currency: 0
  6791. maxiumStack: 99
  6792. upgradeLevel: 0
  6793. weight: 0
  6794. dropRates: 23
  6795. favorite: 0
  6796. attributes:
  6797. - key: hp
  6798. name: Health
  6799. value: 6
  6800. stringValue: 0
  6801. upgradeIncrement: 20
  6802. coreStats: 0
  6803. visible: 1
  6804. visibleInStatsPanel: 1
  6805. displayFormat: 0
  6806. suffixes:
  6807. compareInfo: 1
  6808. randomChange: 100
  6809. locked: 0
  6810. isFixed: 1
  6811. minValue: 0
  6812. maxValue: 0
  6813. fold: 1
  6814. maximumRandomAttributes: 5
  6815. enchantments:
  6816. craftMaterials: []
  6817. actions: []
  6818. tags:
  6819. - Socketing
  6820. - Blue
  6821. customData: []
  6822. lastUseTimeStamp: 0
  6823. restrictionKey:
  6824. restrictionValue: 0
  6825. socketingSlots: 0
  6826. socketedItems:
  6827. socketingTag: []
  6828. fold: 0
  6829. - uid: 90
  6830. name: Gem of Precision
  6831. description: Sockets on equipment to enchance its abilities.
  6832. type: 2
  6833. icon: {fileID: 2800000, guid: 8ead42e059652464bbf9bf047642dddc, type: 3}
  6834. quality: 2
  6835. tradeable: 1
  6836. deletable: 1
  6837. useable: 0
  6838. consumable: 0
  6839. visible: 1
  6840. price: 5
  6841. currency: 0
  6842. maxiumStack: 99
  6843. upgradeLevel: 0
  6844. weight: 0
  6845. dropRates: 23
  6846. favorite: 0
  6847. attributes:
  6848. - key: crit
  6849. name: Critical Chance
  6850. value: 5
  6851. stringValue: 0
  6852. upgradeIncrement: 3
  6853. coreStats: 0
  6854. visible: 1
  6855. visibleInStatsPanel: 1
  6856. displayFormat: 0
  6857. suffixes: '%'
  6858. compareInfo: 1
  6859. randomChange: 100
  6860. locked: 0
  6861. isFixed: 1
  6862. minValue: 0
  6863. maxValue: 0
  6864. fold: 1
  6865. maximumRandomAttributes: 5
  6866. enchantments:
  6867. craftMaterials: []
  6868. actions: []
  6869. tags:
  6870. - Socketing
  6871. - Yellow
  6872. customData: []
  6873. lastUseTimeStamp: 0
  6874. restrictionKey:
  6875. restrictionValue: 0
  6876. socketingSlots: 0
  6877. socketedItems:
  6878. socketingTag: []
  6879. fold: 0
  6880. NameAttributeKey: name
  6881. LevelAttributeKey: lvl
  6882. XpAttributeKey: xp
  6883. MaxXpAttributeKey: mxp
  6884. CoolDownAttributeKey: cd
  6885. SharedGlobalCoolDown: 1
  6886. AttributeNameColor: {r: 0.1755072, g: 0.534453, b: 0.8207547, a: 1}
  6887. UseQualityColorForItemName: 1
  6888. MerchantStyle: 1
  6889. HighlightEquipmentSlotWhenHoverItem: 1
  6890. AllowDropItem: 1
  6891. CanvasTag:
  6892. EnableCrafting: 1
  6893. CraftingMaterialCategoryID: 2
  6894. CraftingBlueprintTag: Blueprint
  6895. PlayerName: Player
  6896. CraftingTime: 2
  6897. EnhancingMaterials:
  6898. - {x: 59, y: 2}
  6899. - {x: 60, y: 1}
  6900. EnhancingCurrencyType: 1
  6901. EnhancingCurrencyNeed: 50
  6902. EnableEnhancing: 1
  6903. DestroyEquipmentWhenFail: 1
  6904. DestroyEquipmentWhenFailLevel: 3
  6905. MaxiumEnhancingLevel: 15
  6906. EnhancingSuccessCurve:
  6907. serializedVersion: 2
  6908. m_Curve:
  6909. - serializedVersion: 3
  6910. time: 0
  6911. value: 70
  6912. inSlope: -0.01907558
  6913. outSlope: -0.01907558
  6914. tangentMode: 0
  6915. weightedMode: 0
  6916. inWeight: 0
  6917. outWeight: 0
  6918. - serializedVersion: 3
  6919. time: 1.001709
  6920. value: 10.07074
  6921. inSlope: -2.5296226
  6922. outSlope: -2.5296226
  6923. tangentMode: 0
  6924. weightedMode: 0
  6925. inWeight: 0
  6926. outWeight: 0
  6927. m_PreInfinity: 2
  6928. m_PostInfinity: 2
  6929. m_RotationOrder: 4
  6930. EnhancingCategoryID: 1
  6931. EnhancingTime: 0.5
  6932. EnableEnhancingGlow: 1
  6933. EnhancingGlowCurve:
  6934. serializedVersion: 2
  6935. m_Curve:
  6936. - serializedVersion: 3
  6937. time: 0
  6938. value: 0
  6939. inSlope: -0.08149338
  6940. outSlope: 0
  6941. tangentMode: 65
  6942. weightedMode: 0
  6943. inWeight: 0
  6944. outWeight: 0.17364705
  6945. - serializedVersion: 3
  6946. time: 0.33333
  6947. value: 0
  6948. inSlope: -0
  6949. outSlope: 4.602503
  6950. tangentMode: 5
  6951. weightedMode: 0
  6952. inWeight: 0.23133178
  6953. outWeight: 0.037566386
  6954. - serializedVersion: 3
  6955. time: 1
  6956. value: 1
  6957. inSlope: 0
  6958. outSlope: 0
  6959. tangentMode: 0
  6960. weightedMode: 0
  6961. inWeight: 0
  6962. outWeight: 0
  6963. m_PreInfinity: 2
  6964. m_PostInfinity: 2
  6965. m_RotationOrder: 4
  6966. EnchantingMaterial: {x: 61, y: 1}
  6967. EnchantingCurrencyType: 1
  6968. EnchantingCurrencyNeed: 100
  6969. EnchantmentNumberRange: {x: 1, y: 3}
  6970. EnableEnchanting: 1
  6971. RandomEnchantmentsForNewItem: 0
  6972. EnchantingSuccessRate: 30
  6973. EnchantingCategoryID: 1
  6974. EnchantingTime: 0.5
  6975. EnchantingPrefixesColor: {r: 0.3266698, g: 0.5566038, b: 0.1820339, a: 1}
  6976. EnchantingSuffxesColor: {r: 0.3254902, g: 0.5568628, b: 0.18039216, a: 1}
  6977. EnchantingNameColor: {r: 0.32, g: 0.55, b: 0.18, a: 1}
  6978. EnableSocketing: 1
  6979. SocketingTagFilter: Socketing
  6980. SocketingCategoryFilter: 2
  6981. SocketedCategoryFilter: 1
  6982. EnableRemoveSocketing: 1
  6983. RemoveSocketingPrice: 100
  6984. RemoveSocketingCurrency: 0
  6985. DestroySocketItemWhenRemove: 0
  6986. RandomSocketingSlotsNummber: 1
  6987. MinimalSocketingSlotsNumber: 1
  6988. MaxmiumSocketingSlotsNumber: 4
  6989. LockSocketingSlotsByDefault: 1
  6990. RandomChanceToLockSocketingSlots: 25
  6991. UnlockSocketingSlotsPrice: 50
  6992. UnlockSocketingSlotsCurrency: 0
  6993. --- !u!114 &4990384160235336905
  6994. MonoBehaviour:
  6995. m_ObjectHideFlags: 0
  6996. m_CorrespondingSourceObject: {fileID: 0}
  6997. m_PrefabInstance: {fileID: 0}
  6998. m_PrefabAsset: {fileID: 0}
  6999. m_GameObject: {fileID: 4990384160235336910}
  7000. m_Enabled: 1
  7001. m_EditorHideFlags: 0
  7002. m_Script: {fileID: 11500000, guid: 5c9e69dfc04c4d3478066b09ee3ff39d, type: 3}
  7003. m_Name:
  7004. m_EditorClassIdentifier:
  7005. UiStyle: 1
  7006. UiScale: 1
  7007. InventorySlotScale: 1
  7008. EmptyItemBackColor: {r: 0.33, g: 0.33, b: 0.33, a: 1}
  7009. ItemSelectedColor: {r: 1, g: 0.28, b: 0, a: 0.4}
  7010. ItemHoverColor: {r: 1, g: 0.54, b: 0, a: 0.34509805}
  7011. FavoriteColor: {r: 1, g: 0.54, b: 0, a: 1}