1 Star 0 Fork 21

strive/gameserver

forked from aping.fo/gameserver 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
FashionCfg.xml 60.11 KB
一键复制 编辑 原始数据 按行查看 历史
aping.fo 提交于 2018-01-25 10:16 . open source
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<config>
<id>111011</id>
<desc>战士默认头部</desc>
<name>默认时装</name>
<vocation>1</vocation>
<icon></icon>
<atlas></atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#373B4C</outlineColor>
<path>Assets/Actor/Role/11101/11101_head.prefab</path>
<path2></path2>
<hp>0</hp>
<attack>0</attack>
<defense>0</defense>
<crit>0</crit>
<symptom>0</symptom>
<fu>0</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>1</order>
</config>
<config>
<id>111012</id>
<desc>战士默认身体</desc>
<name>默认时装</name>
<vocation>1</vocation>
<icon></icon>
<atlas></atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#521313</outlineColor>
<path>Assets/Actor/Role/11101/11101_body.prefab</path>
<path2></path2>
<hp>0</hp>
<attack>0</attack>
<defense>0</defense>
<crit>0</crit>
<symptom>0</symptom>
<fu>0</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>2</order>
</config>
<config>
<id>111013</id>
<desc>战士默认武器</desc>
<name>默认时装</name>
<vocation>1</vocation>
<icon></icon>
<atlas></atlas>
<type>3</type>
<bindPos></bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#42373d</outlineColor>
<path>Assets/Actor/Role/11101/11101_equip.prefab</path>
<path2></path2>
<hp>0</hp>
<attack>0</attack>
<defense>0</defense>
<crit>0</crit>
<symptom>0</symptom>
<fu>0</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>3</order>
</config>
<config>
<id>111021</id>
<desc>瞬影三绝剑似风,幻剑之术破时空。</desc>
<name>狂战士</name>
<vocation>1</vocation>
<icon>1021</icon>
<atlas>Fashion_1</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#5F4610</outlineColor>
<path>Assets/Actor/Role/11102/11102_head.prefab</path>
<path2></path2>
<hp>1195</hp>
<attack>50</attack>
<defense>35</defense>
<crit>13</crit>
<symptom>13</symptom>
<fu>28</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>3600</timeLimit>
<costPrice>[102,103]</costPrice>
<duplicateReturn>100</duplicateReturn>
<order>4</order>
</config>
<config>
<id>111022</id>
<desc>瞬影三绝剑似风,幻剑之术破时空。</desc>
<name>狂战士</name>
<vocation>1</vocation>
<icon>1022</icon>
<atlas>Fashion_1</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#523011</outlineColor>
<path>Assets/Actor/Role/11102/11102_body.prefab</path>
<path2></path2>
<hp>1195</hp>
<attack>50</attack>
<defense>35</defense>
<crit>13</crit>
<symptom>13</symptom>
<fu>28</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>3600</timeLimit>
<costPrice>[102,104]</costPrice>
<duplicateReturn>100</duplicateReturn>
<order>5</order>
</config>
<config>
<id>111023</id>
<desc>瞬影三绝剑似风,幻剑之术破时空。</desc>
<name>狂战士</name>
<vocation>1</vocation>
<icon>1023</icon>
<atlas>Fashion_1</atlas>
<type>3</type>
<bindPos></bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1110023</effectId>
<effect2Id></effect2Id>
<outlineColor>#353041</outlineColor>
<path>Assets/Actor/Role/11102/11102_equip.prefab</path>
<path2></path2>
<hp>1195</hp>
<attack>50</attack>
<defense>35</defense>
<crit>13</crit>
<symptom>13</symptom>
<fu>28</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>3600</timeLimit>
<costPrice>[102,105]</costPrice>
<duplicateReturn>100</duplicateReturn>
<order>6</order>
</config>
<config>
<id>111031</id>
<desc>战略若太复杂,必然失败。</desc>
<name>最后的武士</name>
<vocation>1</vocation>
<icon>1031</icon>
<atlas>Fashion_1</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#2C292B</outlineColor>
<path>Assets/Actor/Role/11103/11103_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>7</order>
</config>
<config>
<id>111032</id>
<desc>战略若太复杂,必然失败。</desc>
<name>最后的武士</name>
<vocation>1</vocation>
<icon>1032</icon>
<atlas>Fashion_1</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#152229</outlineColor>
<path>Assets/Actor/Role/11103/11103_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>8</order>
</config>
<config>
<id>111033</id>
<desc>战略若太复杂,必然失败。</desc>
<name>最后的武士</name>
<vocation>1</vocation>
<icon>1033</icon>
<atlas>Fashion_1</atlas>
<type>3</type>
<bindPos></bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1110033</effectId>
<effect2Id></effect2Id>
<outlineColor>#413F45</outlineColor>
<path>Assets/Actor/Role/11103/11103_equip.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>9</order>
</config>
<config>
<id>111041</id>
<desc>正义的审判从不迟到!</desc>
<name>法老之鹰</name>
<vocation>1</vocation>
<icon>1041</icon>
<atlas>Fashion_1</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#583016</outlineColor>
<path>Assets/Actor/Role/11104/11104_head.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>10</order>
</config>
<config>
<id>111042</id>
<desc>正义的审判从不迟到!</desc>
<name>法老之鹰</name>
<vocation>1</vocation>
<icon>1042</icon>
<atlas>Fashion_1</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#431F12</outlineColor>
<path>Assets/Actor/Role/11104/11104_body.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>11</order>
</config>
<config>
<id>111043</id>
<desc>正义的审判从不迟到!</desc>
<name>法老之鹰</name>
<vocation>1</vocation>
<icon>1043</icon>
<atlas>Fashion_1</atlas>
<type>3</type>
<bindPos></bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1110043</effectId>
<effect2Id></effect2Id>
<outlineColor>#341E0D</outlineColor>
<path>Assets/Actor/Role/11104/11104_equip.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>12</order>
</config>
<config>
<id>111051</id>
<desc>我会摧毁你的灵魂!</desc>
<name>阿努比斯王朝</name>
<vocation>1</vocation>
<icon>1051</icon>
<atlas>Fashion_1</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#583016</outlineColor>
<path>Assets/Actor/Role/11105/11105_head.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>13</order>
</config>
<config>
<id>111052</id>
<desc>我会摧毁你的灵魂!</desc>
<name>阿努比斯王朝</name>
<vocation>1</vocation>
<icon>1052</icon>
<atlas>Fashion_1</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#431F12</outlineColor>
<path>Assets/Actor/Role/11105/11105_body.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>14</order>
</config>
<config>
<id>111053</id>
<desc>我会摧毁你的灵魂!</desc>
<name>阿努比斯王朝</name>
<vocation>1</vocation>
<icon>1053</icon>
<atlas>Fashion_1</atlas>
<type>3</type>
<bindPos></bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1110053</effectId>
<effect2Id></effect2Id>
<outlineColor>#341E0D</outlineColor>
<path>Assets/Actor/Role/11105/11105_equip.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>15</order>
</config>
<config>
<id>111061</id>
<desc>走马狂歌,仗剑行天下。</desc>
<name>狂歌行</name>
<vocation>1</vocation>
<icon>1061</icon>
<atlas>Fashion_1</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#583016</outlineColor>
<path>Assets/Actor/Role/11106/11106_head.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>16</order>
</config>
<config>
<id>111062</id>
<desc>走马狂歌,仗剑行天下。</desc>
<name>狂歌行</name>
<vocation>1</vocation>
<icon>1062</icon>
<atlas>Fashion_1</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#431F12</outlineColor>
<path>Assets/Actor/Role/11106/11106_body.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>17</order>
</config>
<config>
<id>111063</id>
<desc>走马狂歌,仗剑行天下。</desc>
<name>狂歌行</name>
<vocation>1</vocation>
<icon>1063</icon>
<atlas>Fashion_1</atlas>
<type>3</type>
<bindPos></bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1110063</effectId>
<effect2Id></effect2Id>
<outlineColor>#341E0D</outlineColor>
<path>Assets/Actor/Role/11106/11106_equip.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>18</order>
</config>
<config>
<id>111071</id>
<desc>消灾解厄,接福接寿的符纸我这都有,你要不要来一张?</desc>
<name>斗笠道人</name>
<vocation>1</vocation>
<icon>1071</icon>
<atlas>Fashion_1</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#2C292B</outlineColor>
<path>Assets/Actor/Role/11107/11107_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>19</order>
</config>
<config>
<id>111072</id>
<desc>消灾解厄,接福接寿的符纸我这都有,你要不要来一张?</desc>
<name>斗笠道人</name>
<vocation>1</vocation>
<icon>1072</icon>
<atlas>Fashion_1</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#152229</outlineColor>
<path>Assets/Actor/Role/11107/11107_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>20</order>
</config>
<config>
<id>111073</id>
<desc>消灾解厄,接福接寿的符纸我这都有,你要不要来一张?</desc>
<name>斗笠道人</name>
<vocation>1</vocation>
<icon>1073</icon>
<atlas>Fashion_1</atlas>
<type>3</type>
<bindPos></bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1110073</effectId>
<effect2Id></effect2Id>
<outlineColor>#413F45</outlineColor>
<path>Assets/Actor/Role/11107/11107_equip.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>21</order>
</config>
<config>
<id>111081</id>
<desc>我喵(骚)起来连自己都害怕。</desc>
<name>哥特猫先森</name>
<vocation>1</vocation>
<icon>1081</icon>
<atlas>Fashion_1</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#2C292B</outlineColor>
<path>Assets/Actor/Role/11108/11108_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>22</order>
</config>
<config>
<id>111082</id>
<desc>我喵(骚)起来连自己都害怕。</desc>
<name>哥特猫先森</name>
<vocation>1</vocation>
<icon>1082</icon>
<atlas>Fashion_1</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#152229</outlineColor>
<path>Assets/Actor/Role/11108/11108_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>23</order>
</config>
<config>
<id>111083</id>
<desc>我喵(骚)起来连自己都害怕。</desc>
<name>哥特猫先森</name>
<vocation>1</vocation>
<icon>1083</icon>
<atlas>Fashion_1</atlas>
<type>3</type>
<bindPos></bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1110083</effectId>
<effect2Id></effect2Id>
<outlineColor>#413F45</outlineColor>
<path>Assets/Actor/Role/11108/11108_equip.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>24</order>
</config>
<config>
<id>121011</id>
<desc>刺客默认头部</desc>
<name>默认时装</name>
<vocation>2</vocation>
<icon></icon>
<atlas></atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#7F5A38</outlineColor>
<path>Assets/Actor/Role/12101/12101_head.prefab</path>
<path2></path2>
<hp>0</hp>
<attack>0</attack>
<defense>0</defense>
<crit>0</crit>
<symptom>0</symptom>
<fu>0</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>25</order>
</config>
<config>
<id>121012</id>
<desc>刺客默认身体</desc>
<name>默认时装</name>
<vocation>2</vocation>
<icon></icon>
<atlas></atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#424358</outlineColor>
<path>Assets/Actor/Role/12101/12101_body.prefab</path>
<path2></path2>
<hp>0</hp>
<attack>0</attack>
<defense>0</defense>
<crit>0</crit>
<symptom>0</symptom>
<fu>0</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>26</order>
</config>
<config>
<id>121013</id>
<desc>刺客默认武器</desc>
<name>默认时装</name>
<vocation>2</vocation>
<icon></icon>
<atlas></atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>weapon01.prefab</modelName>
<model2Name>weapon02.prefab</model2Name>
<effectId>1210013</effectId>
<effect2Id>1210014</effect2Id>
<outlineColor>#494B5B</outlineColor>
<path>Assets/Actor/Role/12101/12101_weapon01.prefab</path>
<path2>Assets/Actor/Role/12101/12101_weapon02.prefab</path2>
<hp>0</hp>
<attack>0</attack>
<defense>0</defense>
<crit>0</crit>
<symptom>0</symptom>
<fu>0</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>27</order>
</config>
<config>
<id>121021</id>
<desc>“问世间情为何物,直教生死相许。”</desc>
<name>赤练仙子</name>
<vocation>2</vocation>
<icon>2021</icon>
<atlas>Fashion_2</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#816A4E</outlineColor>
<path>Assets/Actor/Role/12102/12102_head.prefab</path>
<path2></path2>
<hp>1195</hp>
<attack>50</attack>
<defense>35</defense>
<crit>13</crit>
<symptom>13</symptom>
<fu>28</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>3600</timeLimit>
<costPrice>[102,103]</costPrice>
<duplicateReturn>100</duplicateReturn>
<order>28</order>
</config>
<config>
<id>121022</id>
<desc>“问世间情为何物,直教生死相许。”</desc>
<name>赤练仙子</name>
<vocation>2</vocation>
<icon>2022</icon>
<atlas>Fashion_2</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#293561</outlineColor>
<path>Assets/Actor/Role/12102/12102_body.prefab</path>
<path2></path2>
<hp>1195</hp>
<attack>50</attack>
<defense>35</defense>
<crit>13</crit>
<symptom>13</symptom>
<fu>28</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>3600</timeLimit>
<costPrice>[102,104]</costPrice>
<duplicateReturn>100</duplicateReturn>
<order>29</order>
</config>
<config>
<id>121023</id>
<desc>“问世间情为何物,直教生死相许。”</desc>
<name>赤练仙子</name>
<vocation>2</vocation>
<icon>2023</icon>
<atlas>Fashion_2</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>weapon01.prefab</modelName>
<model2Name>weapon02.prefab</model2Name>
<effectId>1210023</effectId>
<effect2Id>1210024</effect2Id>
<outlineColor>#382C32</outlineColor>
<path>Assets/Actor/Role/12102/12102_weapon01.prefab</path>
<path2>Assets/Actor/Role/12102/12102_weapon02.prefab</path2>
<hp>1195</hp>
<attack>50</attack>
<defense>35</defense>
<crit>13</crit>
<symptom>13</symptom>
<fu>28</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>3600</timeLimit>
<costPrice>[102,105]</costPrice>
<duplicateReturn>100</duplicateReturn>
<order>30</order>
</config>
<config>
<id>121031</id>
<desc>那些恶贯满盈的人,只有死亡才能让他从名单上抹掉。</desc>
<name>鬼面女忍</name>
<vocation>2</vocation>
<icon>2031</icon>
<atlas>Fashion_2</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#836148</outlineColor>
<path>Assets/Actor/Role/12103/12103_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>31</order>
</config>
<config>
<id>121032</id>
<desc>那些恶贯满盈的人,只有死亡才能让他从名单上抹掉。</desc>
<name>鬼面女忍</name>
<vocation>2</vocation>
<icon>2032</icon>
<atlas>Fashion_2</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#30303D</outlineColor>
<path>Assets/Actor/Role/12103/12103_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>32</order>
</config>
<config>
<id>121033</id>
<desc>那些恶贯满盈的人,只有死亡才能让他从名单上抹掉。</desc>
<name>鬼面女忍</name>
<vocation>2</vocation>
<icon>2033</icon>
<atlas>Fashion_2</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>weapon01.prefab</modelName>
<model2Name>weapon02.prefab</model2Name>
<effectId>1210033</effectId>
<effect2Id>1210034</effect2Id>
<outlineColor>#413139</outlineColor>
<path>Assets/Actor/Role/12103/12103_weapon01.prefab</path>
<path2>Assets/Actor/Role/12103/12103_weapon02.prefab</path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>33</order>
</config>
<config>
<id>121041</id>
<desc>一舞一幻铃,可想与我共舞?</desc>
<name>沙漠舞姬</name>
<vocation>2</vocation>
<icon>2041</icon>
<atlas>Fashion_2</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#433127</outlineColor>
<path>Assets/Actor/Role/12104/12104_head.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>34</order>
</config>
<config>
<id>121042</id>
<desc>一舞一幻铃,可想与我共舞?</desc>
<name>沙漠舞姬</name>
<vocation>2</vocation>
<icon>2042</icon>
<atlas>Fashion_2</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#5B3226</outlineColor>
<path>Assets/Actor/Role/12104/12104_body.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>35</order>
</config>
<config>
<id>121043</id>
<desc>一舞一幻铃,可想与我共舞?</desc>
<name>沙漠舞姬</name>
<vocation>2</vocation>
<icon>2043</icon>
<atlas>Fashion_2</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>weapon01.prefab</modelName>
<model2Name>weapon02.prefab</model2Name>
<effectId>1210043</effectId>
<effect2Id>1210044</effect2Id>
<outlineColor>#271F3A</outlineColor>
<path>Assets/Actor/Role/12104/12104_weapon01.prefab</path>
<path2>Assets/Actor/Role/12104/12104_weapon02.prefab</path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>36</order>
</config>
<config>
<id>121051</id>
<desc>埃及魅影,最妖娆,最强权。</desc>
<name>埃及艳后</name>
<vocation>2</vocation>
<icon>2051</icon>
<atlas>Fashion_2</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#433127</outlineColor>
<path>Assets/Actor/Role/12105/12105_head.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>37</order>
</config>
<config>
<id>121052</id>
<desc>埃及魅影,最妖娆,最强权。</desc>
<name>埃及艳后</name>
<vocation>2</vocation>
<icon>2052</icon>
<atlas>Fashion_2</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#5B3226</outlineColor>
<path>Assets/Actor/Role/12105/12105_body.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>38</order>
</config>
<config>
<id>121053</id>
<desc>埃及魅影,最妖娆,最强权。</desc>
<name>埃及艳后</name>
<vocation>2</vocation>
<icon>2053</icon>
<atlas>Fashion_2</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>weapon01.prefab</modelName>
<model2Name>weapon02.prefab</model2Name>
<effectId>1210053</effectId>
<effect2Id>1210054</effect2Id>
<outlineColor>#271F3A</outlineColor>
<path>Assets/Actor/Role/12105/12105_weapon01.prefab</path>
<path2>Assets/Actor/Role/12105/12105_weapon02.prefab</path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>39</order>
</config>
<config>
<id>121061</id>
<desc>蝶舞乱相迎,仙歌宛转听。</desc>
<name>蝶舞妃姬</name>
<vocation>2</vocation>
<icon>2061</icon>
<atlas>Fashion_2</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#433127</outlineColor>
<path>Assets/Actor/Role/12106/12106_head.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>40</order>
</config>
<config>
<id>121062</id>
<desc>蝶舞乱相迎,仙歌宛转听。</desc>
<name>蝶舞妃姬</name>
<vocation>2</vocation>
<icon>2062</icon>
<atlas>Fashion_2</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#5B3226</outlineColor>
<path>Assets/Actor/Role/12106/12106_body.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>41</order>
</config>
<config>
<id>121063</id>
<desc>蝶舞乱相迎,仙歌宛转听。</desc>
<name>蝶舞妃姬</name>
<vocation>2</vocation>
<icon>2063</icon>
<atlas>Fashion_2</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>weapon01.prefab</modelName>
<model2Name>weapon02.prefab</model2Name>
<effectId>1210063</effectId>
<effect2Id>1210064</effect2Id>
<outlineColor>#271F3A</outlineColor>
<path>Assets/Actor/Role/12106/12106_weapon01.prefab</path>
<path2>Assets/Actor/Role/12106/12106_weapon02.prefab</path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>42</order>
</config>
<config>
<id>121071</id>
<desc>静如影,轻如羽,迅如蛇。</desc>
<name>影舞使者</name>
<vocation>2</vocation>
<icon>2071</icon>
<atlas>Fashion_2</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#836148</outlineColor>
<path>Assets/Actor/Role/12107/12107_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>43</order>
</config>
<config>
<id>121072</id>
<desc>静如影,轻如羽,迅如蛇。</desc>
<name>影舞使者</name>
<vocation>2</vocation>
<icon>2072</icon>
<atlas>Fashion_2</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#30303D</outlineColor>
<path>Assets/Actor/Role/12107/12107_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>44</order>
</config>
<config>
<id>121073</id>
<desc>静如影,轻如羽,迅如蛇。</desc>
<name>影舞使者</name>
<vocation>2</vocation>
<icon>2073</icon>
<atlas>Fashion_2</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>weapon01.prefab</modelName>
<model2Name>weapon02.prefab</model2Name>
<effectId>1210073</effectId>
<effect2Id>1210074</effect2Id>
<outlineColor>#413139</outlineColor>
<path>Assets/Actor/Role/12107/12107_weapon01.prefab</path>
<path2>Assets/Actor/Role/12107/12107_weapon02.prefab</path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>45</order>
</config>
<config>
<id>121081</id>
<desc>暗夜,是完美的掩护!喵~</desc>
<name>暗夜猫女</name>
<vocation>2</vocation>
<icon>2081</icon>
<atlas>Fashion_2</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#836148</outlineColor>
<path>Assets/Actor/Role/12108/12108_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>46</order>
</config>
<config>
<id>121082</id>
<desc>暗夜,是完美的掩护!喵~</desc>
<name>暗夜猫女</name>
<vocation>2</vocation>
<icon>2082</icon>
<atlas>Fashion_2</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#30303D</outlineColor>
<path>Assets/Actor/Role/12108/12108_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>47</order>
</config>
<config>
<id>121083</id>
<desc>暗夜,是完美的掩护!喵~</desc>
<name>暗夜猫女</name>
<vocation>2</vocation>
<icon>2083</icon>
<atlas>Fashion_2</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>weapon01.prefab</modelName>
<model2Name>weapon02.prefab</model2Name>
<effectId>1210083</effectId>
<effect2Id>1210084</effect2Id>
<outlineColor>#413139</outlineColor>
<path>Assets/Actor/Role/12108/12108_weapon01.prefab</path>
<path2>Assets/Actor/Role/12108/12108_weapon02.prefab</path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>48</order>
</config>
<config>
<id>131011</id>
<desc>法师默认头部</desc>
<name>默认时装</name>
<vocation>3</vocation>
<icon></icon>
<atlas></atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#584B42</outlineColor>
<path>Assets/Actor/Role/13101/13101_head.prefab</path>
<path2></path2>
<hp>0</hp>
<attack>0</attack>
<defense>0</defense>
<crit>0</crit>
<symptom>0</symptom>
<fu>0</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>49</order>
</config>
<config>
<id>131012</id>
<desc>法师默认身体</desc>
<name>默认时装</name>
<vocation>3</vocation>
<icon></icon>
<atlas></atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#2E324A</outlineColor>
<path>Assets/Actor/Role/13101/13101_body.prefab</path>
<path2></path2>
<hp>0</hp>
<attack>0</attack>
<defense>0</defense>
<crit>0</crit>
<symptom>0</symptom>
<fu>0</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>50</order>
</config>
<config>
<id>131013</id>
<desc>法师默认武器</desc>
<name>默认时装</name>
<vocation>3</vocation>
<icon></icon>
<atlas></atlas>
<type>3</type>
<bindPos></bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1310013</effectId>
<effect2Id></effect2Id>
<outlineColor>#1F1D1E</outlineColor>
<path>Assets/Actor/Role/13101/13101_equip.prefab</path>
<path2></path2>
<hp>0</hp>
<attack>0</attack>
<defense>0</defense>
<crit>0</crit>
<symptom>0</symptom>
<fu>0</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>51</order>
</config>
<config>
<id>131021</id>
<desc>大师兄,等我练成了这“摄魂十九式”,就不会受你欺负了。</desc>
<name>刁蛮小师妹</name>
<vocation>3</vocation>
<icon>3021</icon>
<atlas>Fashion_3</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#383128</outlineColor>
<path>Assets/Actor/Role/13102/13102_head.prefab</path>
<path2></path2>
<hp>1195</hp>
<attack>50</attack>
<defense>35</defense>
<crit>13</crit>
<symptom>13</symptom>
<fu>28</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>3600</timeLimit>
<costPrice>[102,103]</costPrice>
<duplicateReturn>100</duplicateReturn>
<order>52</order>
</config>
<config>
<id>131022</id>
<desc>大师兄,等我练成了这“摄魂十九式”,就不会受你欺负了。</desc>
<name>刁蛮小师妹</name>
<vocation>3</vocation>
<icon>3022</icon>
<atlas>Fashion_3</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#492F0F</outlineColor>
<path>Assets/Actor/Role/13102/13102_body.prefab</path>
<path2></path2>
<hp>1195</hp>
<attack>50</attack>
<defense>35</defense>
<crit>13</crit>
<symptom>13</symptom>
<fu>28</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>3600</timeLimit>
<costPrice>[102,104]</costPrice>
<duplicateReturn>100</duplicateReturn>
<order>53</order>
</config>
<config>
<id>131023</id>
<desc>大师兄,等我练成了这“摄魂十九式”,就不会受你欺负了。</desc>
<name>刁蛮小师妹</name>
<vocation>3</vocation>
<icon>3023</icon>
<atlas>Fashion_3</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1310023</effectId>
<effect2Id></effect2Id>
<outlineColor>#2D3438</outlineColor>
<path>Assets/Actor/Role/13102/13102_equip.prefab</path>
<path2></path2>
<hp>1195</hp>
<attack>50</attack>
<defense>35</defense>
<crit>13</crit>
<symptom>13</symptom>
<fu>28</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>3600</timeLimit>
<costPrice>[102,105]</costPrice>
<duplicateReturn>100</duplicateReturn>
<order>54</order>
</config>
<config>
<id>131031</id>
<desc>完美的嫁衣,血色的浪漫。</desc>
<name>血色花嫁</name>
<vocation>3</vocation>
<icon>3031</icon>
<atlas>Fashion_3</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#492214</outlineColor>
<path>Assets/Actor/Role/13103/13103_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>55</order>
</config>
<config>
<id>131032</id>
<desc>完美的嫁衣,血色的浪漫。</desc>
<name>血色花嫁</name>
<vocation>3</vocation>
<icon>3032</icon>
<atlas>Fashion_3</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#563232</outlineColor>
<path>Assets/Actor/Role/13103/13103_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>56</order>
</config>
<config>
<id>131033</id>
<desc>完美的嫁衣,血色的浪漫。</desc>
<name>血色花嫁</name>
<vocation>3</vocation>
<icon>3033</icon>
<atlas>Fashion_3</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1310033</effectId>
<effect2Id></effect2Id>
<outlineColor>#472A2C</outlineColor>
<path>Assets/Actor/Role/13103/13103_equip.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>57</order>
</config>
<config>
<id>131041</id>
<desc>神权至上!</desc>
<name>沙漠公主</name>
<vocation>3</vocation>
<icon>3041</icon>
<atlas>Fashion_3</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#502718</outlineColor>
<path>Assets/Actor/Role/13104/13104_head.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>58</order>
</config>
<config>
<id>131042</id>
<desc>神权至上!</desc>
<name>沙漠公主</name>
<vocation>3</vocation>
<icon>3042</icon>
<atlas>Fashion_3</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#542D22</outlineColor>
<path>Assets/Actor/Role/13104/13104_body.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>59</order>
</config>
<config>
<id>131043</id>
<desc>神权至上!</desc>
<name>沙漠公主</name>
<vocation>3</vocation>
<icon>3043</icon>
<atlas>Fashion_3</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1310043</effectId>
<effect2Id></effect2Id>
<outlineColor>#472313</outlineColor>
<path>Assets/Actor/Role/13104/13104_equip.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>60</order>
</config>
<config>
<id>131051</id>
<desc>为了阿蒙的荣耀,上埃及必定统治下埃及!</desc>
<name>努比亚少女</name>
<vocation>3</vocation>
<icon>3051</icon>
<atlas>Fashion_3</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#492214</outlineColor>
<path>Assets/Actor/Role/13105/13105_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>61</order>
</config>
<config>
<id>131052</id>
<desc>为了阿蒙的荣耀,上埃及必定统治下埃及!</desc>
<name>努比亚少女</name>
<vocation>3</vocation>
<icon>3052</icon>
<atlas>Fashion_3</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#563232</outlineColor>
<path>Assets/Actor/Role/13105/13105_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>62</order>
</config>
<config>
<id>131053</id>
<desc>为了阿蒙的荣耀,上埃及必定统治下埃及!</desc>
<name>努比亚少女</name>
<vocation>3</vocation>
<icon>3053</icon>
<atlas>Fashion_3</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1310053</effectId>
<effect2Id></effect2Id>
<outlineColor>#472A2C</outlineColor>
<path>Assets/Actor/Role/13105/13105_equip.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>63</order>
</config>
<config>
<id>131061</id>
<desc>吃我一招蝶舞纷飞波!</desc>
<name>花仙子</name>
<vocation>3</vocation>
<icon>3061</icon>
<atlas>Fashion_3</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#492214</outlineColor>
<path>Assets/Actor/Role/13106/13106_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>64</order>
</config>
<config>
<id>131062</id>
<desc>吃我一招蝶舞纷飞波!</desc>
<name>花仙子</name>
<vocation>3</vocation>
<icon>3062</icon>
<atlas>Fashion_3</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#563232</outlineColor>
<path>Assets/Actor/Role/13106/13106_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>65</order>
</config>
<config>
<id>131063</id>
<desc>吃我一招蝶舞纷飞波!</desc>
<name>花仙子</name>
<vocation>3</vocation>
<icon>3063</icon>
<atlas>Fashion_3</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1310063</effectId>
<effect2Id></effect2Id>
<outlineColor>#472A2C</outlineColor>
<path>Assets/Actor/Role/13106/13106_equip.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>66</order>
</config>
<config>
<id>131071</id>
<desc>和风日丽,等待下一个夏日祭到来吧。</desc>
<name>东瀛少女</name>
<vocation>3</vocation>
<icon>3071</icon>
<atlas>Fashion_3</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#492214</outlineColor>
<path>Assets/Actor/Role/13107/13107_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>67</order>
</config>
<config>
<id>131072</id>
<desc>和风日丽,等待下一个夏日祭到来吧。</desc>
<name>东瀛少女</name>
<vocation>3</vocation>
<icon>3072</icon>
<atlas>Fashion_3</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#563232</outlineColor>
<path>Assets/Actor/Role/13107/13107_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>68</order>
</config>
<config>
<id>131073</id>
<desc>和风日丽,等待下一个夏日祭到来吧。</desc>
<name>东瀛少女</name>
<vocation>3</vocation>
<icon>3073</icon>
<atlas>Fashion_3</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1310073</effectId>
<effect2Id></effect2Id>
<outlineColor>#472A2C</outlineColor>
<path>Assets/Actor/Role/13107/13107_equip.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>69</order>
</config>
<config>
<id>131081</id>
<desc>敢抢走我的胡萝卜,告诉你家长哟~</desc>
<name>乖萌兔女</name>
<vocation>3</vocation>
<icon>3081</icon>
<atlas>Fashion_3</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#502718</outlineColor>
<path>Assets/Actor/Role/13108/13108_head.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>70</order>
</config>
<config>
<id>131082</id>
<desc>敢抢走我的胡萝卜,告诉你家长哟~</desc>
<name>乖萌兔女</name>
<vocation>3</vocation>
<icon>3082</icon>
<atlas>Fashion_3</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#542D22</outlineColor>
<path>Assets/Actor/Role/13108/13108_body.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>71</order>
</config>
<config>
<id>131083</id>
<desc>敢抢走我的胡萝卜,告诉你家长哟~</desc>
<name>乖萌兔女</name>
<vocation>3</vocation>
<icon>3083</icon>
<atlas>Fashion_3</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1310083</effectId>
<effect2Id></effect2Id>
<outlineColor>#472313</outlineColor>
<path>Assets/Actor/Role/13108/13108_equip.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>72</order>
</config>
<config>
<id>131091</id>
<desc>魔法,炸裂吧!</desc>
<name>精灵笔记</name>
<vocation>3</vocation>
<icon>3091</icon>
<atlas>Fashion_3</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#492214</outlineColor>
<path>Assets/Actor/Role/13109/13109_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>73</order>
</config>
<config>
<id>131092</id>
<desc>魔法,炸裂吧!</desc>
<name>精灵笔记</name>
<vocation>3</vocation>
<icon>3092</icon>
<atlas>Fashion_3</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#563232</outlineColor>
<path>Assets/Actor/Role/13109/13109_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>74</order>
</config>
<config>
<id>131093</id>
<desc>魔法,炸裂吧!</desc>
<name>精灵笔记</name>
<vocation>3</vocation>
<icon>3093</icon>
<atlas>Fashion_3</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1310093</effectId>
<effect2Id></effect2Id>
<outlineColor>#472A2C</outlineColor>
<path>Assets/Actor/Role/13109/13109_equip.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>75</order>
</config>
<config>
<id>131101</id>
<desc>你一点都不可爱,猫咪女王,咬他。</desc>
<name>动感喵喵</name>
<vocation>3</vocation>
<icon>3101</icon>
<atlas>Fashion_3</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#492214</outlineColor>
<path>Assets/Actor/Role/13110/13110_head.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>76</order>
</config>
<config>
<id>131102</id>
<desc>你一点都不可爱,猫咪女王,咬他。</desc>
<name>动感喵喵</name>
<vocation>3</vocation>
<icon>3102</icon>
<atlas>Fashion_3</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#563232</outlineColor>
<path>Assets/Actor/Role/13110/13110_body.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>77</order>
</config>
<config>
<id>131103</id>
<desc>你一点都不可爱,猫咪女王,咬他。</desc>
<name>动感喵喵</name>
<vocation>3</vocation>
<icon>3103</icon>
<atlas>Fashion_3</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1310103</effectId>
<effect2Id></effect2Id>
<outlineColor>#472A2C</outlineColor>
<path>Assets/Actor/Role/13110/13110_equip.prefab</path>
<path2></path2>
<hp>1593</hp>
<attack>67</attack>
<defense>47</defense>
<crit>17</crit>
<symptom>17</symptom>
<fu>37</fu>
<limitType>0</limitType>
<limitParams></limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>78</order>
</config>
<config>
<id>131111</id>
<desc>那个敌人,好像值得一战!</desc>
<name>暗地魔女</name>
<vocation>3</vocation>
<icon>3111</icon>
<atlas>Fashion_3</atlas>
<type>1</type>
<bindPos></bindPos>
<modelName>head.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#502718</outlineColor>
<path>Assets/Actor/Role/13111/13111_head.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>79</order>
</config>
<config>
<id>131112</id>
<desc>那个敌人,好像值得一战!</desc>
<name>暗地魔女</name>
<vocation>3</vocation>
<icon>3112</icon>
<atlas>Fashion_3</atlas>
<type>2</type>
<bindPos></bindPos>
<modelName>body.prefab</modelName>
<model2Name></model2Name>
<effectId></effectId>
<effect2Id></effect2Id>
<outlineColor>#542D22</outlineColor>
<path>Assets/Actor/Role/13111/13111_body.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>80</order>
</config>
<config>
<id>131113</id>
<desc>那个敌人,好像值得一战!</desc>
<name>暗地魔女</name>
<vocation>3</vocation>
<icon>3113</icon>
<atlas>Fashion_3</atlas>
<type>3</type>
<bindPos>equip</bindPos>
<modelName>equip.prefab</modelName>
<model2Name></model2Name>
<effectId>1310113</effectId>
<effect2Id></effect2Id>
<outlineColor>#472313</outlineColor>
<path>Assets/Actor/Role/13111/13111_equip.prefab</path>
<path2></path2>
<hp>1992</hp>
<attack>83</attack>
<defense>58</defense>
<crit>21</crit>
<symptom>21</symptom>
<fu>46</fu>
<limitType>1</limitType>
<limitParams>[3]</limitParams>
<price>[102,450]</price>
<timeLimit>0</timeLimit>
<costPrice></costPrice>
<duplicateReturn>100</duplicateReturn>
<order>81</order>
</config>
</root>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/striveeee/gameserver.git
git@gitee.com:striveeee/gameserver.git
striveeee
gameserver
gameserver
master

搜索帮助