PlayerInventory.prefab 161 KB

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