123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645 |
- %YAML 1.1
- %TAG !u! tag:unity3d.com,2011:
- --- !u!114 &11400000
- MonoBehaviour:
- m_ObjectHideFlags: 0
- m_CorrespondingSourceObject: {fileID: 0}
- m_PrefabInstance: {fileID: 0}
- m_PrefabAsset: {fileID: 0}
- m_GameObject: {fileID: 0}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 11500000, guid: 650133c44dc1224489eed33fcd27316e, type: 3}
- m_Name: IconCollection
- m_EditorClassIdentifier:
- Id: UndeadHeroes
- IconFolders:
- - {fileID: 102900000, guid: 76de4b23f354c1e459cf001ad11b39f7, type: 3}
- - {fileID: 102900000, guid: e7b643cd287c20342a99e94fa7ade734, type: 3}
- Icons:
- - Name: Angry
- Id: Common.Goblin.Eyes.Angry
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Goblin/Angry.png
- Sprite: {fileID: 21300000, guid: 4954a12d8da1b0740a546519ffa8a109, type: 3}
- - Name: AngryEyebrows
- Id: Common.Emoji.Eyebrows.AngryEyebrows
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Emoji/AngryEyebrows.png
- Sprite: {fileID: 21300000, guid: cc4d1858007ead646be0aa3c2179edd4, type: 3}
- - Name: AngryEyes1
- Id: Common.Emoji.Eyes.AngryEyes1
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/AngryEyes1.png
- Sprite: {fileID: 21300000, guid: 66ee90b635f23514abfc72a74bc7b5fd, type: 3}
- - Name: AngryEyes2
- Id: Common.Emoji.Eyes.AngryEyes2
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/AngryEyes2.png
- Sprite: {fileID: 21300000, guid: 20792e28409e8f044a6faf0dcbee7ffd, type: 3}
- - Name: AngryEyes3
- Id: Common.Emoji.Eyes.AngryEyes3
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/AngryEyes3.png
- Sprite: {fileID: 21300000, guid: 6910055de0732b045bab310ac1405500, type: 3}
- - Name: AngryMouth1
- Id: Common.Emoji.Mouth.AngryMouth1
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Emoji/AngryMouth1.png
- Sprite: {fileID: 21300000, guid: 026c3ca6637f7984db0578e25d5abc2a, type: 3}
- - Name: AngryMouth2
- Id: Common.Emoji.Mouth.AngryMouth2
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Emoji/AngryMouth2.png
- Sprite: {fileID: 21300000, guid: 8488856453c21984ca2c2a71dce48f8d, type: 3}
- - Name: AngryMouth3
- Id: Common.Emoji.Mouth.AngryMouth3
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Emoji/AngryMouth3.png
- Sprite: {fileID: 21300000, guid: cfbedc84cbb57674ca3e24717bc889e6, type: 3}
- - Name: Asian
- Id: Common.Basic.Eyes.Asian
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Asian.png
- Sprite: {fileID: 21300000, guid: fadc9e31261b9fc4cbf57c7ad46a7070, type: 3}
- - Name: Banana
- Id: UndeadHeroes.Undead.Earrings.Banana
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Earrings/Undead/Banana.png
- Sprite: {fileID: 21300000, guid: a176eb0d9eabecb46ad09bc7dadab531, type: 3}
- - Name: BanditArmorTypeA
- Id: UndeadHeroes.Undead.Armor.BanditArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/BanditArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 65e0ec8e1c1f25c4095142e916aa809d, type: 3}
- - Name: BanditArmorTypeA
- Id: UndeadHeroes.Undead.Bracers.BanditArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/BanditArmorTypeA.png
- Sprite: {fileID: 21300000, guid: fb4d4dd9393e42d4abfe16f785c0742b, type: 3}
- - Name: BanditArmorTypeA
- Id: UndeadHeroes.Undead.Helmet.BanditArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/BanditArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 20de568a9c844804da31c5e1addbd5e3, type: 3}
- - Name: BanditArmorTypeA
- Id: UndeadHeroes.Undead.Leggings.BanditArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/BanditArmorTypeA.png
- Sprite: {fileID: 21300000, guid: f6f2db3c688629640a7b1f11419e6881, type: 3}
- - Name: BanditArmorTypeA
- Id: UndeadHeroes.Undead.Vest.BanditArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/BanditArmorTypeA.png
- Sprite: {fileID: 21300000, guid: e0b4a00fc3a5efa44b7395e77a4228b5, type: 3}
- - Name: BanditArmorTypeB
- Id: UndeadHeroes.Undead.Armor.BanditArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/BanditArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 0e725471c92e00940b944517db7b83db, type: 3}
- - Name: BanditArmorTypeB
- Id: UndeadHeroes.Undead.Bracers.BanditArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/BanditArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 33c479f207e6bc24aac8f617e8863a9b, type: 3}
- - Name: BanditArmorTypeB
- Id: UndeadHeroes.Undead.Helmet.BanditArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/BanditArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 2d1a562e7c09a904fb753cab067e6c52, type: 3}
- - Name: BanditArmorTypeB
- Id: UndeadHeroes.Undead.Leggings.BanditArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/BanditArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 8d8894e9b8905cc46984bb9bde6e7ad6, type: 3}
- - Name: BanditArmorTypeB
- Id: UndeadHeroes.Undead.Vest.BanditArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/BanditArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 454fcc918da6b3b4f9ccfb5bc89265d3, type: 3}
- - Name: BanditArmorTypeC
- Id: UndeadHeroes.Undead.Armor.BanditArmorTypeC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/BanditArmorTypeC.png
- Sprite: {fileID: 21300000, guid: 7ff83f2e3a2aa874da553f46400badd5, type: 3}
- - Name: BanditArmorTypeC
- Id: UndeadHeroes.Undead.Bracers.BanditArmorTypeC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/BanditArmorTypeC.png
- Sprite: {fileID: 21300000, guid: d3b5c2923675c574388ec38a9a9e8455, type: 3}
- - Name: BanditArmorTypeC
- Id: UndeadHeroes.Undead.Helmet.BanditArmorTypeC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/BanditArmorTypeC.png
- Sprite: {fileID: 21300000, guid: a2629a15795e08549b000fd2618e2358, type: 3}
- - Name: BanditArmorTypeC
- Id: UndeadHeroes.Undead.Leggings.BanditArmorTypeC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/BanditArmorTypeC.png
- Sprite: {fileID: 21300000, guid: 5fd16b41b29638046b33a07ae2833183, type: 3}
- - Name: BanditArmorTypeC
- Id: UndeadHeroes.Undead.Vest.BanditArmorTypeC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/BanditArmorTypeC.png
- Sprite: {fileID: 21300000, guid: 4d5117a86926205478f4d480b25a28a3, type: 3}
- - Name: BattleBow
- Id: UndeadHeroes.Undead.Arrow.BattleBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Arrow/Undead/BattleBow.png
- Sprite: {fileID: 21300000, guid: 6d54079f6143e3d4dac620c816fc8a7e, type: 3}
- - Name: BattleBow
- Id: UndeadHeroes.Undead.Bow.BattleBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bow/Undead/BattleBow.png
- Sprite: {fileID: 21300000, guid: f32fa35f9319e1e4facc9d81fe2af6fd, type: 3}
- - Name: BattleBow
- Id: UndeadHeroes.Undead.Quiver.BattleBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Quiver/Undead/BattleBow.png
- Sprite: {fileID: 21300000, guid: 0b1aa497af99f01439f305040269a189, type: 3}
- - Name: BoneBow
- Id: UndeadHeroes.Undead.Arrow.BoneBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Arrow/Undead/BoneBow.png
- Sprite: {fileID: 21300000, guid: 7ff0dce571ecfcf45a7a087dfd1c2ede, type: 3}
- - Name: BoneBow
- Id: UndeadHeroes.Undead.Bow.BoneBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bow/Undead/BoneBow.png
- Sprite: {fileID: 21300000, guid: 62de5ca48be71564e8ce598303ded414, type: 3}
- - Name: BoneBow
- Id: UndeadHeroes.Undead.Quiver.BoneBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Quiver/Undead/BoneBow.png
- Sprite: {fileID: 21300000, guid: 81e24954b2902484ea83fa066793f730, type: 3}
- - Name: BoneClub
- Id: UndeadHeroes.Undead.MeleeWeapon1H.BoneClub
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Hammer/BoneClub.png
- Sprite: {fileID: 21300000, guid: 6e4044c915bfc6b479dc481f2c6b140c, type: 3}
- - Name: BoneDagger
- Id: UndeadHeroes.Undead.MeleeWeapon1H.BoneDagger
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Dagger/BoneDagger.png
- Sprite: {fileID: 21300000, guid: 90998f3892e450341a5540259281be09, type: 3}
- - Name: BoneKnife
- Id: UndeadHeroes.Undead.MeleeWeapon1H.BoneKnife
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Dagger/BoneKnife.png
- Sprite: {fileID: 21300000, guid: c03e69a9409f3854bbad477b78f95e4e, type: 3}
- - Name: BonePistol
- Id: UndeadHeroes.Undead.Firearm1H.BonePistol
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Firearm1H/Undead/BonePistol.png
- Sprite: {fileID: 21300000, guid: 3f007404ef911d44b972273597164a39, type: 3}
- - Name: Boy
- Id: Common.Basic.Eyes.Boy
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Boy.png
- Sprite: {fileID: 21300000, guid: 32db12b81dc40af49b61d37c1153fb7a, type: 3}
- - Name: Boy01
- Id: Common.Basic.Eyes.Boy01
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Boy01.png
- Sprite: {fileID: 21300000, guid: be65faa5da192304eb6b93cdef5ed2da, type: 3}
- - Name: Boy02
- Id: Common.Basic.Eyes.Boy02
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Boy02.png
- Sprite: {fileID: 21300000, guid: 093efe72d5f44444e8c2027b6c03a457, type: 3}
- - Name: BroFlow
- Id: Common.Basic.Hair.BroFlow
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/BroFlow.png
- Sprite: {fileID: 21300000, guid: d9980949825d48240adb7c0863536795, type: 3}
- - Name: BroFlowBlue
- Id: Common.Gradient [NoPaint].Hair.BroFlowBlue
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/BroFlowBlue.png
- Sprite: {fileID: 21300000, guid: aa0d62768c703cf429ec599ceef7f8bb, type: 3}
- - Name: BroFlowPink
- Id: Common.Gradient [NoPaint].Hair.BroFlowPink
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/BroFlowPink.png
- Sprite: {fileID: 21300000, guid: 440f361b0481d6d41ad593bf140b3307, type: 3}
- - Name: BroFlowSunny
- Id: Common.Gradient [NoPaint].Hair.BroFlowSunny
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/BroFlowSunny.png
- Sprite: {fileID: 21300000, guid: 6b23a26cddfca9d48ac9c156af6e1915, type: 3}
- - Name: BrokenRustedSword
- Id: UndeadHeroes.Undead.MeleeWeapon1H.BrokenRustedSword
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Sword/BrokenRustedSword.png
- Sprite: {fileID: 21300000, guid: eac7459d1428aa24ea93e6bb7b0dfa8a, type: 3}
- - Name: Broomstick
- Id: Common.Halloween.MeleeWeapon2H.Broomstick
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/MeleeWeapon2H/Halloween/Hammer/Broomstick.png
- Sprite: {fileID: 21300000, guid: c51a5c06416a7c2469a5e9f202e1e8cd, type: 3}
- - Name: ButcherKnife
- Id: UndeadHeroes.Undead.MeleeWeapon2H.ButcherKnife
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Sword/ButcherKnife.png
- Sprite: {fileID: 21300000, guid: cbd9bc67b76a159419289f130f70ca85, type: 3}
- - Name: BuzzCut
- Id: Common.Basic.Hair.BuzzCut
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/BuzzCut.png
- Sprite: {fileID: 21300000, guid: 516ee3149a9f5b740a69d315a7defc48, type: 3}
- - Name: CandyCannon
- Id: Common.Christmas.Firearm1H.CandyCannon
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Firearm1H/Christmas/CandyCannon.png
- Sprite: {fileID: 21300000, guid: 05b048b57835f8c4abbc8f122d4e1453, type: 3}
- - Name: CandyHammer
- Id: Common.Christmas.MeleeWeapon1H.CandyHammer
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/MeleeWeapon1H/Christmas/Hammer/CandyHammer.png
- Sprite: {fileID: 21300000, guid: aeaf40567ebb9074b841d0229768fbe0, type: 3}
- - Name: CaramelShield
- Id: Common.Christmas.Shield.CaramelShield
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Shield/Christmas/CaramelShield.png
- Sprite: {fileID: 21300000, guid: e5a873f7b037b724cbe9fcaa9b6cef42, type: 3}
- - Name: CasualBoy1 [ShowEars]
- Id: Common.Casual.Armor.CasualBoy1 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Casual/CasualBoy1 [ShowEars].png
- Sprite: {fileID: 21300000, guid: fa95ca64274488a4d97c2851073eebf0, type: 3}
- - Name: CasualBoy1 [ShowEars]
- Id: Common.Casual.Bracers.CasualBoy1 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Casual/CasualBoy1 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 48b5d464c3b7cf74fae9d23a5e8d245f, type: 3}
- - Name: CasualBoy1 [ShowEars]
- Id: Common.Casual.Helmet.CasualBoy1 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Casual/CasualBoy1 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 886903da49fc1504983dfd57e947e958, type: 3}
- - Name: CasualBoy1 [ShowEars]
- Id: Common.Casual.Leggings.CasualBoy1 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Casual/CasualBoy1 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 67dcb8dbcd60b6f41a6708fd5d5fb559, type: 3}
- - Name: CasualBoy1 [ShowEars]
- Id: Common.Casual.Vest.CasualBoy1 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Casual/CasualBoy1 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 99a899f18ca0e9040aac3e10b6129170, type: 3}
- - Name: CasualBoy2 [ShowEars]
- Id: Common.Casual.Armor.CasualBoy2 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Casual/CasualBoy2 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 3830d76b7353b1d40818e04236729bd3, type: 3}
- - Name: CasualBoy2 [ShowEars]
- Id: Common.Casual.Bracers.CasualBoy2 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Casual/CasualBoy2 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 0fd8c9b7b31980f48841c25515d4c6e7, type: 3}
- - Name: CasualBoy2 [ShowEars]
- Id: Common.Casual.Helmet.CasualBoy2 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Casual/CasualBoy2 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 1205eae88d0951e4790d9d1b1c429d7e, type: 3}
- - Name: CasualBoy2 [ShowEars]
- Id: Common.Casual.Leggings.CasualBoy2 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Casual/CasualBoy2 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 2cbb8d38817e2e3409eb39f6da7b6920, type: 3}
- - Name: CasualBoy2 [ShowEars]
- Id: Common.Casual.Vest.CasualBoy2 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Casual/CasualBoy2 [ShowEars].png
- Sprite: {fileID: 21300000, guid: dff0036bca4b4a34c95b1f2b51bea28b, type: 3}
- - Name: CasualBoy3 [ShowEars]
- Id: Common.Casual.Armor.CasualBoy3 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Casual/CasualBoy3 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 465ad7aad0f8cbc46a77be2e45ed18b4, type: 3}
- - Name: CasualBoy3 [ShowEars]
- Id: Common.Casual.Bracers.CasualBoy3 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Casual/CasualBoy3 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 692bc6b61bafb464b8413292230fcbe4, type: 3}
- - Name: CasualBoy3 [ShowEars]
- Id: Common.Casual.Helmet.CasualBoy3 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Casual/CasualBoy3 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 6210255eac9094e41879afd46eedf0e1, type: 3}
- - Name: CasualBoy3 [ShowEars]
- Id: Common.Casual.Leggings.CasualBoy3 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Casual/CasualBoy3 [ShowEars].png
- Sprite: {fileID: 21300000, guid: b7037315c72bc2b48b36786a74c210b5, type: 3}
- - Name: CasualBoy3 [ShowEars]
- Id: Common.Casual.Vest.CasualBoy3 [ShowEars]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Casual/CasualBoy3 [ShowEars].png
- Sprite: {fileID: 21300000, guid: 1715351cd2457694c9a978bbda70b729, type: 3}
- - Name: CasualGirl1 [ShowEars] [FullHair]
- Id: Common.Casual.Armor.CasualGirl1 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Casual/CasualGirl1 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: 05d5e4a46e59b5e449c8304370b4d7f4, type: 3}
- - Name: CasualGirl1 [ShowEars] [FullHair]
- Id: Common.Casual.Bracers.CasualGirl1 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Casual/CasualGirl1 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: 0b239e3c5be55c84fb6a8dc488820ad9, type: 3}
- - Name: CasualGirl1 [ShowEars] [FullHair]
- Id: Common.Casual.Helmet.CasualGirl1 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Casual/CasualGirl1 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: 280c5b1882b2c7643814a4231692e8e1, type: 3}
- - Name: CasualGirl1 [ShowEars] [FullHair]
- Id: Common.Casual.Leggings.CasualGirl1 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Casual/CasualGirl1
- [ShowEars] [FullHair].png
- Sprite: {fileID: 21300000, guid: 82ee7f48529456047a1a8475f47bc78d, type: 3}
- - Name: CasualGirl1 [ShowEars] [FullHair]
- Id: Common.Casual.Vest.CasualGirl1 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Casual/CasualGirl1 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: 9d469c1073506604d9481be09cf48161, type: 3}
- - Name: CasualGirl2 [ShowEars] [FullHair]
- Id: Common.Casual.Armor.CasualGirl2 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Casual/CasualGirl2 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: f2201fc5a1ebea54ca96011434ba219d, type: 3}
- - Name: CasualGirl2 [ShowEars] [FullHair]
- Id: Common.Casual.Bracers.CasualGirl2 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Casual/CasualGirl2 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: 12641a670b3183046962c36cdbe3be98, type: 3}
- - Name: CasualGirl2 [ShowEars] [FullHair]
- Id: Common.Casual.Helmet.CasualGirl2 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Casual/CasualGirl2 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: be242d21e69fd544b93dd27650128d0d, type: 3}
- - Name: CasualGirl2 [ShowEars] [FullHair]
- Id: Common.Casual.Leggings.CasualGirl2 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Casual/CasualGirl2
- [ShowEars] [FullHair].png
- Sprite: {fileID: 21300000, guid: c7447cf0e2443f04f963a7521f012cf1, type: 3}
- - Name: CasualGirl2 [ShowEars] [FullHair]
- Id: Common.Casual.Vest.CasualGirl2 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Casual/CasualGirl2 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: ff768c98401995c40823e6e16d5904c1, type: 3}
- - Name: CasualGirl3 [ShowEars] [FullHair]
- Id: Common.Casual.Armor.CasualGirl3 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Casual/CasualGirl3 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: 9a023d114e8e06b49b9b3a4e95ba79e9, type: 3}
- - Name: CasualGirl3 [ShowEars] [FullHair]
- Id: Common.Casual.Bracers.CasualGirl3 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Casual/CasualGirl3 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: 36cb91a9844c8c14e9622a67e6dfc72d, type: 3}
- - Name: CasualGirl3 [ShowEars] [FullHair]
- Id: Common.Casual.Helmet.CasualGirl3 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Casual/CasualGirl3 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: 6915537c2c57e1046b5361e9995b3be8, type: 3}
- - Name: CasualGirl3 [ShowEars] [FullHair]
- Id: Common.Casual.Leggings.CasualGirl3 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Casual/CasualGirl3
- [ShowEars] [FullHair].png
- Sprite: {fileID: 21300000, guid: d35bcd34a6537504ab3876e96fe2d8d6, type: 3}
- - Name: CasualGirl3 [ShowEars] [FullHair]
- Id: Common.Casual.Vest.CasualGirl3 [ShowEars] [FullHair]
- Edition: Common
- Collection: Casual
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Casual/CasualGirl3 [ShowEars]
- [FullHair].png
- Sprite: {fileID: 21300000, guid: 332c81fcf94957146b35945162a4691d, type: 3}
- - Name: CasualMessy
- Id: Common.Basic.Hair.CasualMessy
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/CasualMessy.png
- Sprite: {fileID: 21300000, guid: 6c7db5464ed04df488751de760b9d078, type: 3}
- - Name: ChristmasBell
- Id: Common.Christmas.Supplies.ChristmasBell
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Other/ChristmasBell.png
- Sprite: {fileID: 21300000, guid: c8cea33253f87a941956c6a7ff06ac17, type: 3}
- - Name: ChristmasCandy
- Id: Common.Christmas.Supplies.ChristmasCandy
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Food/ChristmasCandy.png
- Sprite: {fileID: 21300000, guid: c18569926c5c3524caa01b907d66b335, type: 3}
- - Name: ChristmasPresent
- Id: Common.Christmas.Supplies.ChristmasPresent
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Other/ChristmasPresent.png
- Sprite: {fileID: 21300000, guid: 68347f566833e9746a4950b4d0c9f699, type: 3}
- - Name: ChristmasStocking
- Id: Common.Christmas.Supplies.ChristmasStocking
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Other/ChristmasStocking.png
- Sprite: {fileID: 21300000, guid: 12968d980ee4ae741b6f6fbdbc530585, type: 3}
- - Name: ChristmasTreeToy
- Id: Common.Christmas.Supplies.ChristmasTreeToy
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Other/ChristmasTreeToy.png
- Sprite: {fileID: 21300000, guid: 2eccb788974043942b6552e4f77d0d0e, type: 3}
- - Name: ChristmasTurkey
- Id: Common.Christmas.Supplies.ChristmasTurkey
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Food/ChristmasTurkey.png
- Sprite: {fileID: 21300000, guid: 8cc6bba574244ab46866289b30408195, type: 3}
- - Name: ChristmasWreath
- Id: Common.Christmas.Supplies.ChristmasWreath
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Other/ChristmasWreath.png
- Sprite: {fileID: 21300000, guid: f5bff09d4c2de72449e8d812c469d37f, type: 3}
- - Name: Coin
- Id: Common.Common.Supplies.Coin
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Common/Currency/Coin.png
- Sprite: {fileID: 21300000, guid: eeb600b527962b247b9305aa09914320, type: 3}
- - Name: CollegeBoy
- Id: Common.Basic.Hair.CollegeBoy
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/CollegeBoy.png
- Sprite: {fileID: 21300000, guid: 1b4e4dbe81479e44491b94b9ef963124, type: 3}
- - Name: CopperPickaxe
- Id: UndeadHeroes.Undead.MeleeWeapon2H.CopperPickaxe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Axe/CopperPickaxe.png
- Sprite: {fileID: 21300000, guid: 9de5b66c52095364bba3c81885403b1b, type: 3}
- - Name: CreepySmile
- Id: Common.Basic.Mouth.CreepySmile
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/CreepySmile.png
- Sprite: {fileID: 21300000, guid: 7b3734d05dda17740a4fc6488db8406e, type: 3}
- - Name: CultistRobe
- Id: UndeadHeroes.Undead.Armor.CultistRobe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/CultistRobe.png
- Sprite: {fileID: 21300000, guid: 17d4e705592df7542992e8b8139e3f14, type: 3}
- - Name: CultistRobe
- Id: UndeadHeroes.Undead.Bracers.CultistRobe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/CultistRobe.png
- Sprite: {fileID: 21300000, guid: f276c655d396c944f86360bf2594f3d8, type: 3}
- - Name: CultistRobe
- Id: UndeadHeroes.Undead.Helmet.CultistRobe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/CultistRobe.png
- Sprite: {fileID: 21300000, guid: e42ab65a25e7f944f8d9b4370da4de37, type: 3}
- - Name: CultistRobe
- Id: UndeadHeroes.Undead.Leggings.CultistRobe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/CultistRobe.png
- Sprite: {fileID: 21300000, guid: 6f1f4327c13c7b146980f3a00bc12ee6, type: 3}
- - Name: CultistRobe
- Id: UndeadHeroes.Undead.Vest.CultistRobe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/CultistRobe.png
- Sprite: {fileID: 21300000, guid: 00f365b01ec39be46b6d8febcdae4ab3, type: 3}
- - Name: CursedWand
- Id: UndeadHeroes.Undead.MeleeWeapon1H.CursedWand
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Wand/CursedWand.png
- Sprite: {fileID: 21300000, guid: 02a38961fd9b12d408a00fd6b2a9703f, type: 3}
- - Name: CursedWandTypeA
- Id: UndeadHeroes.Undead.MeleeWeapon1H.CursedWandTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Wand/CursedWandTypeA.png
- Sprite: {fileID: 21300000, guid: 8ca953bc972ba9b488bd9c71565e2e49, type: 3}
- - Name: CursedWandTypeB
- Id: UndeadHeroes.Undead.MeleeWeapon1H.CursedWandTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Wand/CursedWandTypeB.png
- Sprite: {fileID: 21300000, guid: e4c3a1e5bd604fc4881279a0a327f364, type: 3}
- - Name: Dead
- Id: Common.Goblin.Eyes.Dead
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Goblin/Dead.png
- Sprite: {fileID: 21300000, guid: d0c2a319f48f3da4da12acdcf8e9ef91, type: 3}
- - Name: Dead1
- Id: Common.Goblin.Mouth.Dead1
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Goblin/Dead1.png
- Sprite: {fileID: 21300000, guid: 153ebf1da95f55445b1ba174a0ca0dd4, type: 3}
- - Name: Dead2
- Id: Common.Goblin.Mouth.Dead2
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Goblin/Dead2.png
- Sprite: {fileID: 21300000, guid: 4b6be4976ddc0304a937f72bb8edc453, type: 3}
- - Name: DeadEyebrows1
- Id: Common.Emoji.Eyebrows.DeadEyebrows1
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Emoji/DeadEyebrows1.png
- Sprite: {fileID: 21300000, guid: cf746d4b9bbd58949978e5e2a90dbc3e, type: 3}
- - Name: DeadEyebrows2
- Id: Common.Emoji.Eyebrows.DeadEyebrows2
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Emoji/DeadEyebrows2.png
- Sprite: {fileID: 21300000, guid: bb6cbb5d18abba141818fdff16a8c640, type: 3}
- - Name: DeadEyes1
- Id: Common.Emoji.Eyes.DeadEyes1
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/DeadEyes1.png
- Sprite: {fileID: 21300000, guid: 6923fd146d0d9ff468f46c4dcf1ed546, type: 3}
- - Name: DeadEyes2
- Id: Common.Emoji.Eyes.DeadEyes2
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/DeadEyes2.png
- Sprite: {fileID: 21300000, guid: 049edac12fb9ba44285b9e889a43d91f, type: 3}
- - Name: DeadEyes3
- Id: Common.Emoji.Eyes.DeadEyes3
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/DeadEyes3.png
- Sprite: {fileID: 21300000, guid: 5ae2c4a28d78956459c440d24e3d92ad, type: 3}
- - Name: DeadEyes4
- Id: Common.Emoji.Eyes.DeadEyes4
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/DeadEyes4.png
- Sprite: {fileID: 21300000, guid: d5d687b123387634080f0a5bf9b109ec, type: 3}
- - Name: DeadEyes5
- Id: Common.Emoji.Eyes.DeadEyes5
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/DeadEyes5.png
- Sprite: {fileID: 21300000, guid: 4555275df1d13ec46abdd34a12a47fbe, type: 3}
- - Name: DeadMouth1
- Id: Common.Emoji.Mouth.DeadMouth1
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Emoji/DeadMouth1.png
- Sprite: {fileID: 21300000, guid: 1ee5af61b666206489aae123c6764435, type: 3}
- - Name: DeadMouth2
- Id: Common.Emoji.Mouth.DeadMouth2
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Emoji/DeadMouth2.png
- Sprite: {fileID: 21300000, guid: 650ea0e116257c247add887ff34677e3, type: 3}
- - Name: DeadMouth3
- Id: Common.Emoji.Mouth.DeadMouth3
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Emoji/DeadMouth3.png
- Sprite: {fileID: 21300000, guid: d68c25fe05bc5274abcae210be5142f1, type: 3}
- - Name: DeadMouth4
- Id: Common.Emoji.Mouth.DeadMouth4
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Emoji/DeadMouth4.png
- Sprite: {fileID: 21300000, guid: c9b9dbe7f3247c44cae902644deeec79, type: 3}
- - Name: Default
- Id: Common.Basic.Eyebrows.Default
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Default.png
- Sprite: {fileID: 21300000, guid: c5f8410ce1fdd824394d29db9b33224b, type: 3}
- - Name: Default
- Id: Common.Basic.Hair.Default
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Default.png
- Sprite: {fileID: 21300000, guid: 895cd79635dba924188e32a8d64a34e3, type: 3}
- - Name: Default
- Id: Common.Basic.Mouth.Default
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Default.png
- Sprite: {fileID: 21300000, guid: 170bceb34bca17c429b5dd5f5c689047, type: 3}
- - Name: Dot
- Id: Common.Basic.Mouth.Dot
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Dot.png
- Sprite: {fileID: 21300000, guid: c724498be462d68408ece1d20e4f67ff, type: 3}
- - Name: DotEyes
- Id: Common.Emoji.Eyes.DotEyes
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/DotEyes.png
- Sprite: {fileID: 21300000, guid: cbbe81bb72ba3d34c9747009dff6d219, type: 3}
- - Name: EarsType1
- Id: UndeadHeroes.Undead.Helmet.EarsType1
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/EarsType1.png
- Sprite: {fileID: 21300000, guid: cbe2ff307fc955541be61aed319b376c, type: 3}
- - Name: EarsType2
- Id: UndeadHeroes.Undead.Helmet.EarsType2
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/EarsType2.png
- Sprite: {fileID: 21300000, guid: 2134998939e666649853470ea0eeb2bd, type: 3}
- - Name: EarsType3
- Id: UndeadHeroes.Undead.Helmet.EarsType3
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/EarsType3.png
- Sprite: {fileID: 21300000, guid: 1509a6b8664083445897ae45db75fc0a, type: 3}
- - Name: EarsType4
- Id: UndeadHeroes.Undead.Helmet.EarsType4
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/EarsType4.png
- Sprite: {fileID: 21300000, guid: cbad440f75894ec468968d93a53b0575, type: 3}
- - Name: Eggnog
- Id: Common.Christmas.Supplies.Eggnog
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Food/Eggnog.png
- Sprite: {fileID: 21300000, guid: 1c1cc1adf3c171e4d95a62fb126812dd, type: 3}
- - Name: Elf
- Id: Common.Basic.Ears.Elf
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Elf.png
- Sprite: {fileID: 21300000, guid: 50bdf0c52dca63a4daccd6637411a0b7, type: 3}
- - Name: ElfMask
- Id: Common.Christmas.Mask.ElfMask
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Mask/Christmas/ElfMask.png
- Sprite: {fileID: 21300000, guid: 141d9c3002ecb0a4aa29d507392b479f, type: 3}
- - Name: Evil
- Id: Common.Basic.Eyes.Evil
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Evil.png
- Sprite: {fileID: 21300000, guid: 0953e8ff5b6360f42a221ad0a6a9faf1, type: 3}
- - Name: ExecutionerArmorTypeA
- Id: UndeadHeroes.Undead.Armor.ExecutionerArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/ExecutionerArmorTypeA.png
- Sprite: {fileID: 21300000, guid: ff3253fe79f70ee41a9ee85e3c2202c5, type: 3}
- - Name: ExecutionerArmorTypeA
- Id: UndeadHeroes.Undead.Bracers.ExecutionerArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/ExecutionerArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 63632f8ccdc4149439464bdb1f8d41ef, type: 3}
- - Name: ExecutionerArmorTypeA
- Id: UndeadHeroes.Undead.Helmet.ExecutionerArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/ExecutionerArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 97c8a87663597174ebaaa374990e9ae4, type: 3}
- - Name: ExecutionerArmorTypeA
- Id: UndeadHeroes.Undead.Leggings.ExecutionerArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/ExecutionerArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 1f557747be4f0544b8319a2b16259a5a, type: 3}
- - Name: ExecutionerArmorTypeA
- Id: UndeadHeroes.Undead.Vest.ExecutionerArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/ExecutionerArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 45557d5d4ef78694ca0f8360ee73ec2b, type: 3}
- - Name: ExecutionerArmorTypeB
- Id: UndeadHeroes.Undead.Armor.ExecutionerArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/ExecutionerArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 53775061b5055764085da31f5efb69fd, type: 3}
- - Name: ExecutionerArmorTypeB
- Id: UndeadHeroes.Undead.Bracers.ExecutionerArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/ExecutionerArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 6a5beaa23c2d34641986f283f8d526ee, type: 3}
- - Name: ExecutionerArmorTypeB
- Id: UndeadHeroes.Undead.Helmet.ExecutionerArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/ExecutionerArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 59be02b37c4b1cf4b8afb10a2080e59e, type: 3}
- - Name: ExecutionerArmorTypeB
- Id: UndeadHeroes.Undead.Leggings.ExecutionerArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/ExecutionerArmorTypeB.png
- Sprite: {fileID: 21300000, guid: ff13b54f68f54ca41a15f0822760c461, type: 3}
- - Name: ExecutionerArmorTypeB
- Id: UndeadHeroes.Undead.Vest.ExecutionerArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/ExecutionerArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 755fa59fe5a458e4397ac004fd96e39c, type: 3}
- - Name: ExecutionerGreataxe
- Id: UndeadHeroes.Undead.MeleeWeapon2H.ExecutionerGreataxe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Axe/ExecutionerGreataxe.png
- Sprite: {fileID: 21300000, guid: fb7a7b5b3d6460442bdb7476a3d73297, type: 3}
- - Name: Eyebrows1
- Id: Common.Basic.Eyebrows.Eyebrows1
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows1.png
- Sprite: {fileID: 21300000, guid: 7c0c9ab6cc471c74691999c40fd18762, type: 3}
- - Name: Eyebrows10
- Id: Common.Basic.Eyebrows.Eyebrows10
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows10.png
- Sprite: {fileID: 21300000, guid: b302c208bb88610498f1521804290cd7, type: 3}
- - Name: Eyebrows11
- Id: Common.Basic.Eyebrows.Eyebrows11
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows11.png
- Sprite: {fileID: 21300000, guid: 6b93ccbd9e7bc664880ebcb891f769eb, type: 3}
- - Name: Eyebrows12
- Id: Common.Basic.Eyebrows.Eyebrows12
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows12.png
- Sprite: {fileID: 21300000, guid: a10178516944e53428716d81c1dfb23b, type: 3}
- - Name: Eyebrows13
- Id: Common.Basic.Eyebrows.Eyebrows13
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows13.png
- Sprite: {fileID: 21300000, guid: c0a6faa339c6e7b43b06e0d367fa75e0, type: 3}
- - Name: Eyebrows14
- Id: Common.Basic.Eyebrows.Eyebrows14
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows14.png
- Sprite: {fileID: 21300000, guid: 77f235c02ba83954ca8ccab19418f82b, type: 3}
- - Name: Eyebrows15
- Id: Common.Basic.Eyebrows.Eyebrows15
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows15.png
- Sprite: {fileID: 21300000, guid: 21ae10e29e9339e4aa95be3eaa600e78, type: 3}
- - Name: Eyebrows16
- Id: Common.Basic.Eyebrows.Eyebrows16
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows16.png
- Sprite: {fileID: 21300000, guid: c8c49c46911cb1547b49ef02a0647337, type: 3}
- - Name: Eyebrows17
- Id: Common.Basic.Eyebrows.Eyebrows17
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows17.png
- Sprite: {fileID: 21300000, guid: 9927a51c2c2ba5641a4cf5129fd7cc4f, type: 3}
- - Name: Eyebrows18
- Id: Common.Basic.Eyebrows.Eyebrows18
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows18.png
- Sprite: {fileID: 21300000, guid: 820fa838f3ab3434f811e8e581816bbc, type: 3}
- - Name: Eyebrows19
- Id: Common.Basic.Eyebrows.Eyebrows19
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows19.png
- Sprite: {fileID: 21300000, guid: da4c3cfca12212248bb0b021ed2c8f63, type: 3}
- - Name: Eyebrows2
- Id: Common.Basic.Eyebrows.Eyebrows2
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows2.png
- Sprite: {fileID: 21300000, guid: b19e1af166e845d4e8b4f3fcfa1f56de, type: 3}
- - Name: Eyebrows20
- Id: Common.Basic.Eyebrows.Eyebrows20
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows20.png
- Sprite: {fileID: 21300000, guid: 91e11650011417d41b1659a78e1406f3, type: 3}
- - Name: Eyebrows21
- Id: Common.Basic.Eyebrows.Eyebrows21
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows21.png
- Sprite: {fileID: 21300000, guid: d714b7016c9c8724aaec58243aa27a76, type: 3}
- - Name: Eyebrows22
- Id: Common.Basic.Eyebrows.Eyebrows22
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows22.png
- Sprite: {fileID: 21300000, guid: b19cd9f7dff26084d95f201b84878a58, type: 3}
- - Name: Eyebrows3
- Id: Common.Basic.Eyebrows.Eyebrows3
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows3.png
- Sprite: {fileID: 21300000, guid: 7d6bbb5a0f7c3954eb71001d7cbcb51c, type: 3}
- - Name: Eyebrows4
- Id: Common.Basic.Eyebrows.Eyebrows4
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows4.png
- Sprite: {fileID: 21300000, guid: f22787d19be248745a6276056aa05ab3, type: 3}
- - Name: Eyebrows5
- Id: Common.Basic.Eyebrows.Eyebrows5
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows5.png
- Sprite: {fileID: 21300000, guid: fdd54346c1caeb540b5f9f1ea0d08ff7, type: 3}
- - Name: Eyebrows6
- Id: Common.Basic.Eyebrows.Eyebrows6
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows6.png
- Sprite: {fileID: 21300000, guid: dc419ffac7bc48a45aa04cbe7a92817f, type: 3}
- - Name: Eyebrows7
- Id: Common.Basic.Eyebrows.Eyebrows7
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows7.png
- Sprite: {fileID: 21300000, guid: 930767e4dc662c54e98a181aa659b10f, type: 3}
- - Name: Eyebrows8
- Id: Common.Basic.Eyebrows.Eyebrows8
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows8.png
- Sprite: {fileID: 21300000, guid: 0e9a84817fe01f94cba569188eeb9e7e, type: 3}
- - Name: Eyebrows9
- Id: Common.Basic.Eyebrows.Eyebrows9
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Basic/Eyebrows9.png
- Sprite: {fileID: 21300000, guid: 5dd45de307fb88a408c03a15c370bc49, type: 3}
- - Name: FemaleUnderwearType1
- Id: Common.Underwear.Armor.FemaleUnderwearType1
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Underwear/FemaleUnderwearType1.png
- Sprite: {fileID: 21300000, guid: 9fd0337b74324164aa0efab24c6daf53, type: 3}
- - Name: FemaleUnderwearType1
- Id: Common.Underwear.Leggings.FemaleUnderwearType1
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Underwear/FemaleUnderwearType1.png
- Sprite: {fileID: 21300000, guid: deab2b8c5edf99245941b073ca9d33d3, type: 3}
- - Name: FemaleUnderwearType1
- Id: Common.Underwear.Vest.FemaleUnderwearType1
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Underwear/FemaleUnderwearType1.png
- Sprite: {fileID: 21300000, guid: 44be8c887920c554ab416d68152e7637, type: 3}
- - Name: FemaleUnderwearType2
- Id: Common.Underwear.Armor.FemaleUnderwearType2
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Underwear/FemaleUnderwearType2.png
- Sprite: {fileID: 21300000, guid: b6c72f3839ea2214cb14a6d30b6ab17c, type: 3}
- - Name: FemaleUnderwearType2
- Id: Common.Underwear.Leggings.FemaleUnderwearType2
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Underwear/FemaleUnderwearType2.png
- Sprite: {fileID: 21300000, guid: 0c786ce006626db48968ddb7666476a5, type: 3}
- - Name: FemaleUnderwearType2
- Id: Common.Underwear.Vest.FemaleUnderwearType2
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Underwear/FemaleUnderwearType2.png
- Sprite: {fileID: 21300000, guid: 75ce6e7f1b4753f42bff6e62d3c19165, type: 3}
- - Name: FemaleUnderwearType3
- Id: Common.Underwear.Armor.FemaleUnderwearType3
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Underwear/FemaleUnderwearType3.png
- Sprite: {fileID: 21300000, guid: e4adf02f959121c43aa2f679a62ddefa, type: 3}
- - Name: FemaleUnderwearType3
- Id: Common.Underwear.Leggings.FemaleUnderwearType3
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Underwear/FemaleUnderwearType3.png
- Sprite: {fileID: 21300000, guid: e46ef0637410272418733ee97c0d7961, type: 3}
- - Name: FemaleUnderwearType3
- Id: Common.Underwear.Vest.FemaleUnderwearType3
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Underwear/FemaleUnderwearType3.png
- Sprite: {fileID: 21300000, guid: a498dc7fec2072f4f80f6bc97018fef3, type: 3}
- - Name: FestiveBow
- Id: Common.Christmas.Arrow.FestiveBow
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Arrow/Christmas/FestiveBow.png
- Sprite: {fileID: 21300000, guid: 4a5fdd28ef18c8e4095ef9422973faad, type: 3}
- - Name: FestiveBow
- Id: Common.Christmas.Bow.FestiveBow
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bow/Christmas/FestiveBow.png
- Sprite: {fileID: 21300000, guid: 2bd1e260113e10148a149749581232d3, type: 3}
- - Name: FestiveBow
- Id: Common.Christmas.Quiver.FestiveBow
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Quiver/Christmas/FestiveBow.png
- Sprite: {fileID: 21300000, guid: f8f34f51abef81e4aa539ca7daa930e2, type: 3}
- - Name: FrenchCrop
- Id: Common.Basic.Hair.FrenchCrop
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/FrenchCrop.png
- Sprite: {fileID: 21300000, guid: 4946ff5c05fd8a8418d7511638489130, type: 3}
- - Name: FringeUp
- Id: Common.Basic.Hair.FringeUp
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/FringeUp.png
- Sprite: {fileID: 21300000, guid: 393cdee4f9389bb4abcc97b9c21f66af, type: 3}
- - Name: FringeUpBlue
- Id: Common.Gradient [NoPaint].Hair.FringeUpBlue
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/FringeUpBlue.png
- Sprite: {fileID: 21300000, guid: 8bbc1a7c5884f9d4c8798ee5eb6634d1, type: 3}
- - Name: FringeUpPink
- Id: Common.Gradient [NoPaint].Hair.FringeUpPink
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/FringeUpPink.png
- Sprite: {fileID: 21300000, guid: 00afc0bc5be79db4da1538370f7d39de, type: 3}
- - Name: FringeUpSunny
- Id: Common.Gradient [NoPaint].Hair.FringeUpSunny
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/FringeUpSunny.png
- Sprite: {fileID: 21300000, guid: 14ee2f04099f25e419f5ec937f2d06a0, type: 3}
- - Name: Fruitcake
- Id: Common.Christmas.Supplies.Fruitcake
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Food/Fruitcake.png
- Sprite: {fileID: 21300000, guid: 13f593b28099bd648a0411040b617677, type: 3}
- - Name: GingerbreadMan
- Id: Common.Christmas.Supplies.GingerbreadMan
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Food/GingerbreadMan.png
- Sprite: {fileID: 21300000, guid: 5f0b2238c4efd334ebd0583289f9ffcb, type: 3}
- - Name: Girl
- Id: Common.Basic.Eyes.Girl
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Girl.png
- Sprite: {fileID: 21300000, guid: 1119647a72f20804cbaeee00c5d40f50, type: 3}
- - Name: Girl01
- Id: Common.Basic.Eyes.Girl01
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Girl01.png
- Sprite: {fileID: 21300000, guid: 36fab1a8d5270574ca57707f0f38c58c, type: 3}
- - Name: Girl02
- Id: Common.Basic.Eyes.Girl02
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Girl02.png
- Sprite: {fileID: 21300000, guid: f4adfb28fcc4f464292c8cdaa25d801e, type: 3}
- - Name: Girl03
- Id: Common.Basic.Eyes.Girl03
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Girl03.png
- Sprite: {fileID: 21300000, guid: 1dc87b1e802b2144195575821c3917b6, type: 3}
- - Name: Girl04
- Id: Common.Basic.Eyes.Girl04
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Girl04.png
- Sprite: {fileID: 21300000, guid: 83b8f55307dc5f84ba43d9d1e7e5dfbc, type: 3}
- - Name: Girl05
- Id: Common.Basic.Eyes.Girl05
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Girl05.png
- Sprite: {fileID: 21300000, guid: 918a1632ada3d7048af7b9e9e5398918, type: 3}
- - Name: GlassesType01
- Id: Common.Common.Mask.GlassesType01
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Mask/Common/GlassesType01.png
- Sprite: {fileID: 21300000, guid: 5e7a2e6e6bbbe2e4f9a4bbdf64e6d99b, type: 3}
- - Name: GlassesType02
- Id: Common.Common.Mask.GlassesType02
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Mask/Common/GlassesType02.png
- Sprite: {fileID: 21300000, guid: e0561c421e4d14440bdd6dc907ce8bcc, type: 3}
- - Name: GlassesType03
- Id: Common.Common.Mask.GlassesType03
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Mask/Common/GlassesType03.png
- Sprite: {fileID: 21300000, guid: 14efacacac26130428844bff33c8112c, type: 3}
- - Name: GlassesType04
- Id: Common.Common.Mask.GlassesType04
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Mask/Common/GlassesType04.png
- Sprite: {fileID: 21300000, guid: 27495bf7c98769543acb5c7398e2a1e9, type: 3}
- - Name: GlassesType05 [Paint]
- Id: Common.Common.Mask.GlassesType05 [Paint]
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Mask/Common/GlassesType05 [Paint].png
- Sprite: {fileID: 21300000, guid: 3fd9de86aa7f4c741a13719b66772428, type: 3}
- - Name: Goblin
- Id: Common.Reference.Ears.Goblin
- Edition: Common
- Collection: Reference
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Reference/Goblin.png
- Sprite: {fileID: 21300000, guid: 3268ee0d0340a0542975172ff3f7ba68, type: 3}
- - Name: GoblinAsymmetric
- Id: Common.Reference.Ears.GoblinAsymmetric
- Edition: Common
- Collection: Reference
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Reference/GoblinAsymmetric.png
- Sprite: {fileID: 21300000, guid: 4a4fb0e64f083a14e844b33107c5eafc, type: 3}
- - Name: GrimReaperCostume
- Id: Common.Halloween.Armor.GrimReaperCostume
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Halloween/GrimReaperCostume.png
- Sprite: {fileID: 21300000, guid: 2e1154e1b99e8f948880f63f085211f9, type: 3}
- - Name: GrimReaperCostume
- Id: Common.Halloween.Bracers.GrimReaperCostume
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Halloween/GrimReaperCostume.png
- Sprite: {fileID: 21300000, guid: 1f249da94bdb04540860fd7dcebbe4d3, type: 3}
- - Name: GrimReaperCostume
- Id: Common.Halloween.Helmet.GrimReaperCostume
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Halloween/GrimReaperCostume.png
- Sprite: {fileID: 21300000, guid: b7e163aa5ac023a4e8c28e4b755e8378, type: 3}
- - Name: GrimReaperCostume
- Id: Common.Halloween.Leggings.GrimReaperCostume
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Halloween/GrimReaperCostume.png
- Sprite: {fileID: 21300000, guid: 819fd3bb4d8860340bcbc0e30840fbfd, type: 3}
- - Name: GrimReaperCostume
- Id: Common.Halloween.Vest.GrimReaperCostume
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Halloween/GrimReaperCostume.png
- Sprite: {fileID: 21300000, guid: 81bcae94f9eb9424893ede8c5332ceb3, type: 3}
- - Name: GuardArmorTypeA
- Id: UndeadHeroes.Undead.Armor.GuardArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/GuardArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 213a41dad2276a641adaf015429007b8, type: 3}
- - Name: GuardArmorTypeA
- Id: UndeadHeroes.Undead.Bracers.GuardArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/GuardArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 41ee5fcbb4632f3479645fe80416f6af, type: 3}
- - Name: GuardArmorTypeA
- Id: UndeadHeroes.Undead.Helmet.GuardArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/GuardArmorTypeA.png
- Sprite: {fileID: 21300000, guid: cc2d0ebee7b0bee46aa447e0dc922616, type: 3}
- - Name: GuardArmorTypeA
- Id: UndeadHeroes.Undead.Leggings.GuardArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/GuardArmorTypeA.png
- Sprite: {fileID: 21300000, guid: b2e221e3bb67aa14fab351b4bbb34e25, type: 3}
- - Name: GuardArmorTypeA
- Id: UndeadHeroes.Undead.Vest.GuardArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/GuardArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 62e50d198d291b54d93c060ab5c82bb8, type: 3}
- - Name: GuardArmorTypeB
- Id: UndeadHeroes.Undead.Armor.GuardArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/GuardArmorTypeB.png
- Sprite: {fileID: 21300000, guid: d7a031f33f76fd14f876f2770597d8c8, type: 3}
- - Name: GuardArmorTypeB
- Id: UndeadHeroes.Undead.Bracers.GuardArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/GuardArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 21ba6dca602c78b40a7124b8cedfbc21, type: 3}
- - Name: GuardArmorTypeB
- Id: UndeadHeroes.Undead.Helmet.GuardArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/GuardArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 26bb3661de1b3e3429c3fffb49d60be7, type: 3}
- - Name: GuardArmorTypeB
- Id: UndeadHeroes.Undead.Leggings.GuardArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/GuardArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 71d1ad2b146cc1049baf83214f04e17d, type: 3}
- - Name: GuardArmorTypeB
- Id: UndeadHeroes.Undead.Vest.GuardArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/GuardArmorTypeB.png
- Sprite: {fileID: 21300000, guid: ebfea90eea6eae24294b20177a64b8a7, type: 3}
- - Name: HappyEyes
- Id: Common.Emoji.Eyes.HappyEyes
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/HappyEyes.png
- Sprite: {fileID: 21300000, guid: 640e53dca4991e248a1f366e7fbbe005, type: 3}
- - Name: HardEdge
- Id: Common.Basic.Eyes.HardEdge
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/HardEdge.png
- Sprite: {fileID: 21300000, guid: 0eac1e07ff225584087cc502bed0ea24, type: 3}
- - Name: HeadBandTypeA
- Id: UndeadHeroes.Undead.Helmet.HeadBandTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/HeadBandTypeA.png
- Sprite: {fileID: 21300000, guid: 466bab8cb3f371b4fab7d5a6a637224b, type: 3}
- - Name: HeadBandTypeB
- Id: UndeadHeroes.Undead.Helmet.HeadBandTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/HeadBandTypeB.png
- Sprite: {fileID: 21300000, guid: 307110d31a5c993499babfccdf00dbd3, type: 3}
- - Name: HeartEyes
- Id: Common.Emoji.Eyes.HeartEyes
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/HeartEyes.png
- Sprite: {fileID: 21300000, guid: f0c8750735ca2ac42b3ed22b9f4f6beb, type: 3}
- - Name: HolyHandGrenade
- Id: Common.Christmas.Supplies.HolyHandGrenade
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Bomb/HolyHandGrenade.png
- Sprite: {fileID: 21300000, guid: 5bd72e6164088154ab4356f9b71fa7e0, type: 3}
- - Name: HornsType01 [ShowEars] [FullHair] [Paint]
- Id: Common.Horns.Helmet.HornsType01 [ShowEars] [FullHair] [Paint]
- Edition: Common
- Collection: Horns
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Horns/HornsType01 [ShowEars]
- [FullHair] [Paint].png
- Sprite: {fileID: 21300000, guid: da3c14c4787ee734d9dc966c9842beaa, type: 3}
- - Name: HornsType02 [ShowEars] [FullHair] [Paint]
- Id: Common.Horns.Helmet.HornsType02 [ShowEars] [FullHair] [Paint]
- Edition: Common
- Collection: Horns
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Horns/HornsType02 [ShowEars]
- [FullHair] [Paint].png
- Sprite: {fileID: 21300000, guid: 9c85e32b9a183a34a8dff9f8e0539280, type: 3}
- - Name: HornsType03 [ShowEars] [FullHair] [Paint]
- Id: Common.Horns.Helmet.HornsType03 [ShowEars] [FullHair] [Paint]
- Edition: Common
- Collection: Horns
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Horns/HornsType03 [ShowEars]
- [FullHair] [Paint].png
- Sprite: {fileID: 21300000, guid: d084e9e2384361048830c10b6dc2ab11, type: 3}
- - Name: HornsType04 [ShowEars] [FullHair] [Paint]
- Id: Common.Horns.Helmet.HornsType04 [ShowEars] [FullHair] [Paint]
- Edition: Common
- Collection: Horns
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Horns/HornsType04 [ShowEars]
- [FullHair] [Paint].png
- Sprite: {fileID: 21300000, guid: eaef775f93f90b1418f738cef28b86ff, type: 3}
- - Name: HornsType05 [ShowEars] [FullHair] [Paint]
- Id: Common.Horns.Helmet.HornsType05 [ShowEars] [FullHair] [Paint]
- Edition: Common
- Collection: Horns
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Horns/HornsType05 [ShowEars]
- [FullHair] [Paint].png
- Sprite: {fileID: 21300000, guid: dc9047aec1334d24090a65601efa28fb, type: 3}
- - Name: HornsType06 [ShowEars] [FullHair] [Paint]
- Id: Common.Horns.Helmet.HornsType06 [ShowEars] [FullHair] [Paint]
- Edition: Common
- Collection: Horns
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Horns/HornsType06 [ShowEars]
- [FullHair] [Paint].png
- Sprite: {fileID: 21300000, guid: 74e7b79fa5087844cb8828c6e4ec5724, type: 3}
- - Name: HornsType07 [ShowEars] [FullHair] [Paint]
- Id: Common.Horns.Helmet.HornsType07 [ShowEars] [FullHair] [Paint]
- Edition: Common
- Collection: Horns
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Horns/HornsType07 [ShowEars]
- [FullHair] [Paint].png
- Sprite: {fileID: 21300000, guid: 90a3a88452d6f3a469dabd3206019364, type: 3}
- - Name: HornsType1
- Id: UndeadHeroes.Undead.Helmet.HornsType1
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/HornsType1.png
- Sprite: {fileID: 21300000, guid: f68d4819d59619a4c88d782b90ed9c22, type: 3}
- - Name: HornsType2
- Id: UndeadHeroes.Undead.Helmet.HornsType2
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/HornsType2.png
- Sprite: {fileID: 21300000, guid: ff2b1549a15f4504e8d5b5cf8ff434fc, type: 3}
- - Name: HornsType3
- Id: UndeadHeroes.Undead.Helmet.HornsType3
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/HornsType3.png
- Sprite: {fileID: 21300000, guid: b85e4ebf69b461b4ba200fc03402c97d, type: 3}
- - Name: Human
- Id: Common.Basic.Body.Human
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Basic/Human.png
- Sprite: {fileID: 21300000, guid: f43a89a17b35e0448b693c47fec365ec, type: 3}
- - Name: Human
- Id: Common.Basic.Ears.Human
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Human.png
- Sprite: {fileID: 21300000, guid: 20172465a22f9c846ae8d26b25d4877f, type: 3}
- - Name: HumanAsymmetric
- Id: Common.Reference.Body.HumanAsymmetric
- Edition: Common
- Collection: Reference
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Reference/HumanAsymmetric.png
- Sprite: {fileID: 21300000, guid: bd10a0fe384721a40b1d898c884c5096, type: 3}
- - Name: HumanAsymmetric
- Id: Common.Reference.Ears.HumanAsymmetric
- Edition: Common
- Collection: Reference
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Reference/HumanAsymmetric.png
- Sprite: {fileID: 21300000, guid: b7ae9049eecdd7c4d97fc1851e72105a, type: 3}
- - Name: HumanPants
- Id: Common.Basic.Body.HumanPants
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Basic/HumanPants.png
- Sprite: {fileID: 21300000, guid: 2d9c2f89c7f35634996acf4bbec66729, type: 3}
- - Name: HunterBow
- Id: UndeadHeroes.Undead.Arrow.HunterBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Arrow/Undead/HunterBow.png
- Sprite: {fileID: 21300000, guid: 5fb3d285d3986fe409443cddf4238187, type: 3}
- - Name: HunterBow
- Id: UndeadHeroes.Undead.Bow.HunterBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bow/Undead/HunterBow.png
- Sprite: {fileID: 21300000, guid: 70d32f608036ae04f9ac9f27f136e68e, type: 3}
- - Name: HunterBow
- Id: UndeadHeroes.Undead.Quiver.HunterBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Quiver/Undead/HunterBow.png
- Sprite: {fileID: 21300000, guid: e925a99281df8cb44b6f0e185a3a9221, type: 3}
- - Name: IronMallet
- Id: UndeadHeroes.Undead.MeleeWeapon2H.IronMallet
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Hammer/IronMallet.png
- Sprite: {fileID: 21300000, guid: 8079e03a8fbcdfc49b62b1a3c7d8566a, type: 3}
- - Name: KnightArmorTypeA
- Id: UndeadHeroes.Undead.Armor.KnightArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/KnightArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 3a5a6c6764ba3dd4caee57bb104a2363, type: 3}
- - Name: KnightArmorTypeA
- Id: UndeadHeroes.Undead.Bracers.KnightArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/KnightArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 08d5cfe66808ed040bfb8b6b3fa6d5cb, type: 3}
- - Name: KnightArmorTypeA
- Id: UndeadHeroes.Undead.Helmet.KnightArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/KnightArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 1ab95165eaa5b754d9413be93180ce0c, type: 3}
- - Name: KnightArmorTypeA
- Id: UndeadHeroes.Undead.Leggings.KnightArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/KnightArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 0fad13c81ac499c40b3f53f2def4f33f, type: 3}
- - Name: KnightArmorTypeA
- Id: UndeadHeroes.Undead.Vest.KnightArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/KnightArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 0795f0688435c9841ad567a980eeb341, type: 3}
- - Name: KnightArmorTypeB
- Id: UndeadHeroes.Undead.Armor.KnightArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/KnightArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 36e5c1086e7c7474c8c4671155b8f3dd, type: 3}
- - Name: KnightArmorTypeB
- Id: UndeadHeroes.Undead.Bracers.KnightArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/KnightArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 17148d67ccaa55646b3dafee83373a08, type: 3}
- - Name: KnightArmorTypeB
- Id: UndeadHeroes.Undead.Helmet.KnightArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/KnightArmorTypeB.png
- Sprite: {fileID: 21300000, guid: dacc17a07a15a5e4ea52bc222eedd89f, type: 3}
- - Name: KnightArmorTypeB
- Id: UndeadHeroes.Undead.Leggings.KnightArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/KnightArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 87f0aea96e942714b984cf0e5e0788ef, type: 3}
- - Name: KnightArmorTypeB
- Id: UndeadHeroes.Undead.Vest.KnightArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/KnightArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 0f784c2df0aa95447ac7e41553d01698, type: 3}
- - Name: KnightArmorTypeC
- Id: UndeadHeroes.Undead.Armor.KnightArmorTypeC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/KnightArmorTypeC.png
- Sprite: {fileID: 21300000, guid: 0bdcef247aac0fa42b1c5dabc0b7f555, type: 3}
- - Name: KnightArmorTypeC
- Id: UndeadHeroes.Undead.Bracers.KnightArmorTypeC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/KnightArmorTypeC.png
- Sprite: {fileID: 21300000, guid: 13a13e1243cde6844a9f2bad0d6c6966, type: 3}
- - Name: KnightArmorTypeC
- Id: UndeadHeroes.Undead.Helmet.KnightArmorTypeC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/KnightArmorTypeC.png
- Sprite: {fileID: 21300000, guid: 35e513294c550fe488d645ec4d7cd134, type: 3}
- - Name: KnightArmorTypeC
- Id: UndeadHeroes.Undead.Leggings.KnightArmorTypeC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/KnightArmorTypeC.png
- Sprite: {fileID: 21300000, guid: 8458138c33c31b8449f34e38da83d88e, type: 3}
- - Name: KnightArmorTypeC
- Id: UndeadHeroes.Undead.Vest.KnightArmorTypeC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/KnightArmorTypeC.png
- Sprite: {fileID: 21300000, guid: 70bc88b5c8f7e864cad68a4c108f74df, type: 3}
- - Name: LightArmorA
- Id: UndeadHeroes.Undead.Armor.LightArmorA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/LightArmorA.png
- Sprite: {fileID: 21300000, guid: c6d5175544a80114595f929d15f65898, type: 3}
- - Name: LightArmorA
- Id: UndeadHeroes.Undead.Bracers.LightArmorA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/LightArmorA.png
- Sprite: {fileID: 21300000, guid: c275581d6cb466048ac66c32c1ff03fa, type: 3}
- - Name: LightArmorA
- Id: UndeadHeroes.Undead.Helmet.LightArmorA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/LightArmorA.png
- Sprite: {fileID: 21300000, guid: 9126d5662c4c6d34a88c15878ea924a5, type: 3}
- - Name: LightArmorA
- Id: UndeadHeroes.Undead.Vest.LightArmorA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/LightArmorA.png
- Sprite: {fileID: 21300000, guid: 34caa9213d2f6f342b0517b0a2eb715e, type: 3}
- - Name: LightArmorB
- Id: UndeadHeroes.Undead.Armor.LightArmorB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/LightArmorB.png
- Sprite: {fileID: 21300000, guid: c146adf0720f45a42b683224904fd9e8, type: 3}
- - Name: LightArmorB
- Id: UndeadHeroes.Undead.Bracers.LightArmorB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/LightArmorB.png
- Sprite: {fileID: 21300000, guid: 25b9e53c76c9c7246a097c932ab769b8, type: 3}
- - Name: LightArmorB
- Id: UndeadHeroes.Undead.Helmet.LightArmorB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/LightArmorB.png
- Sprite: {fileID: 21300000, guid: 481dbb463cad81047bdc11863788ff43, type: 3}
- - Name: LightArmorB
- Id: UndeadHeroes.Undead.Vest.LightArmorB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/LightArmorB.png
- Sprite: {fileID: 21300000, guid: 71d8b37b231701c4b8bf33f3a9fd93fa, type: 3}
- - Name: LightArmorC
- Id: UndeadHeroes.Undead.Armor.LightArmorC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/LightArmorC.png
- Sprite: {fileID: 21300000, guid: 03e5681c65fc23342b097cd2fc0dc638, type: 3}
- - Name: LightArmorC
- Id: UndeadHeroes.Undead.Bracers.LightArmorC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/LightArmorC.png
- Sprite: {fileID: 21300000, guid: 4f38bb068e4f7024996fd9eac60938e6, type: 3}
- - Name: LightArmorC
- Id: UndeadHeroes.Undead.Helmet.LightArmorC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/LightArmorC.png
- Sprite: {fileID: 21300000, guid: 82695f5e6e3896341a9d1cae4c6a0f4f, type: 3}
- - Name: LightArmorC
- Id: UndeadHeroes.Undead.Vest.LightArmorC
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/LightArmorC.png
- Sprite: {fileID: 21300000, guid: e1f36641c10b073438106a236f4d34f9, type: 3}
- - Name: MaleUnderwear
- Id: Common.Underwear.Armor.MaleUnderwear
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Underwear/MaleUnderwear.png
- Sprite: {fileID: 21300000, guid: 7154e82efe9c97e4c92eae5dd307a2b3, type: 3}
- - Name: MaleUnderwear
- Id: Common.Underwear.Leggings.MaleUnderwear
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Underwear/MaleUnderwear.png
- Sprite: {fileID: 21300000, guid: 83a399f1213f7e442b3868f6368691b6, type: 3}
- - Name: MaleUnderwear
- Id: Common.Underwear.Vest.MaleUnderwear
- Edition: Common
- Collection: Underwear
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Underwear/MaleUnderwear.png
- Sprite: {fileID: 21300000, guid: c018cbc8665a0f54f9b38eb174370158, type: 3}
- - Name: Man
- Id: Common.Basic.Eyes.Man
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Man.png
- Sprite: {fileID: 21300000, guid: 9429d4f69d015da49aa9b25e8603a272, type: 3}
- - Name: MaskType01
- Id: Common.Common.Mask.MaskType01
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Mask/Common/MaskType01.png
- Sprite: {fileID: 21300000, guid: d345b4e538f5cdf4eb115116b2385d72, type: 3}
- - Name: MaskType02
- Id: Common.Common.Mask.MaskType02
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Mask/Common/MaskType02.png
- Sprite: {fileID: 21300000, guid: bd2b618cc0f5dea479b06e139bec8c5c, type: 3}
- - Name: MessyMedium
- Id: Common.Basic.Hair.MessyMedium
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/MessyMedium.png
- Sprite: {fileID: 21300000, guid: cff0a06eb9581b04e8b6ab986767b579, type: 3}
- - Name: Mohawk
- Id: Common.Basic.Hair.Mohawk
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Mohawk.png
- Sprite: {fileID: 21300000, guid: 1e87ad2cb198ed1408df487d3847882c, type: 3}
- - Name: Mohawk
- Id: Common.Goblin.Hair.Mohawk
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Goblin/Mohawk.png
- Sprite: {fileID: 21300000, guid: dd53a78f7a9d32f49bcf014af650c8c8, type: 3}
- - Name: Morgenstern
- Id: UndeadHeroes.Undead.MeleeWeapon2H.Morgenstern
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Hammer/Morgenstern.png
- Sprite: {fileID: 21300000, guid: 9dfe258bcc6e00848a7fea5a102e0ace, type: 3}
- - Name: Mouth01
- Id: Common.Basic.Mouth.Mouth01
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth01.png
- Sprite: {fileID: 21300000, guid: 082ae1e1c1b86bd488b00863b0941140, type: 3}
- - Name: Mouth02
- Id: Common.Basic.Mouth.Mouth02
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth02.png
- Sprite: {fileID: 21300000, guid: b48bd6f4f2175984792de87fae5e4e3c, type: 3}
- - Name: Mouth03
- Id: Common.Basic.Mouth.Mouth03
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth03.png
- Sprite: {fileID: 21300000, guid: 228868f1d001eea458695214893d63c5, type: 3}
- - Name: Mouth04
- Id: Common.Basic.Mouth.Mouth04
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth04.png
- Sprite: {fileID: 21300000, guid: 7e384b1bca364e643917105c5bc787cb, type: 3}
- - Name: Mouth05
- Id: Common.Basic.Mouth.Mouth05
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth05.png
- Sprite: {fileID: 21300000, guid: 71e0f4c848a932043b33f0b26afc40b4, type: 3}
- - Name: Mouth06
- Id: Common.Basic.Mouth.Mouth06
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth06.png
- Sprite: {fileID: 21300000, guid: d79755cf61abcb840affa0c07338cd18, type: 3}
- - Name: Mouth07
- Id: Common.Basic.Mouth.Mouth07
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth07.png
- Sprite: {fileID: 21300000, guid: a402ca2dc64a27e4ba1585525562277e, type: 3}
- - Name: Mouth08
- Id: Common.Basic.Mouth.Mouth08
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth08.png
- Sprite: {fileID: 21300000, guid: c696b5ce5383fc64096f69c710dff32a, type: 3}
- - Name: Mouth09
- Id: Common.Basic.Mouth.Mouth09
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth09.png
- Sprite: {fileID: 21300000, guid: 1fb7916ae55b34a488ccaaf01ab0b6a5, type: 3}
- - Name: Mouth10
- Id: Common.Basic.Mouth.Mouth10
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth10.png
- Sprite: {fileID: 21300000, guid: c2f5c3a2209d83f4cba6daa2ac6467be, type: 3}
- - Name: Mouth11
- Id: Common.Basic.Mouth.Mouth11
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth11.png
- Sprite: {fileID: 21300000, guid: 036808ea9ffe4ee408c5f27d2b576ef2, type: 3}
- - Name: Mouth12
- Id: Common.Basic.Mouth.Mouth12
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth12.png
- Sprite: {fileID: 21300000, guid: 7ab8b43b52948704aa3ac9bfcde73026, type: 3}
- - Name: Mouth13
- Id: Common.Basic.Mouth.Mouth13
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth13.png
- Sprite: {fileID: 21300000, guid: e31ceb3b87372be4a86bc173e7bfca03, type: 3}
- - Name: Mouth14
- Id: Common.Basic.Mouth.Mouth14
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth14.png
- Sprite: {fileID: 21300000, guid: cab56fa6c558beb47a0a226d44923bf6, type: 3}
- - Name: Mouth15
- Id: Common.Basic.Mouth.Mouth15
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth15.png
- Sprite: {fileID: 21300000, guid: 646cb4514d6972b4e81edf7eb3ac5bf6, type: 3}
- - Name: Mouth16
- Id: Common.Basic.Mouth.Mouth16
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth16.png
- Sprite: {fileID: 21300000, guid: 8e3122163ecfd6c428281d75f4d88d1d, type: 3}
- - Name: Mouth17
- Id: Common.Basic.Mouth.Mouth17
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth17.png
- Sprite: {fileID: 21300000, guid: ccc04af83b46f1047b1cb8450b18ef5b, type: 3}
- - Name: Mouth18
- Id: Common.Basic.Mouth.Mouth18
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth18.png
- Sprite: {fileID: 21300000, guid: 9df4739314a781c4d9d38d0ac7ccadfb, type: 3}
- - Name: Mouth19
- Id: Common.Basic.Mouth.Mouth19
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth19.png
- Sprite: {fileID: 21300000, guid: c48797b8b0b7c9f47a930ca2c44da154, type: 3}
- - Name: Mouth20
- Id: Common.Basic.Mouth.Mouth20
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth20.png
- Sprite: {fileID: 21300000, guid: 587a4971a5b75854ba433515381b48a2, type: 3}
- - Name: Mouth21
- Id: Common.Basic.Mouth.Mouth21
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth21.png
- Sprite: {fileID: 21300000, guid: 6aab285bba9565b4fb31227ac26661ab, type: 3}
- - Name: Mouth22
- Id: Common.Basic.Mouth.Mouth22
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth22.png
- Sprite: {fileID: 21300000, guid: edae64477be32ea4598133668d5050a3, type: 3}
- - Name: Mouth23
- Id: Common.Basic.Mouth.Mouth23
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth23.png
- Sprite: {fileID: 21300000, guid: 06b156c4cd55a324d9f44913cb17c0e6, type: 3}
- - Name: Mouth24 [Paint]
- Id: Common.Basic.Mouth.Mouth24 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth24 [Paint].png
- Sprite: {fileID: 21300000, guid: beb1aac3d7c01bd44bf1f0736adfdebd, type: 3}
- - Name: Mouth25 [Paint]
- Id: Common.Basic.Mouth.Mouth25 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth25 [Paint].png
- Sprite: {fileID: 21300000, guid: c5976390a8eee6b4cb49fb81ff82909f, type: 3}
- - Name: Mouth26 [Paint]
- Id: Common.Basic.Mouth.Mouth26 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth26 [Paint].png
- Sprite: {fileID: 21300000, guid: 228dd6ad6727fd941b8e273425ee8ef7, type: 3}
- - Name: Mouth27 [Paint]
- Id: Common.Basic.Mouth.Mouth27 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth27 [Paint].png
- Sprite: {fileID: 21300000, guid: 1f5336a337eba884cb0903abd81987fd, type: 3}
- - Name: Mouth28 [Paint]
- Id: Common.Basic.Mouth.Mouth28 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth28 [Paint].png
- Sprite: {fileID: 21300000, guid: ca9cb36f5c2f69f4fb38414f070f941d, type: 3}
- - Name: Mouth29 [Paint]
- Id: Common.Basic.Mouth.Mouth29 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth29 [Paint].png
- Sprite: {fileID: 21300000, guid: 100fde96010992146988ab4003cb9dcc, type: 3}
- - Name: Mouth30 [Paint]
- Id: Common.Basic.Mouth.Mouth30 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth30 [Paint].png
- Sprite: {fileID: 21300000, guid: 0c2f7af11207a454f885ddca3e30ab39, type: 3}
- - Name: Mouth31 [Paint]
- Id: Common.Basic.Mouth.Mouth31 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth31 [Paint].png
- Sprite: {fileID: 21300000, guid: ba7e195ec305c8d438d79801e89f49cd, type: 3}
- - Name: Mouth32 [Paint]
- Id: Common.Basic.Mouth.Mouth32 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth32 [Paint].png
- Sprite: {fileID: 21300000, guid: 349ef47d4cb538240992dc3d3f74ddbf, type: 3}
- - Name: Mouth33 [Paint]
- Id: Common.Basic.Mouth.Mouth33 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth33 [Paint].png
- Sprite: {fileID: 21300000, guid: ad086fa26828c444091e7fa04cff771c, type: 3}
- - Name: Mouth34 [Paint]
- Id: Common.Basic.Mouth.Mouth34 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth34 [Paint].png
- Sprite: {fileID: 21300000, guid: 2fe580f5468de504791f196ded2eb958, type: 3}
- - Name: Mouth35 [Paint]
- Id: Common.Basic.Mouth.Mouth35 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth35 [Paint].png
- Sprite: {fileID: 21300000, guid: ddef4989009361c4593e0972db80d1d8, type: 3}
- - Name: Mouth36 [Paint]
- Id: Common.Basic.Mouth.Mouth36 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth36 [Paint].png
- Sprite: {fileID: 21300000, guid: 196e8b96c24992646b7552dd0acbe8b0, type: 3}
- - Name: Mouth37 [Paint]
- Id: Common.Basic.Mouth.Mouth37 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth37 [Paint].png
- Sprite: {fileID: 21300000, guid: 556eb485ef21b6949b62dc08100e06bc, type: 3}
- - Name: Mouth38 [Paint]
- Id: Common.Basic.Mouth.Mouth38 [Paint]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Mouth38 [Paint].png
- Sprite: {fileID: 21300000, guid: 8258be75ba5c0f94aa494a26f0ae1067, type: 3}
- - Name: Musket
- Id: Common.Christmas.Firearm2H.Musket
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Firearm2H/Christmas/Musket.png
- Sprite: {fileID: 21300000, guid: 378357b652d593849a8381642991d309, type: 3}
- - Name: NeatSidePart
- Id: Common.Basic.Hair.NeatSidePart
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/NeatSidePart.png
- Sprite: {fileID: 21300000, guid: 46198b6fa3b9b4543ba7e6e1115b5ab5, type: 3}
- - Name: NutcrackerCostume [ShowEars]
- Id: Common.Christmas.Armor.NutcrackerCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Christmas/NutcrackerCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: d037fe0d9b64ab1479656e321c845c9a, type: 3}
- - Name: NutcrackerCostume [ShowEars]
- Id: Common.Christmas.Bracers.NutcrackerCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Christmas/NutcrackerCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: 3b0718abb78b664488d69bd6b5b92417, type: 3}
- - Name: NutcrackerCostume [ShowEars]
- Id: Common.Christmas.Helmet.NutcrackerCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Christmas/NutcrackerCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: d8559510512be96469d4a6c66d88040a, type: 3}
- - Name: NutcrackerCostume [ShowEars]
- Id: Common.Christmas.Leggings.NutcrackerCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Christmas/NutcrackerCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: 1c56e362887cbd5479be2a567af06893, type: 3}
- - Name: NutcrackerCostume [ShowEars]
- Id: Common.Christmas.Vest.NutcrackerCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Christmas/NutcrackerCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: 21fae96460449344193022290b0906cb, type: 3}
- - Name: OldWoodenHammer
- Id: UndeadHeroes.Undead.MeleeWeapon2H.OldWoodenHammer
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Hammer/OldWoodenHammer.png
- Sprite: {fileID: 21300000, guid: ea9ed0ef6441351419b0c1a3c5e9fb8c, type: 3}
- - Name: Pigtail
- Id: Common.Basic.Hair.Pigtail
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Pigtail.png
- Sprite: {fileID: 21300000, guid: f7f5f4673c820334198459c7ed8af275, type: 3}
- - Name: PigtailBlue
- Id: Common.Gradient [NoPaint].Hair.PigtailBlue
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/PigtailBlue.png
- Sprite: {fileID: 21300000, guid: 0c6c2d8912e7fb941bddbd06e76a9921, type: 3}
- - Name: PigtailPink
- Id: Common.Gradient [NoPaint].Hair.PigtailPink
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/PigtailPink.png
- Sprite: {fileID: 21300000, guid: 787bc3bcc7ce98f41a810ffb8d4adfa0, type: 3}
- - Name: PigtailSunny
- Id: Common.Gradient [NoPaint].Hair.PigtailSunny
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/PigtailSunny.png
- Sprite: {fileID: 21300000, guid: a04cda22ec210224a8a941117a1d0869, type: 3}
- - Name: PopStyle
- Id: Common.Basic.Hair.PopStyle
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/PopStyle.png
- Sprite: {fileID: 21300000, guid: 5f55f71dcb9583e44a786d4fe9434e31, type: 3}
- - Name: PumpkinMace
- Id: Common.Halloween.MeleeWeapon2H.PumpkinMace
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/MeleeWeapon2H/Halloween/Hammer/PumpkinMace.png
- Sprite: {fileID: 21300000, guid: e8bd5e9eb36b5cc45abb9488de0c629a, type: 3}
- - Name: Punch
- Id: Common.Christmas.Supplies.Punch
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Food/Punch.png
- Sprite: {fileID: 21300000, guid: 4aa1e1a3d8f69f54b9ea932e91267385, type: 3}
- - Name: QuestionableEyebrows
- Id: Common.Emoji.Eyebrows.QuestionableEyebrows
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Emoji/QuestionableEyebrows.png
- Sprite: {fileID: 21300000, guid: 327aabd31dceca042a2047554395ddc3, type: 3}
- - Name: RaiderArmorTypeA
- Id: UndeadHeroes.Undead.Armor.RaiderArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/RaiderArmorTypeA.png
- Sprite: {fileID: 21300000, guid: caa02f83d05ae064e8f1a84988e61715, type: 3}
- - Name: RaiderArmorTypeA
- Id: UndeadHeroes.Undead.Bracers.RaiderArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/RaiderArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 0baa77f36c70b2c42972ed5375d63f60, type: 3}
- - Name: RaiderArmorTypeA
- Id: UndeadHeroes.Undead.Helmet.RaiderArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/RaiderArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 0c79ff0541430f2478dcb53b9243f5aa, type: 3}
- - Name: RaiderArmorTypeA
- Id: UndeadHeroes.Undead.Leggings.RaiderArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/RaiderArmorTypeA.png
- Sprite: {fileID: 21300000, guid: eb682a913b3dcf1478f1d240e161182a, type: 3}
- - Name: RaiderArmorTypeA
- Id: UndeadHeroes.Undead.Vest.RaiderArmorTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/RaiderArmorTypeA.png
- Sprite: {fileID: 21300000, guid: 79bcd82a6a634d64997dc2788ed53118, type: 3}
- - Name: RaiderArmorTypeB
- Id: UndeadHeroes.Undead.Armor.RaiderArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/RaiderArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 61419b8cb2dd915408fd92f4ddc8e429, type: 3}
- - Name: RaiderArmorTypeB
- Id: UndeadHeroes.Undead.Bracers.RaiderArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/RaiderArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 69d66394d2e5e0a41a55e6b0fe811209, type: 3}
- - Name: RaiderArmorTypeB
- Id: UndeadHeroes.Undead.Helmet.RaiderArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/RaiderArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 12189fed4b5993344bc9c66c190a4f35, type: 3}
- - Name: RaiderArmorTypeB
- Id: UndeadHeroes.Undead.Leggings.RaiderArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/RaiderArmorTypeB.png
- Sprite: {fileID: 21300000, guid: 92824ade30d92dc45b28d1f0b57e925a, type: 3}
- - Name: RaiderArmorTypeB
- Id: UndeadHeroes.Undead.Vest.RaiderArmorTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/RaiderArmorTypeB.png
- Sprite: {fileID: 21300000, guid: a6de0531ac6b87940b18b9aaecb2fe0e, type: 3}
- - Name: ReaperScythe
- Id: Common.Halloween.MeleeWeapon2H.ReaperScythe
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/MeleeWeapon2H/Halloween/Axe/ReaperScythe.png
- Sprite: {fileID: 21300000, guid: 54f454bb4330cc24093a152273be78fe, type: 3}
- - Name: RedApple
- Id: Common.Common.Supplies.RedApple
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Common/Food/RedApple.png
- Sprite: {fileID: 21300000, guid: 0ca683d694afea64b85a7bb9d0e07a96, type: 3}
- - Name: ReferenceEyesAsymmetric
- Id: Common.Reference.Eyes.ReferenceEyesAsymmetric
- Edition: Common
- Collection: Reference
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Reference/ReferenceEyesAsymmetric.png
- Sprite: {fileID: 21300000, guid: 5f75862ddcba364438b1889cc6ddd09c, type: 3}
- - Name: RottenGreatsword
- Id: UndeadHeroes.Undead.MeleeWeapon2H.RottenGreatsword
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Sword/RottenGreatsword.png
- Sprite: {fileID: 21300000, guid: 728f293b1940c324eadbe27d53792013, type: 3}
- - Name: RoundChristmasCandy
- Id: Common.Christmas.Supplies.RoundChristmasCandy
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Supplies/Christmas/Food/RoundChristmasCandy.png
- Sprite: {fileID: 21300000, guid: c237a5937ee9af542abdf0e2c70c04eb, type: 3}
- - Name: RustedBastardSword
- Id: UndeadHeroes.Undead.MeleeWeapon2H.RustedBastardSword
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Sword/RustedBastardSword.png
- Sprite: {fileID: 21300000, guid: 6c228950df6f57347b5b479336c26ba4, type: 3}
- - Name: RustedBlacksmithHammer
- Id: UndeadHeroes.Undead.MeleeWeapon1H.RustedBlacksmithHammer
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Hammer/RustedBlacksmithHammer.png
- Sprite: {fileID: 21300000, guid: 05a98a4ccf618784ea1104c9c6d8e2c9, type: 3}
- - Name: RustedBroadsword
- Id: UndeadHeroes.Undead.MeleeWeapon1H.RustedBroadsword
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Sword/RustedBroadsword.png
- Sprite: {fileID: 21300000, guid: 518cdafd6d820fa4cb04928f155813cd, type: 3}
- - Name: RustedBuckler
- Id: UndeadHeroes.Undead.Shield.RustedBuckler
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Shield/Undead/RustedBuckler.png
- Sprite: {fileID: 21300000, guid: 1329f17dbeb3e4c40b52cd32e59914c4, type: 3}
- - Name: RustedDagger
- Id: UndeadHeroes.Undead.MeleeWeapon1H.RustedDagger
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Dagger/RustedDagger.png
- Sprite: {fileID: 21300000, guid: a9448e62df84b0b4682073b74b7215ee, type: 3}
- - Name: RustedGreatAxe
- Id: UndeadHeroes.Undead.MeleeWeapon2H.RustedGreatAxe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Axe/RustedGreatAxe.png
- Sprite: {fileID: 21300000, guid: 45407d53bdc755b478f8e992b3e2c959, type: 3}
- - Name: RustedGreatHammer
- Id: UndeadHeroes.Undead.MeleeWeapon2H.RustedGreatHammer
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Hammer/RustedGreatHammer.png
- Sprite: {fileID: 21300000, guid: 5bc4e8ee0b33b294d9c12250c54b4b32, type: 3}
- - Name: RustedHammer
- Id: UndeadHeroes.Undead.MeleeWeapon1H.RustedHammer
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Hammer/RustedHammer.png
- Sprite: {fileID: 21300000, guid: 859e7f884e9cdaa45b83ab530204f52e, type: 3}
- - Name: RustedKnightShield
- Id: UndeadHeroes.Undead.Shield.RustedKnightShield
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Shield/Undead/RustedKnightShield.png
- Sprite: {fileID: 21300000, guid: ef5ee196f563f3d4ebe77cd8558a5c92, type: 3}
- - Name: RustedKnightSwordTypeA
- Id: UndeadHeroes.Undead.MeleeWeapon1H.RustedKnightSwordTypeA
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Sword/RustedKnightSwordTypeA.png
- Sprite: {fileID: 21300000, guid: 3154cbd24d8c9704b8b0e7592c9ac136, type: 3}
- - Name: RustedKnightSwordTypeB
- Id: UndeadHeroes.Undead.MeleeWeapon1H.RustedKnightSwordTypeB
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Sword/RustedKnightSwordTypeB.png
- Sprite: {fileID: 21300000, guid: 91a54dde82b9598408cc7f68485eea63, type: 3}
- - Name: RustedLance
- Id: UndeadHeroes.Undead.MeleeWeapon2H.RustedLance
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Lance/RustedLance.png
- Sprite: {fileID: 21300000, guid: 2b269415112dacd4ba0656901c2dfb2f, type: 3}
- - Name: RustedLargeShield
- Id: UndeadHeroes.Undead.Shield.RustedLargeShield
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Shield/Undead/RustedLargeShield.png
- Sprite: {fileID: 21300000, guid: 6593e5f056337fe429ab2b41505d618d, type: 3}
- - Name: RustedPaleSword
- Id: UndeadHeroes.Undead.MeleeWeapon2H.RustedPaleSword
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Sword/RustedPaleSword.png
- Sprite: {fileID: 21300000, guid: 97f4dd9c2a8cba442a8939227cdd081c, type: 3}
- - Name: RustedPickaxe
- Id: UndeadHeroes.Undead.MeleeWeapon2H.RustedPickaxe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Axe/RustedPickaxe.png
- Sprite: {fileID: 21300000, guid: e5fe35ae60dbbda4ba65b9a2112e385b, type: 3}
- - Name: RustedPoleaxe
- Id: UndeadHeroes.Undead.MeleeWeapon2H.RustedPoleaxe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Axe/RustedPoleaxe.png
- Sprite: {fileID: 21300000, guid: 14a4521eb03cb5d47976e8f86aac1773, type: 3}
- - Name: RustedRoundShield
- Id: UndeadHeroes.Undead.Shield.RustedRoundShield
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Shield/Undead/RustedRoundShield.png
- Sprite: {fileID: 21300000, guid: 8473d7ae85d3f1a47af07ba77152f31a, type: 3}
- - Name: RustedScythe
- Id: UndeadHeroes.Undead.MeleeWeapon2H.RustedScythe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Axe/RustedScythe.png
- Sprite: {fileID: 21300000, guid: edb4d66f43f6798459d5dc9825ed9b8b, type: 3}
- - Name: RustedShield
- Id: UndeadHeroes.Undead.Shield.RustedShield
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Shield/Undead/RustedShield.png
- Sprite: {fileID: 21300000, guid: 7aaffc08f0b67e74c995e9fa2bcdbb4a, type: 3}
- - Name: RustedShortAxe
- Id: UndeadHeroes.Undead.MeleeWeapon1H.RustedShortAxe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Axe/RustedShortAxe.png
- Sprite: {fileID: 21300000, guid: f79102c42b9578d4da173fca6c3bf87d, type: 3}
- - Name: RustedShortSword
- Id: UndeadHeroes.Undead.MeleeWeapon1H.RustedShortSword
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Sword/RustedShortSword.png
- Sprite: {fileID: 21300000, guid: 9db985c66cff30140bf7ccd10c5dba1f, type: 3}
- - Name: RustedSlaveSword
- Id: UndeadHeroes.Undead.MeleeWeapon1H.RustedSlaveSword
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Sword/RustedSlaveSword.png
- Sprite: {fileID: 21300000, guid: 43f4788ddc2412b46ba17989d269b4dd, type: 3}
- - Name: RustedSpikedClub
- Id: UndeadHeroes.Undead.MeleeWeapon1H.RustedSpikedClub
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Hammer/RustedSpikedClub.png
- Sprite: {fileID: 21300000, guid: bdd32081e17bff94394ef49f208f5193, type: 3}
- - Name: RustedSword
- Id: UndeadHeroes.Undead.MeleeWeapon1H.RustedSword
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Sword/RustedSword.png
- Sprite: {fileID: 21300000, guid: 84944e216cfb02942929a16484f3ae40, type: 3}
- - Name: RustedWoodcutterGreataxe
- Id: UndeadHeroes.Undead.MeleeWeapon2H.RustedWoodcutterGreataxe
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Axe/RustedWoodcutterGreataxe.png
- Sprite: {fileID: 21300000, guid: 9eb18a85e95a900458af588ed56228a1, type: 3}
- - Name: SadEyebrows
- Id: Common.Emoji.Eyebrows.SadEyebrows
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyebrows/Emoji/SadEyebrows.png
- Sprite: {fileID: 21300000, guid: 4bf65d1005c89e54bbd27cd69578410a, type: 3}
- - Name: Saitama
- Id: Common.Basic.Eyes.Saitama
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Saitama.png
- Sprite: {fileID: 21300000, guid: 590fb4986f5dd2b4b887a614d0b0708b, type: 3}
- - Name: SantaCostume [ShowEars]
- Id: Common.Christmas.Armor.SantaCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Christmas/SantaCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: fc04a460eaf9ad245986bd77ddc38ac7, type: 3}
- - Name: SantaCostume [ShowEars]
- Id: Common.Christmas.Bracers.SantaCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Christmas/SantaCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: 025d9e8fdef6a9a49918a15293e86315, type: 3}
- - Name: SantaCostume [ShowEars]
- Id: Common.Christmas.Helmet.SantaCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Christmas/SantaCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: e192aea36216413478cae3a2b5de82bd, type: 3}
- - Name: SantaCostume [ShowEars]
- Id: Common.Christmas.Leggings.SantaCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Christmas/SantaCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: b77b25daf984d574c9337c99ab876851, type: 3}
- - Name: SantaCostume [ShowEars]
- Id: Common.Christmas.Vest.SantaCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Christmas/SantaCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: 799d607448535624ba6c6a5a458925b8, type: 3}
- - Name: SantaDeerCostume [ShowEars] [FullHair]
- Id: Common.Christmas.Armor.SantaDeerCostume [ShowEars] [FullHair]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Christmas/SantaDeerCostume
- [ShowEars] [FullHair].png
- Sprite: {fileID: 21300000, guid: db97e3d76d530de489d67ab7649f3b12, type: 3}
- - Name: SantaDeerCostume [ShowEars] [FullHair]
- Id: Common.Christmas.Bracers.SantaDeerCostume [ShowEars] [FullHair]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Christmas/SantaDeerCostume
- [ShowEars] [FullHair].png
- Sprite: {fileID: 21300000, guid: 6c840e9cd119e56489648038a971b631, type: 3}
- - Name: SantaDeerCostume [ShowEars] [FullHair]
- Id: Common.Christmas.Helmet.SantaDeerCostume [ShowEars] [FullHair]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Christmas/SantaDeerCostume
- [ShowEars] [FullHair].png
- Sprite: {fileID: 21300000, guid: c97d6a667ca0914408348d113b03a85e, type: 3}
- - Name: SantaDeerCostume [ShowEars] [FullHair]
- Id: Common.Christmas.Leggings.SantaDeerCostume [ShowEars] [FullHair]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Christmas/SantaDeerCostume
- [ShowEars] [FullHair].png
- Sprite: {fileID: 21300000, guid: ff0f1b893ce39d043b5a72395da77fc9, type: 3}
- - Name: SantaDeerCostume [ShowEars] [FullHair]
- Id: Common.Christmas.Vest.SantaDeerCostume [ShowEars] [FullHair]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Christmas/SantaDeerCostume
- [ShowEars] [FullHair].png
- Sprite: {fileID: 21300000, guid: f2d3666658e40fd49a378775077689fe, type: 3}
- - Name: SantaHelperCostume [ShowEars]
- Id: Common.Christmas.Armor.SantaHelperCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Christmas/SantaHelperCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: 302908753a21343469b0842d6776eee8, type: 3}
- - Name: SantaHelperCostume [ShowEars]
- Id: Common.Christmas.Bracers.SantaHelperCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Christmas/SantaHelperCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: 7b12bc1e40f07ec43a23366cb732efc8, type: 3}
- - Name: SantaHelperCostume [ShowEars]
- Id: Common.Christmas.Helmet.SantaHelperCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Christmas/SantaHelperCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: a166558544c279d42a3ec83ac0ebb1ee, type: 3}
- - Name: SantaHelperCostume [ShowEars]
- Id: Common.Christmas.Leggings.SantaHelperCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Christmas/SantaHelperCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: 03a2cd66196d4b940bc8f66f7f9e78e9, type: 3}
- - Name: SantaHelperCostume [ShowEars]
- Id: Common.Christmas.Vest.SantaHelperCostume [ShowEars]
- Edition: Common
- Collection: Christmas
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Christmas/SantaHelperCostume
- [ShowEars].png
- Sprite: {fileID: 21300000, guid: d9997974f182a7147a582fd7212edc98, type: 3}
- - Name: ScarecrowCostumeTypeA
- Id: Common.Halloween.Armor.ScarecrowCostumeTypeA
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Halloween/ScarecrowCostumeTypeA.png
- Sprite: {fileID: 21300000, guid: d71f014e468a162459e2809227023d0d, type: 3}
- - Name: ScarecrowCostumeTypeA
- Id: Common.Halloween.Bracers.ScarecrowCostumeTypeA
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Halloween/ScarecrowCostumeTypeA.png
- Sprite: {fileID: 21300000, guid: bcf3b778bc2e32c42ba479321178855d, type: 3}
- - Name: ScarecrowCostumeTypeA
- Id: Common.Halloween.Helmet.ScarecrowCostumeTypeA
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Halloween/ScarecrowCostumeTypeA.png
- Sprite: {fileID: 21300000, guid: 63cfbd565fc2f2e46ae057fdc1b8a7ad, type: 3}
- - Name: ScarecrowCostumeTypeA
- Id: Common.Halloween.Leggings.ScarecrowCostumeTypeA
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Halloween/ScarecrowCostumeTypeA.png
- Sprite: {fileID: 21300000, guid: d46ebecbf94442943a934e16db2d9e44, type: 3}
- - Name: ScarecrowCostumeTypeA
- Id: Common.Halloween.Vest.ScarecrowCostumeTypeA
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Halloween/ScarecrowCostumeTypeA.png
- Sprite: {fileID: 21300000, guid: 4647c66c1358db944a8252ac72049059, type: 3}
- - Name: ScarecrowCostumeTypeB
- Id: Common.Halloween.Armor.ScarecrowCostumeTypeB
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Halloween/ScarecrowCostumeTypeB.png
- Sprite: {fileID: 21300000, guid: 3e3db5fbadc7e234a9a6b519bc2261d2, type: 3}
- - Name: ScarecrowCostumeTypeB
- Id: Common.Halloween.Bracers.ScarecrowCostumeTypeB
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Halloween/ScarecrowCostumeTypeB.png
- Sprite: {fileID: 21300000, guid: 4920281ed8d424f488858c305dcfd0b2, type: 3}
- - Name: ScarecrowCostumeTypeB
- Id: Common.Halloween.Helmet.ScarecrowCostumeTypeB
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Halloween/ScarecrowCostumeTypeB.png
- Sprite: {fileID: 21300000, guid: 7d808d140ca08a74c9b8f2d5df01bbb8, type: 3}
- - Name: ScarecrowCostumeTypeB
- Id: Common.Halloween.Leggings.ScarecrowCostumeTypeB
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Halloween/ScarecrowCostumeTypeB.png
- Sprite: {fileID: 21300000, guid: 6e5b5d41007049e41bbbd8117ae91c3c, type: 3}
- - Name: ScarecrowCostumeTypeB
- Id: Common.Halloween.Vest.ScarecrowCostumeTypeB
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Halloween/ScarecrowCostumeTypeB.png
- Sprite: {fileID: 21300000, guid: a58a97dd9d211ee4cb220fffe3fe286e, type: 3}
- - Name: ScaredEyes
- Id: Common.Emoji.Eyes.ScaredEyes
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/ScaredEyes.png
- Sprite: {fileID: 21300000, guid: b085b7539ab0490408660bd2872b055e, type: 3}
- - Name: Shaggy
- Id: Common.Basic.Hair.Shaggy
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Shaggy.png
- Sprite: {fileID: 21300000, guid: 015266f3e54c19040bff06258ca992fb, type: 3}
- - Name: ShortHair
- Id: Common.Basic.Hair.ShortHair
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/ShortHair.png
- Sprite: {fileID: 21300000, guid: ab54b7a95051006449e9bf64aece94c4, type: 3}
- - Name: ShortTail
- Id: Common.Basic.Hair.ShortTail
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/ShortTail.png
- Sprite: {fileID: 21300000, guid: 9ea6bdae576f8164daf5d8f8e8c22739, type: 3}
- - Name: ShortTailBlue
- Id: Common.Gradient [NoPaint].Hair.ShortTailBlue
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/ShortTailBlue.png
- Sprite: {fileID: 21300000, guid: 23fc7d0a6e12abe47b8f2377b701ebb1, type: 3}
- - Name: ShortTailPink
- Id: Common.Gradient [NoPaint].Hair.ShortTailPink
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/ShortTailPink.png
- Sprite: {fileID: 21300000, guid: 50e40fed9e62e744c82d0b56f5356c07, type: 3}
- - Name: ShortTailSunny
- Id: Common.Gradient [NoPaint].Hair.ShortTailSunny
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/ShortTailSunny.png
- Sprite: {fileID: 21300000, guid: 22b38606a60c87d489e62666d3c00ad8, type: 3}
- - Name: Showel
- Id: UndeadHeroes.Undead.MeleeWeapon1H.Showel
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Hammer/Showel.png
- Sprite: {fileID: 21300000, guid: 4480cbad05eafb84aaf2843a81270997, type: 3}
- - Name: Sickle
- Id: UndeadHeroes.Undead.MeleeWeapon1H.Sickle
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Sword/Sickle.png
- Sprite: {fileID: 21300000, guid: 29b3028077600324984cafb0c8147fd9, type: 3}
- - Name: SideBangs
- Id: Common.Basic.Hair.SideBangs
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/SideBangs.png
- Sprite: {fileID: 21300000, guid: 8a898fafef0327a4d9ce2900d1a9f153, type: 3}
- - Name: SideBangsBlue
- Id: Common.Gradient [NoPaint].Hair.SideBangsBlue
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/SideBangsBlue.png
- Sprite: {fileID: 21300000, guid: f8a6213a6cd60e44c82742692a3250ac, type: 3}
- - Name: SideBangsPink
- Id: Common.Gradient [NoPaint].Hair.SideBangsPink
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/SideBangsPink.png
- Sprite: {fileID: 21300000, guid: 44f25d20c985de442a91d590b7b79c73, type: 3}
- - Name: SideBangsSunny
- Id: Common.Gradient [NoPaint].Hair.SideBangsSunny
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/SideBangsSunny.png
- Sprite: {fileID: 21300000, guid: 15efacbfb5dba3040931a06b17f15fe8, type: 3}
- - Name: Skeleton
- Id: UndeadHeroes.Skeleton.Eyes.Skeleton
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Eyes/Skeleton/Skeleton.png
- Sprite: {fileID: 21300000, guid: c73ca0dc07baf5b4a85b9a8960d13b15, type: 3}
- - Name: Skeleton1
- Id: UndeadHeroes.Skeleton.Body.Skeleton1
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Body/Skeleton/Skeleton1.png
- Sprite: {fileID: 21300000, guid: e58135f0995207f42b1323372ea8a87a, type: 3}
- - Name: Skeleton2 [NoMouth]
- Id: UndeadHeroes.Skeleton.Body.Skeleton2 [NoMouth]
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Body/Skeleton/Skeleton2
- [NoMouth].png
- Sprite: {fileID: 21300000, guid: dcbb13c3cb399344186d08069ff0748e, type: 3}
- - Name: Skeleton3
- Id: UndeadHeroes.Skeleton.Body.Skeleton3
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Body/Skeleton/Skeleton3.png
- Sprite: {fileID: 21300000, guid: 5e0a45be3a1b83a469df022bc4bfee8d, type: 3}
- - Name: Skeleton4
- Id: UndeadHeroes.Skeleton.Body.Skeleton4
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Body/Skeleton/Skeleton4.png
- Sprite: {fileID: 21300000, guid: 2650253d5376e754eaf4a7b5272dc108, type: 3}
- - Name: Skeleton5
- Id: UndeadHeroes.Skeleton.Body.Skeleton5
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Body/Skeleton/Skeleton5.png
- Sprite: {fileID: 21300000, guid: 14c5171e4d989fe46ae1d011c483bbba, type: 3}
- - Name: Skeleton6
- Id: UndeadHeroes.Skeleton.Body.Skeleton6
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Body/Skeleton/Skeleton6.png
- Sprite: {fileID: 21300000, guid: 26d4d27dcb8d558419acbfceedf4fae1, type: 3}
- - Name: Skeleton7
- Id: UndeadHeroes.Skeleton.Body.Skeleton7
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Body/Skeleton/Skeleton7.png
- Sprite: {fileID: 21300000, guid: 5f48656a14b52d84296de4319ce236df, type: 3}
- - Name: Skeleton8 [NoMouth]
- Id: UndeadHeroes.Skeleton.Body.Skeleton8 [NoMouth]
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Body/Skeleton/Skeleton8
- [NoMouth].png
- Sprite: {fileID: 21300000, guid: 4928d554965507543a6e3c9ba375c948, type: 3}
- - Name: SkeletonArmor1
- Id: UndeadHeroes.Undead.Armor.SkeletonArmor1
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/SkeletonArmor1.png
- Sprite: {fileID: 21300000, guid: 2ca490bfb8441524bbdca6eab7a91774, type: 3}
- - Name: SkeletonArmor1
- Id: UndeadHeroes.Undead.Bracers.SkeletonArmor1
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/SkeletonArmor1.png
- Sprite: {fileID: 21300000, guid: 08b4e08551445ac4c932410328bf998f, type: 3}
- - Name: SkeletonArmor1
- Id: UndeadHeroes.Undead.Helmet.SkeletonArmor1
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/SkeletonArmor1.png
- Sprite: {fileID: 21300000, guid: d2a278b08b2b560498c6557f6f9a811c, type: 3}
- - Name: SkeletonArmor1
- Id: UndeadHeroes.Undead.Leggings.SkeletonArmor1
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/SkeletonArmor1.png
- Sprite: {fileID: 21300000, guid: 68424137044893a419260e01fdfc735f, type: 3}
- - Name: SkeletonArmor1
- Id: UndeadHeroes.Undead.Vest.SkeletonArmor1
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/SkeletonArmor1.png
- Sprite: {fileID: 21300000, guid: e63e59ce424c3904c833659b80cac995, type: 3}
- - Name: SkeletonArmor2
- Id: UndeadHeroes.Undead.Armor.SkeletonArmor2
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/SkeletonArmor2.png
- Sprite: {fileID: 21300000, guid: 59544c031fae7b94c924c9a6f71ec046, type: 3}
- - Name: SkeletonArmor2
- Id: UndeadHeroes.Undead.Bracers.SkeletonArmor2
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/SkeletonArmor2.png
- Sprite: {fileID: 21300000, guid: 9218168af0c992f4ab1aecaf83e84623, type: 3}
- - Name: SkeletonArmor2
- Id: UndeadHeroes.Undead.Helmet.SkeletonArmor2
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/SkeletonArmor2.png
- Sprite: {fileID: 21300000, guid: 01bb8bcceda446f478c6365453758700, type: 3}
- - Name: SkeletonArmor2
- Id: UndeadHeroes.Undead.Leggings.SkeletonArmor2
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/SkeletonArmor2.png
- Sprite: {fileID: 21300000, guid: f136485cc422f7a4894a074dc34b2e44, type: 3}
- - Name: SkeletonArmor2
- Id: UndeadHeroes.Undead.Vest.SkeletonArmor2
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/SkeletonArmor2.png
- Sprite: {fileID: 21300000, guid: 3b71a484b90cd954cbb4a6e6d8ae8f13, type: 3}
- - Name: SkeletonArmor3
- Id: UndeadHeroes.Undead.Armor.SkeletonArmor3
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/SkeletonArmor3.png
- Sprite: {fileID: 21300000, guid: a244892c14120b14bbe727f28ce6b50f, type: 3}
- - Name: SkeletonArmor3
- Id: UndeadHeroes.Undead.Bracers.SkeletonArmor3
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/SkeletonArmor3.png
- Sprite: {fileID: 21300000, guid: ace5a2a4def34e44fb6335e3f95385ed, type: 3}
- - Name: SkeletonArmor3
- Id: UndeadHeroes.Undead.Helmet.SkeletonArmor3
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/SkeletonArmor3.png
- Sprite: {fileID: 21300000, guid: 620f2c84ddbc90041b1e678aac6abb4a, type: 3}
- - Name: SkeletonArmor3
- Id: UndeadHeroes.Undead.Leggings.SkeletonArmor3
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/SkeletonArmor3.png
- Sprite: {fileID: 21300000, guid: 18f0cfdad0c680741affc8b2195558c4, type: 3}
- - Name: SkeletonArmor3
- Id: UndeadHeroes.Undead.Vest.SkeletonArmor3
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/SkeletonArmor3.png
- Sprite: {fileID: 21300000, guid: e3e05f3408ec1a64fb575ee75dc9a867, type: 3}
- - Name: SkeletonArmor4
- Id: UndeadHeroes.Undead.Armor.SkeletonArmor4
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/SkeletonArmor4.png
- Sprite: {fileID: 21300000, guid: 03748cf08e6e589478ffa6f66eab43eb, type: 3}
- - Name: SkeletonArmor4
- Id: UndeadHeroes.Undead.Bracers.SkeletonArmor4
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/SkeletonArmor4.png
- Sprite: {fileID: 21300000, guid: 34856ca8ddfad674eb0169162f874291, type: 3}
- - Name: SkeletonArmor4
- Id: UndeadHeroes.Undead.Helmet.SkeletonArmor4
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/SkeletonArmor4.png
- Sprite: {fileID: 21300000, guid: 72194a3a5778d534f86b3ed6e44514ba, type: 3}
- - Name: SkeletonArmor4
- Id: UndeadHeroes.Undead.Leggings.SkeletonArmor4
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/SkeletonArmor4.png
- Sprite: {fileID: 21300000, guid: a9044ff11e76dc54295ca0888a095d8a, type: 3}
- - Name: SkeletonArmor4
- Id: UndeadHeroes.Undead.Vest.SkeletonArmor4
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/SkeletonArmor4.png
- Sprite: {fileID: 21300000, guid: 0910044c22755b04c9d67d393911dc15, type: 3}
- - Name: SkeletonKingArmor
- Id: UndeadHeroes.Undead.Armor.SkeletonKingArmor
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/SkeletonKingArmor.png
- Sprite: {fileID: 21300000, guid: 7cedbd3f70909c546bd0006235c23099, type: 3}
- - Name: SkeletonKingArmor
- Id: UndeadHeroes.Undead.Bracers.SkeletonKingArmor
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bracers/Undead/SkeletonKingArmor.png
- Sprite: {fileID: 21300000, guid: 9a70b89869ad40a47bc4cc328647bdfd, type: 3}
- - Name: SkeletonKingArmor
- Id: UndeadHeroes.Undead.Helmet.SkeletonKingArmor
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/SkeletonKingArmor.png
- Sprite: {fileID: 21300000, guid: 0f374be033bd2a64a82970458759b19a, type: 3}
- - Name: SkeletonKingArmor
- Id: UndeadHeroes.Undead.Leggings.SkeletonKingArmor
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/SkeletonKingArmor.png
- Sprite: {fileID: 21300000, guid: c153362f4d8f5b44fba82b42a25aad25, type: 3}
- - Name: SkeletonKingArmor
- Id: UndeadHeroes.Undead.Vest.SkeletonKingArmor
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/SkeletonKingArmor.png
- Sprite: {fileID: 21300000, guid: f65159059d80d5142b64547dbdd35c4a, type: 3}
- - Name: SkeletonMiner
- Id: UndeadHeroes.Undead.Armor.SkeletonMiner
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Armor/Undead/SkeletonMiner.png
- Sprite: {fileID: 21300000, guid: 381d8f8388b631a428c4e2f6a6340132, type: 3}
- - Name: SkeletonMiner
- Id: UndeadHeroes.Undead.Helmet.SkeletonMiner
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Helmet/Undead/SkeletonMiner.png
- Sprite: {fileID: 21300000, guid: 1474b956f3d809147b800851a3ba3c9a, type: 3}
- - Name: SkeletonMiner
- Id: UndeadHeroes.Undead.Leggings.SkeletonMiner
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Leggings/Undead/SkeletonMiner.png
- Sprite: {fileID: 21300000, guid: e1613af68dd0be347b41d66c4c4558b7, type: 3}
- - Name: SkeletonMiner
- Id: UndeadHeroes.Undead.Vest.SkeletonMiner
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Vest/Undead/SkeletonMiner.png
- Sprite: {fileID: 21300000, guid: 617f39f818515ff4b8f169b6c6c76082, type: 3}
- - Name: SkeletonTest
- Id: UndeadHeroes.Skeleton.Body.SkeletonTest
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Body/Skeleton/SkeletonTest.png
- Sprite: {fileID: 21300000, guid: 9fbfa96a43f6c7e44a20b9ca4f789e60, type: 3}
- - Name: SlickBack
- Id: Common.Basic.Hair.SlickBack
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/SlickBack.png
- Sprite: {fileID: 21300000, guid: 48b2cf36e20ac7f42a1e739f071ab645, type: 3}
- - Name: SlickBackBlue
- Id: Common.Gradient [NoPaint].Hair.SlickBackBlue
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/SlickBackBlue.png
- Sprite: {fileID: 21300000, guid: 233063a30c4552948bac250679b72fa1, type: 3}
- - Name: SlickBackPink
- Id: Common.Gradient [NoPaint].Hair.SlickBackPink
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/SlickBackPink.png
- Sprite: {fileID: 21300000, guid: 336bb494775e8d849a781dc9c2b5f5c9, type: 3}
- - Name: SlickBackSunny
- Id: Common.Gradient [NoPaint].Hair.SlickBackSunny
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/SlickBackSunny.png
- Sprite: {fileID: 21300000, guid: c186b2293a87b854bae7a5c0e7a236f3, type: 3}
- - Name: Smile
- Id: Common.Basic.Mouth.Smile
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Smile.png
- Sprite: {fileID: 21300000, guid: 2e0f965e060f7df4faa1d1780959f13d, type: 3}
- - Name: Smirk
- Id: Common.Basic.Mouth.Smirk
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Basic/Smirk.png
- Sprite: {fileID: 21300000, guid: e9083521b4ab6304fa89f0ca241a0660, type: 3}
- - Name: SpikedBoneBow
- Id: UndeadHeroes.Undead.Arrow.SpikedBoneBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Arrow/Undead/SpikedBoneBow.png
- Sprite: {fileID: 21300000, guid: 711a8dffca0f13b42bc9db4e5a820770, type: 3}
- - Name: SpikedBoneBow
- Id: UndeadHeroes.Undead.Bow.SpikedBoneBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bow/Undead/SpikedBoneBow.png
- Sprite: {fileID: 21300000, guid: 0f3a11e85146d8f44b5dbf5fbdd0a212, type: 3}
- - Name: SpikedBoneBow
- Id: UndeadHeroes.Undead.Quiver.SpikedBoneBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Quiver/Undead/SpikedBoneBow.png
- Sprite: {fileID: 21300000, guid: bd4f67c56e785df4fa343b00e88ff3e9, type: 3}
- - Name: Spiky
- Id: Common.Basic.Hair.Spiky
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Spiky.png
- Sprite: {fileID: 21300000, guid: bcdcd4b4b20de6f4ea942f3583ddc7f3, type: 3}
- - Name: SpikyFringeUp
- Id: Common.Basic.Hair.SpikyFringeUp
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/SpikyFringeUp.png
- Sprite: {fileID: 21300000, guid: e86e25ec04ad4ed49af812b0c621782b, type: 3}
- - Name: SpikyLayered
- Id: Common.Basic.Hair.SpikyLayered
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/SpikyLayered.png
- Sprite: {fileID: 21300000, guid: 2f35cbd5b3f4921458e35bbeb15def09, type: 3}
- - Name: SpineBow
- Id: UndeadHeroes.Undead.Arrow.SpineBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Arrow/Undead/SpineBow.png
- Sprite: {fileID: 21300000, guid: c14410a4646f7e849bb155944526d73d, type: 3}
- - Name: SpineBow
- Id: UndeadHeroes.Undead.Bow.SpineBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Bow/Undead/SpineBow.png
- Sprite: {fileID: 21300000, guid: f629fc7b9e73c254baee1365a5279b22, type: 3}
- - Name: SpineBow
- Id: UndeadHeroes.Undead.Quiver.SpineBow
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Quiver/Undead/SpineBow.png
- Sprite: {fileID: 21300000, guid: d39b51ff55214624ab3b64bc12cc4807, type: 3}
- - Name: StoneMace
- Id: UndeadHeroes.Undead.MeleeWeapon2H.StoneMace
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon2H/Undead/Hammer/StoneMace.png
- Sprite: {fileID: 21300000, guid: 59295fb38b0d3464c89c260078cf6541, type: 3}
- - Name: SurprsedEyes
- Id: Common.Emoji.Eyes.SurprsedEyes
- Edition: Common
- Collection: Emoji
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Emoji/SurprsedEyes.png
- Sprite: {fileID: 21300000, guid: 540ef4d1805c50e4a8ca3a13a89ca0d9, type: 3}
- - Name: Twintales
- Id: Common.Basic.Hair.Twintales
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Twintales.png
- Sprite: {fileID: 21300000, guid: 2584c3a311536744aa55fe5b6d5ebf8b, type: 3}
- - Name: TwintalesBlue
- Id: Common.Gradient [NoPaint].Hair.TwintalesBlue
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/TwintalesBlue.png
- Sprite: {fileID: 21300000, guid: 25bd879015d928d42b4398617bf329b5, type: 3}
- - Name: TwintalesPink
- Id: Common.Gradient [NoPaint].Hair.TwintalesPink
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/TwintalesPink.png
- Sprite: {fileID: 21300000, guid: ce20e57f04ae3674ab0144b43ff2c07f, type: 3}
- - Name: TwintalesSunny
- Id: Common.Gradient [NoPaint].Hair.TwintalesSunny
- Edition: Common
- Collection: Gradient [NoPaint]
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Gradient [NoPaint]/TwintalesSunny.png
- Sprite: {fileID: 21300000, guid: 84f791b2c5d6f6842b7e84680cbac1c0, type: 3}
- - Name: Type01
- Id: Common.Basic.Eyes.Type01
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type01.png
- Sprite: {fileID: 21300000, guid: 72eac6c9ad2298c469f88b23f8793f29, type: 3}
- - Name: Type02
- Id: Common.Basic.Eyes.Type02
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type02.png
- Sprite: {fileID: 21300000, guid: c4479e1dbbce6f34db95e68041ab271b, type: 3}
- - Name: Type03
- Id: Common.Basic.Eyes.Type03
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type03.png
- Sprite: {fileID: 21300000, guid: 62f2b598e6b2b024787ab37df04dae49, type: 3}
- - Name: Type04
- Id: Common.Basic.Eyes.Type04
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type04.png
- Sprite: {fileID: 21300000, guid: b7ee6fd51a04ec9429769504d3b4c47a, type: 3}
- - Name: Type05
- Id: Common.Basic.Eyes.Type05
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type05.png
- Sprite: {fileID: 21300000, guid: 3b70b96297b68a940a0069144627a5d0, type: 3}
- - Name: Type06
- Id: Common.Basic.Eyes.Type06
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type06.png
- Sprite: {fileID: 21300000, guid: 9e9cdafd35ee2e8489fb2cfa775199ea, type: 3}
- - Name: Type07
- Id: Common.Basic.Eyes.Type07
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type07.png
- Sprite: {fileID: 21300000, guid: b6c5f65977ccd7347b34f93af0452ac6, type: 3}
- - Name: Type08
- Id: Common.Basic.Eyes.Type08
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type08.png
- Sprite: {fileID: 21300000, guid: c0ba0e71e0889444fbcd99c18141167b, type: 3}
- - Name: Type09
- Id: Common.Basic.Eyes.Type09
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type09.png
- Sprite: {fileID: 21300000, guid: 3220ef61ef2eb4641a308c45392db6a0, type: 3}
- - Name: Type1
- Id: Common.Basic.Beard.Type1
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type1.png
- Sprite: {fileID: 21300000, guid: 875b1858bc450b043972b9f73c3db6a3, type: 3}
- - Name: Type1
- Id: Common.Goblin.Beard.Type1
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Goblin/Type1.png
- Sprite: {fileID: 21300000, guid: 9c5107d3a9656ae4da976d5b0cef17a9, type: 3}
- - Name: Type1
- Id: Common.Basic.Body.Type1
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Basic/Type1.png
- Sprite: {fileID: 21300000, guid: 25c9fe738066907478745d609efa46d1, type: 3}
- - Name: Type1
- Id: Common.Goblin.Body.Type1
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Goblin/Type1.png
- Sprite: {fileID: 21300000, guid: 591ba598a2392e146b3ffc32854b3a90, type: 3}
- - Name: Type1
- Id: Common.Basic.Ears.Type1
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type1.png
- Sprite: {fileID: 21300000, guid: 2ad29b3eb199c1f438b391f86d8022ee, type: 3}
- - Name: Type1
- Id: Common.Goblin.Ears.Type1
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Goblin/Type1.png
- Sprite: {fileID: 21300000, guid: 4ac5cac5576f89f42918d478db2050ce, type: 3}
- - Name: Type1
- Id: Common.Goblin.Eyes.Type1
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Goblin/Type1.png
- Sprite: {fileID: 21300000, guid: 6965fe0df39116e44adbe99eb886bc14, type: 3}
- - Name: Type1
- Id: Common.Basic.Hair.Type1
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type1.png
- Sprite: {fileID: 21300000, guid: f44167b6109f6474582185951e47fa16, type: 3}
- - Name: Type1
- Id: Common.Goblin.Hair.Type1
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Goblin/Type1.png
- Sprite: {fileID: 21300000, guid: 95cf1d957644f5f4e959ab6e48db357c, type: 3}
- - Name: Type1
- Id: Common.Goblin.Mouth.Type1
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Goblin/Type1.png
- Sprite: {fileID: 21300000, guid: c565b12665370ee46bc505d503f029f2, type: 3}
- - Name: Type1
- Id: Common.Common.Earrings.Type1
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type1.png
- Sprite: {fileID: 21300000, guid: 011ddb2d94ec5b741bd9f60210cb7836, type: 3}
- - Name: Type10
- Id: Common.Basic.Beard.Type10
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type10.png
- Sprite: {fileID: 21300000, guid: f10684433a640ca4c8f1fa7b5142c19a, type: 3}
- - Name: Type10
- Id: Common.Basic.Ears.Type10
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type10.png
- Sprite: {fileID: 21300000, guid: f153280793385254d8278cc6bcd8853c, type: 3}
- - Name: Type10
- Id: Common.Basic.Eyes.Type10
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type10.png
- Sprite: {fileID: 21300000, guid: 39ccb86963f28ce439d436d497e27334, type: 3}
- - Name: Type10
- Id: Common.Common.Earrings.Type10
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type10.png
- Sprite: {fileID: 21300000, guid: 16ee42b1da2da39438ffdf196d49b65e, type: 3}
- - Name: Type10 [HideEars]
- Id: Common.Basic.Hair.Type10 [HideEars]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type10 [HideEars].png
- Sprite: {fileID: 21300000, guid: dea68736ce6c9a4488e766f8f196f22e, type: 3}
- - Name: Type11
- Id: Common.Basic.Beard.Type11
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type11.png
- Sprite: {fileID: 21300000, guid: 80114cd4de40e2948bde0e4cd2735358, type: 3}
- - Name: Type11
- Id: Common.Basic.Ears.Type11
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type11.png
- Sprite: {fileID: 21300000, guid: 6d921a04acf8b49408b5ae5cc9c5e13a, type: 3}
- - Name: Type11
- Id: Common.Basic.Eyes.Type11
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type11.png
- Sprite: {fileID: 21300000, guid: a1a295a1f033ccd4eb84ff53d875e542, type: 3}
- - Name: Type11
- Id: Common.Common.Earrings.Type11
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type11.png
- Sprite: {fileID: 21300000, guid: b53425e437f16bd42856b24d20cd0ece, type: 3}
- - Name: Type11 [HideEars]
- Id: Common.Basic.Hair.Type11 [HideEars]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type11 [HideEars].png
- Sprite: {fileID: 21300000, guid: 9e844772c7efe4144ae42d695b550fa8, type: 3}
- - Name: Type12
- Id: Common.Basic.Beard.Type12
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type12.png
- Sprite: {fileID: 21300000, guid: 65a2ab2c9de571b4dad7315382e47a43, type: 3}
- - Name: Type12
- Id: Common.Basic.Ears.Type12
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type12.png
- Sprite: {fileID: 21300000, guid: fc4d1d4dd8ced0840b23d8a8deada7a9, type: 3}
- - Name: Type12
- Id: Common.Basic.Eyes.Type12
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type12.png
- Sprite: {fileID: 21300000, guid: 58e87e76bbc68d64eb5e189fe8aa2d75, type: 3}
- - Name: Type12
- Id: Common.Basic.Hair.Type12
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type12.png
- Sprite: {fileID: 21300000, guid: 388a5372918b1ea46ac9ecaf94c0a3f8, type: 3}
- - Name: Type12
- Id: Common.Common.Earrings.Type12
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type12.png
- Sprite: {fileID: 21300000, guid: a8a5d085c8d35db4e89287b0d14df66d, type: 3}
- - Name: Type13
- Id: Common.Basic.Eyes.Type13
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type13.png
- Sprite: {fileID: 21300000, guid: eb6f24a3c4456fb4e8e89e4db34b3ff4, type: 3}
- - Name: Type13
- Id: Common.Common.Earrings.Type13
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type13.png
- Sprite: {fileID: 21300000, guid: ade925f33c1f19545880236c31677c37, type: 3}
- - Name: Type13 [HideEars]
- Id: Common.Basic.Hair.Type13 [HideEars]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type13 [HideEars].png
- Sprite: {fileID: 21300000, guid: b42e0e82cf8f8e7448873d76cd4733e9, type: 3}
- - Name: Type14
- Id: Common.Basic.Eyes.Type14
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type14.png
- Sprite: {fileID: 21300000, guid: 0ec73adea5c6b1441acea1ec258964ec, type: 3}
- - Name: Type14
- Id: Common.Common.Earrings.Type14
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type14.png
- Sprite: {fileID: 21300000, guid: efc2d134546604c4693fd162c7e208a4, type: 3}
- - Name: Type14 [HideEars]
- Id: Common.Basic.Hair.Type14 [HideEars]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type14 [HideEars].png
- Sprite: {fileID: 21300000, guid: 99e700fc87813ca46a855f6e774265f0, type: 3}
- - Name: Type15
- Id: Common.Basic.Eyes.Type15
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type15.png
- Sprite: {fileID: 21300000, guid: 49bac13edfada984a9bd51a737acf3b1, type: 3}
- - Name: Type15
- Id: Common.Common.Earrings.Type15
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type15.png
- Sprite: {fileID: 21300000, guid: 154927b9fb6e1c147b41447b1c299882, type: 3}
- - Name: Type15 [HideEars]
- Id: Common.Basic.Hair.Type15 [HideEars]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type15 [HideEars].png
- Sprite: {fileID: 21300000, guid: 6bb93b96f53a3ed4e8cbecc25a42be84, type: 3}
- - Name: Type16
- Id: Common.Basic.Eyes.Type16
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type16.png
- Sprite: {fileID: 21300000, guid: a49eb708e79881449a74968c48721494, type: 3}
- - Name: Type16
- Id: Common.Common.Earrings.Type16
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type16.png
- Sprite: {fileID: 21300000, guid: 4363e2366e162ca47a65574d3e115e4f, type: 3}
- - Name: Type16 [HideEars]
- Id: Common.Basic.Hair.Type16 [HideEars]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type16 [HideEars].png
- Sprite: {fileID: 21300000, guid: c927fefafe8d57c44811b6782854f5ea, type: 3}
- - Name: Type17
- Id: Common.Basic.Eyes.Type17
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type17.png
- Sprite: {fileID: 21300000, guid: 26e6352638ff5c6478682643ced615cd, type: 3}
- - Name: Type17
- Id: Common.Basic.Hair.Type17
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type17.png
- Sprite: {fileID: 21300000, guid: 15578f68b003d3c40b706d6118d470ff, type: 3}
- - Name: Type17
- Id: Common.Common.Earrings.Type17
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type17.png
- Sprite: {fileID: 21300000, guid: 58601d430fc31cb4fb25b52d5f2b4308, type: 3}
- - Name: Type18
- Id: Common.Basic.Eyes.Type18
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type18.png
- Sprite: {fileID: 21300000, guid: 982d15a8916399f448e25f44c9c5f860, type: 3}
- - Name: Type18
- Id: Common.Basic.Hair.Type18
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type18.png
- Sprite: {fileID: 21300000, guid: 70f9e662200bb7449b26d43fc009cd92, type: 3}
- - Name: Type19
- Id: Common.Basic.Eyes.Type19
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Basic/Type19.png
- Sprite: {fileID: 21300000, guid: fb5539e6a29be1c49b59d464bb3b6a7a, type: 3}
- - Name: Type19 [HideEars]
- Id: Common.Basic.Hair.Type19 [HideEars]
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type19 [HideEars].png
- Sprite: {fileID: 21300000, guid: ae644746972d6e948ac14ee7254e0f04, type: 3}
- - Name: Type2
- Id: Common.Basic.Beard.Type2
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type2.png
- Sprite: {fileID: 21300000, guid: 09f86f365fd843043bfdac811b17467c, type: 3}
- - Name: Type2
- Id: Common.Goblin.Beard.Type2
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Goblin/Type2.png
- Sprite: {fileID: 21300000, guid: 3b1fbe84e42e9e8448b3b9380f43a866, type: 3}
- - Name: Type2
- Id: Common.Basic.Body.Type2
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Basic/Type2.png
- Sprite: {fileID: 21300000, guid: aebf0db3242689c4bb80f80bc8628b0a, type: 3}
- - Name: Type2
- Id: Common.Goblin.Body.Type2
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Goblin/Type2.png
- Sprite: {fileID: 21300000, guid: 051e4d281d81ad64fba85e46debfcf1d, type: 3}
- - Name: Type2
- Id: Common.Basic.Ears.Type2
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type2.png
- Sprite: {fileID: 21300000, guid: 5a07674ee96b158408fe1891553532be, type: 3}
- - Name: Type2
- Id: Common.Goblin.Ears.Type2
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Goblin/Type2.png
- Sprite: {fileID: 21300000, guid: c222c5ca0407282488d511238dcf529f, type: 3}
- - Name: Type2
- Id: Common.Goblin.Eyes.Type2
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Goblin/Type2.png
- Sprite: {fileID: 21300000, guid: 2ca9e34ab093f734f9a77e09e42c6339, type: 3}
- - Name: Type2
- Id: Common.Basic.Hair.Type2
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type2.png
- Sprite: {fileID: 21300000, guid: 4d2488066e244c74a9a2ddb343779f68, type: 3}
- - Name: Type2
- Id: Common.Goblin.Hair.Type2
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Goblin/Type2.png
- Sprite: {fileID: 21300000, guid: 546dcee8fc6254447a9ccdd7f49826c8, type: 3}
- - Name: Type2
- Id: Common.Goblin.Mouth.Type2
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Goblin/Type2.png
- Sprite: {fileID: 21300000, guid: 553e7cd95332be34ca32bdfb26c8aae3, type: 3}
- - Name: Type2
- Id: Common.Common.Earrings.Type2
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type2.png
- Sprite: {fileID: 21300000, guid: 2bd522f73b59e93479035f8e12934c7a, type: 3}
- - Name: Type20
- Id: Common.Basic.Hair.Type20
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type20.png
- Sprite: {fileID: 21300000, guid: 209d82dc64adec542b3d743a07bdb8e9, type: 3}
- - Name: Type21
- Id: Common.Basic.Hair.Type21
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type21.png
- Sprite: {fileID: 21300000, guid: c9b2f44cc7705ea4086ba1e6d9db5ffa, type: 3}
- - Name: Type3
- Id: Common.Basic.Beard.Type3
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type3.png
- Sprite: {fileID: 21300000, guid: 8427585ef1b14d248812085e3b8e344c, type: 3}
- - Name: Type3
- Id: Common.Goblin.Beard.Type3
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Goblin/Type3.png
- Sprite: {fileID: 21300000, guid: 31a748da8b816834e91413653890118d, type: 3}
- - Name: Type3
- Id: Common.Basic.Body.Type3
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Basic/Type3.png
- Sprite: {fileID: 21300000, guid: 0b68b751e6d55954f93448554f81b4fa, type: 3}
- - Name: Type3
- Id: Common.Goblin.Body.Type3
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Goblin/Type3.png
- Sprite: {fileID: 21300000, guid: b4ef7a1980c5bd94aa5d86b845fc223c, type: 3}
- - Name: Type3
- Id: Common.Basic.Ears.Type3
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type3.png
- Sprite: {fileID: 21300000, guid: 39a0992d6633e62438716e6d5ac4057e, type: 3}
- - Name: Type3
- Id: Common.Goblin.Ears.Type3
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Goblin/Type3.png
- Sprite: {fileID: 21300000, guid: 7fcc4ac4a22cc644ca9854b662783787, type: 3}
- - Name: Type3
- Id: Common.Goblin.Eyes.Type3
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Goblin/Type3.png
- Sprite: {fileID: 21300000, guid: 6c9e48e956b1274408513b761c6e52c5, type: 3}
- - Name: Type3
- Id: Common.Basic.Hair.Type3
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type3.png
- Sprite: {fileID: 21300000, guid: 2efaf6e7c9f341847ab165812c85b722, type: 3}
- - Name: Type3
- Id: Common.Goblin.Hair.Type3
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Goblin/Type3.png
- Sprite: {fileID: 21300000, guid: 3c55d40fa72594a4890190b902dee334, type: 3}
- - Name: Type3
- Id: Common.Goblin.Mouth.Type3
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Goblin/Type3.png
- Sprite: {fileID: 21300000, guid: a3c7ea192f68e42459b88b1fa7cf977b, type: 3}
- - Name: Type3
- Id: Common.Common.Earrings.Type3
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type3.png
- Sprite: {fileID: 21300000, guid: 4806657b8af228e4d94b93c77a441f17, type: 3}
- - Name: Type4
- Id: Common.Basic.Beard.Type4
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type4.png
- Sprite: {fileID: 21300000, guid: 47e0da77943da38479efb2f9e867b7a3, type: 3}
- - Name: Type4
- Id: Common.Goblin.Beard.Type4
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Goblin/Type4.png
- Sprite: {fileID: 21300000, guid: 786a97922f62d9b4b82c9fbe6bb1e43b, type: 3}
- - Name: Type4
- Id: Common.Basic.Body.Type4
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Basic/Type4.png
- Sprite: {fileID: 21300000, guid: 7145e7a3433721f409a52c17f8c82ebf, type: 3}
- - Name: Type4
- Id: Common.Goblin.Body.Type4
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Goblin/Type4.png
- Sprite: {fileID: 21300000, guid: 92bbb43371dc49847ba1caaa880613f6, type: 3}
- - Name: Type4
- Id: Common.Basic.Ears.Type4
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type4.png
- Sprite: {fileID: 21300000, guid: 3fb98216057e8a845be942d40795a3c3, type: 3}
- - Name: Type4
- Id: Common.Goblin.Ears.Type4
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Goblin/Type4.png
- Sprite: {fileID: 21300000, guid: 358df763d03a3bc4b850f73c0ed43844, type: 3}
- - Name: Type4
- Id: Common.Goblin.Eyes.Type4
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Eyes/Goblin/Type4.png
- Sprite: {fileID: 21300000, guid: eecd30d52056c304a8b6e3a6c4fa5581, type: 3}
- - Name: Type4
- Id: Common.Basic.Hair.Type4
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type4.png
- Sprite: {fileID: 21300000, guid: 251d13cd2ffa5284191b6d082597e240, type: 3}
- - Name: Type4
- Id: Common.Goblin.Hair.Type4
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Goblin/Type4.png
- Sprite: {fileID: 21300000, guid: 13a8dd73b3d704c4a8aee5b48f8fc2c7, type: 3}
- - Name: Type4
- Id: Common.Goblin.Mouth.Type4
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Goblin/Type4.png
- Sprite: {fileID: 21300000, guid: 85f0c538e02195e40b7b764f56bb4b2b, type: 3}
- - Name: Type4
- Id: Common.Common.Earrings.Type4
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type4.png
- Sprite: {fileID: 21300000, guid: e935e10736dd4dd4a9877fdede531ffc, type: 3}
- - Name: Type5
- Id: Common.Basic.Beard.Type5
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type5.png
- Sprite: {fileID: 21300000, guid: 715ebd620e129bb46b1103d1a37c911b, type: 3}
- - Name: Type5
- Id: Common.Basic.Body.Type5
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Basic/Type5.png
- Sprite: {fileID: 21300000, guid: 637ee55c5a238714092780415bf0ab00, type: 3}
- - Name: Type5
- Id: Common.Basic.Ears.Type5
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type5.png
- Sprite: {fileID: 21300000, guid: 2454e95a79056514395c6f5e3626c4f3, type: 3}
- - Name: Type5
- Id: Common.Goblin.Ears.Type5
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Goblin/Type5.png
- Sprite: {fileID: 21300000, guid: 23ab67a6d3ccd6f4385af62241d1bf2b, type: 3}
- - Name: Type5
- Id: Common.Basic.Hair.Type5
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type5.png
- Sprite: {fileID: 21300000, guid: f8c09b557b110144d981008144868eb2, type: 3}
- - Name: Type5
- Id: Common.Goblin.Hair.Type5
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Goblin/Type5.png
- Sprite: {fileID: 21300000, guid: 2a158e5a8cac3c141bfa387b5906adc6, type: 3}
- - Name: Type5
- Id: Common.Goblin.Mouth.Type5
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Goblin/Type5.png
- Sprite: {fileID: 21300000, guid: 6e8c16aef251b3045bab55beedf38ed9, type: 3}
- - Name: Type5
- Id: Common.Common.Earrings.Type5
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type5.png
- Sprite: {fileID: 21300000, guid: cc1ae5e6d02c5534aa4a0fc69213be0e, type: 3}
- - Name: Type6
- Id: Common.Basic.Beard.Type6
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type6.png
- Sprite: {fileID: 21300000, guid: 67ced17bbfa809d4c862ee9ddda70003, type: 3}
- - Name: Type6
- Id: Common.Basic.Body.Type6
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Basic/Type6.png
- Sprite: {fileID: 21300000, guid: fcf15ed53d43b76498f3d96da1281e4b, type: 3}
- - Name: Type6
- Id: Common.Basic.Ears.Type6
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type6.png
- Sprite: {fileID: 21300000, guid: 01a0276ce9998c04fba73dd62d93ce3e, type: 3}
- - Name: Type6
- Id: Common.Goblin.Ears.Type6
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Goblin/Type6.png
- Sprite: {fileID: 21300000, guid: c209dc6098f92a640a3dd6cf6cd9c452, type: 3}
- - Name: Type6
- Id: Common.Basic.Hair.Type6
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type6.png
- Sprite: {fileID: 21300000, guid: c84234fb98b1e094e9f27272a74c09e1, type: 3}
- - Name: Type6
- Id: Common.Goblin.Hair.Type6
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Goblin/Type6.png
- Sprite: {fileID: 21300000, guid: f34e13a4a4179aa4690a5610202d449d, type: 3}
- - Name: Type6
- Id: Common.Goblin.Mouth.Type6
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Goblin/Type6.png
- Sprite: {fileID: 21300000, guid: b7738d7022b90174190e560248c01c7d, type: 3}
- - Name: Type6
- Id: Common.Common.Earrings.Type6
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type6.png
- Sprite: {fileID: 21300000, guid: c97ffcb9382061a4abc9ca09e5567946, type: 3}
- - Name: Type7
- Id: Common.Basic.Beard.Type7
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type7.png
- Sprite: {fileID: 21300000, guid: 3d7d634b8551db64390598031be72f88, type: 3}
- - Name: Type7
- Id: Common.Basic.Body.Type7
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Basic/Type7.png
- Sprite: {fileID: 21300000, guid: eaf0dbe28c287c7418a938b41c80715f, type: 3}
- - Name: Type7
- Id: Common.Basic.Ears.Type7
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type7.png
- Sprite: {fileID: 21300000, guid: e81764a5fd37ef64aa4ea34801eaa24f, type: 3}
- - Name: Type7
- Id: Common.Goblin.Ears.Type7
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Goblin/Type7.png
- Sprite: {fileID: 21300000, guid: afeea5f7486317c41aee175b3742c427, type: 3}
- - Name: Type7
- Id: Common.Basic.Hair.Type7
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type7.png
- Sprite: {fileID: 21300000, guid: 032bf466bcd2e7c45aa492ed9d507096, type: 3}
- - Name: Type7
- Id: Common.Goblin.Hair.Type7
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Goblin/Type7.png
- Sprite: {fileID: 21300000, guid: 744ff1f7c9c39b340b99a67a675f2f7e, type: 3}
- - Name: Type7
- Id: Common.Goblin.Mouth.Type7
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Mouth/Goblin/Type7.png
- Sprite: {fileID: 21300000, guid: a5d19a6529fde5b428f69d08a605d542, type: 3}
- - Name: Type7
- Id: Common.Common.Earrings.Type7
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type7.png
- Sprite: {fileID: 21300000, guid: 49f9da5e8401af54b979f14a53e56ce2, type: 3}
- - Name: Type8
- Id: Common.Basic.Beard.Type8
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type8.png
- Sprite: {fileID: 21300000, guid: 81281b91ff58c004cbd92fd5e71ca286, type: 3}
- - Name: Type8
- Id: Common.Basic.Body.Type8
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Basic/Type8.png
- Sprite: {fileID: 21300000, guid: fda25b400a69ad14d952c2925a482bf5, type: 3}
- - Name: Type8
- Id: Common.Basic.Ears.Type8
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type8.png
- Sprite: {fileID: 21300000, guid: 2618d4fc599f35145a3d2529fc5c3c4f, type: 3}
- - Name: Type8
- Id: Common.Goblin.Ears.Type8
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Goblin/Type8.png
- Sprite: {fileID: 21300000, guid: cd2f602433605794f9fae97c9b7eaae0, type: 3}
- - Name: Type8
- Id: Common.Basic.Hair.Type8
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type8.png
- Sprite: {fileID: 21300000, guid: 089186b388dd6a94f895f49ebe273470, type: 3}
- - Name: Type8
- Id: Common.Goblin.Hair.Type8
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Goblin/Type8.png
- Sprite: {fileID: 21300000, guid: bc9eff8e26908d143865f481e45774fb, type: 3}
- - Name: Type8
- Id: Common.Common.Earrings.Type8
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type8.png
- Sprite: {fileID: 21300000, guid: 3143bce4bab8881459c93c0b113aa559, type: 3}
- - Name: Type9
- Id: Common.Basic.Beard.Type9
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Beard/Basic/Type9.png
- Sprite: {fileID: 21300000, guid: 2a1459c1ac2a8b74ca8dff420bfc1446, type: 3}
- - Name: Type9
- Id: Common.Basic.Body.Type9
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Body/Basic/Type9.png
- Sprite: {fileID: 21300000, guid: 8a935c8fcbf63db44be47277f0de76ae, type: 3}
- - Name: Type9
- Id: Common.Basic.Ears.Type9
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Ears/Basic/Type9.png
- Sprite: {fileID: 21300000, guid: 614f2a24f572af24ea33aec996450386, type: 3}
- - Name: Type9
- Id: Common.Basic.Hair.Type9
- Edition: Common
- Collection: Basic
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Basic/Type9.png
- Sprite: {fileID: 21300000, guid: 9a249ce5b64c79f46b71f25512ce401a, type: 3}
- - Name: Type9
- Id: Common.Goblin.Hair.Type9
- Edition: Common
- Collection: Goblin
- Path: Assets/HeroEditor4D/Common/Icons/BodyParts/Hair/Goblin/Type9.png
- Sprite: {fileID: 21300000, guid: 3808968745123fe4d9a0ba8cb6b9adda, type: 3}
- - Name: Type9
- Id: Common.Common.Earrings.Type9
- Edition: Common
- Collection: Common
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Earrings/Common/Type9.png
- Sprite: {fileID: 21300000, guid: a01dfac76e2ec844da24cc6395836168, type: 3}
- - Name: TypeA
- Id: UndeadHeroes.Skeleton.Mouth.TypeA
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Mouth/Skeleton/TypeA.png
- Sprite: {fileID: 21300000, guid: a3de2eb4337aae749a3c00a00704d3ba, type: 3}
- - Name: TypeB
- Id: UndeadHeroes.Skeleton.Mouth.TypeB
- Edition: UndeadHeroes
- Collection: Skeleton
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/BodyParts/Mouth/Skeleton/TypeB.png
- Sprite: {fileID: 21300000, guid: ecc41e0c46692244ca67fbf356bf74e0, type: 3}
- - Name: WitchCostume[ShowEars]
- Id: Common.Halloween.Armor.WitchCostume[ShowEars]
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Armor/Halloween/WitchCostume[ShowEars].png
- Sprite: {fileID: 21300000, guid: 4ea4e88a6e19eb94c9857e2ed36524ff, type: 3}
- - Name: WitchCostume[ShowEars]
- Id: Common.Halloween.Bracers.WitchCostume[ShowEars]
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Bracers/Halloween/WitchCostume[ShowEars].png
- Sprite: {fileID: 21300000, guid: 0b7fde25f26890a44b71c21032764845, type: 3}
- - Name: WitchCostume[ShowEars]
- Id: Common.Halloween.Helmet.WitchCostume[ShowEars]
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Helmet/Halloween/WitchCostume[ShowEars].png
- Sprite: {fileID: 21300000, guid: 1fc320eea084c884e8bface15392ba5f, type: 3}
- - Name: WitchCostume[ShowEars]
- Id: Common.Halloween.Leggings.WitchCostume[ShowEars]
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Leggings/Halloween/WitchCostume[ShowEars].png
- Sprite: {fileID: 21300000, guid: 7c02bcd0ff354e448a4faf8d8a709c54, type: 3}
- - Name: WitchCostume[ShowEars]
- Id: Common.Halloween.Vest.WitchCostume[ShowEars]
- Edition: Common
- Collection: Halloween
- Path: Assets/HeroEditor4D/Common/Icons/Equipment/Vest/Halloween/WitchCostume[ShowEars].png
- Sprite: {fileID: 21300000, guid: 824d43f01ce49ae4488bd8293fc549ee, type: 3}
- - Name: WoodenHammer
- Id: UndeadHeroes.Undead.MeleeWeapon1H.WoodenHammer
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/MeleeWeapon1H/Undead/Hammer/WoodenHammer.png
- Sprite: {fileID: 21300000, guid: 9c9eaee18ed188d4eabe30c17b9e2009, type: 3}
- - Name: Worm
- Id: UndeadHeroes.Undead.Earrings.Worm
- Edition: UndeadHeroes
- Collection: Undead
- Path: Assets/HeroEditor4D/UndeadHeroes/Icons/Equipment/Earrings/Undead/Worm.png
- Sprite: {fileID: 21300000, guid: 343d9a0bd2d7f3e43a00d43b1cf60642, type: 3}
|