SpriteCollection.asset 371 KB

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