EquipmentUnique.xml 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034
  1. <?xml version="1.0"?>
  2. <?mso-application progid="Excel.Sheet"?>
  3. <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
  4. xmlns:o="urn:schemas-microsoft-com:office:office"
  5. xmlns:x="urn:schemas-microsoft-com:office:excel"
  6. xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
  7. xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
  8. xmlns:html="http://www.w3.org/TR/REC-html40">
  9. <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
  10. <Revision>1</Revision>
  11. <Created>2009-05-26T02:18:00Z</Created>
  12. <Company>csz</Company>
  13. <Version>15.00</Version>
  14. </DocumentProperties>
  15. <CustomDocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
  16. <KSOProductBuildVer dt:dt="string">2052-11.1.0.8888</KSOProductBuildVer>
  17. </CustomDocumentProperties>
  18. <OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
  19. <AllowPNG/>
  20. </OfficeDocumentSettings>
  21. <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
  22. <TabRatio>801</TabRatio>
  23. <ProtectStructure>False</ProtectStructure>
  24. <ProtectWindows>False</ProtectWindows>
  25. </ExcelWorkbook>
  26. <Styles>
  27. <Style ss:ID="Default" ss:Name="Normal">
  28. <Alignment ss:Vertical="Center"/>
  29. <Borders/>
  30. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="12"/>
  31. <Interior/>
  32. <NumberFormat/>
  33. <Protection/>
  34. </Style>
  35. <Style ss:ID="s65">
  36. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="12" ss:Bold="1"/>
  37. </Style>
  38. <Style ss:ID="s66">
  39. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="12"/>
  40. </Style>
  41. <Style ss:ID="s67">
  42. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  43. <Borders/>
  44. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  45. <Interior ss:Color="#9BC2E6" ss:Pattern="Solid"/>
  46. </Style>
  47. <Style ss:ID="s68">
  48. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  49. <Borders/>
  50. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11"/>
  51. <Interior/>
  52. <NumberFormat ss:Format="@"/>
  53. </Style>
  54. <Style ss:ID="s69">
  55. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  56. <Borders/>
  57. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11"/>
  58. <Interior/>
  59. </Style>
  60. <Style ss:ID="s70">
  61. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  62. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#008000"/>
  63. </Style>
  64. <Style ss:ID="s71">
  65. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  66. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11"/>
  67. </Style>
  68. <Style ss:ID="s72">
  69. <Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
  70. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11"/>
  71. <NumberFormat ss:Format="@"/>
  72. </Style>
  73. <Style ss:ID="s73">
  74. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  75. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#808080"/>
  76. </Style>
  77. <Style ss:ID="s74">
  78. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  79. <Borders/>
  80. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#FF00FF"
  81. ss:Bold="1"/>
  82. <Interior/>
  83. <NumberFormat ss:Format="@"/>
  84. </Style>
  85. <Style ss:ID="s75">
  86. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  87. <Borders/>
  88. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  89. <Interior/>
  90. <NumberFormat ss:Format="@"/>
  91. </Style>
  92. <Style ss:ID="s76">
  93. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  94. <Borders/>
  95. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  96. <Interior/>
  97. </Style>
  98. <Style ss:ID="s77">
  99. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  100. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#FF00FF"
  101. ss:Bold="1"/>
  102. </Style>
  103. <Style ss:ID="s78">
  104. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  105. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11"/>
  106. <Interior/>
  107. </Style>
  108. <Style ss:ID="s79">
  109. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  110. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  111. <Interior/>
  112. </Style>
  113. <Style ss:ID="s80">
  114. <Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
  115. <Borders/>
  116. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  117. <Interior ss:Color="#9BC2E6" ss:Pattern="Solid"/>
  118. <NumberFormat ss:Format="@"/>
  119. </Style>
  120. <Style ss:ID="s81">
  121. <Alignment ss:Vertical="Center" ss:WrapText="1"/>
  122. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  123. <Interior ss:Color="#9BC2E6" ss:Pattern="Solid"/>
  124. </Style>
  125. <Style ss:ID="s82">
  126. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  127. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  128. <Interior ss:Color="#9BC2E6" ss:Pattern="Solid"/>
  129. </Style>
  130. <Style ss:ID="s83">
  131. <Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
  132. <Borders/>
  133. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  134. <Interior/>
  135. <NumberFormat ss:Format="@"/>
  136. </Style>
  137. <Style ss:ID="s84">
  138. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  139. <Borders/>
  140. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  141. <Interior ss:Color="#F8CBAD" ss:Pattern="Solid"/>
  142. </Style>
  143. <Style ss:ID="s85">
  144. <Interior ss:Color="#BDD7EE" ss:Pattern="Solid"/>
  145. </Style>
  146. <Style ss:ID="s86">
  147. <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
  148. <Borders/>
  149. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#FF00FF"
  150. ss:Bold="1"/>
  151. <Interior ss:Color="#9BC2E6" ss:Pattern="Solid"/>
  152. </Style>
  153. <Style ss:ID="s87">
  154. <Alignment ss:Vertical="Center" ss:WrapText="1"/>
  155. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  156. <Interior ss:Color="#9BC2E6" ss:Pattern="Solid"/>
  157. <NumberFormat ss:Format="@"/>
  158. </Style>
  159. <Style ss:ID="s88">
  160. <Alignment ss:Vertical="Center" ss:WrapText="1"/>
  161. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  162. <NumberFormat ss:Format="@"/>
  163. </Style>
  164. <Style ss:ID="s89">
  165. <Alignment ss:Vertical="Center" ss:WrapText="1"/>
  166. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  167. </Style>
  168. <Style ss:ID="s90">
  169. <Alignment ss:Vertical="Center" ss:WrapText="1"/>
  170. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11"/>
  171. </Style>
  172. <Style ss:ID="s91">
  173. <Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
  174. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  175. <Interior ss:Color="#9BC2E6" ss:Pattern="Solid"/>
  176. </Style>
  177. <Style ss:ID="s92">
  178. <Alignment ss:Vertical="Center" ss:WrapText="1"/>
  179. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#FF00FF"
  180. ss:Bold="1"/>
  181. <NumberFormat ss:Format="@"/>
  182. </Style>
  183. <Style ss:ID="s93">
  184. <Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
  185. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Bold="1"/>
  186. <Interior/>
  187. </Style>
  188. <Style ss:ID="s94">
  189. <Alignment ss:Vertical="Center" ss:WrapText="1"/>
  190. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#808080"
  191. ss:Bold="1"/>
  192. <NumberFormat ss:Format="@"/>
  193. </Style>
  194. <Style ss:ID="s95">
  195. <Alignment ss:Vertical="Center" ss:WrapText="1"/>
  196. <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#808080"/>
  197. </Style>
  198. </Styles>
  199. <Worksheet ss:Name="UniqueEquip">
  200. <Names>
  201. <NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=UniqueEquip!R1C6:R21C6"
  202. ss:Hidden="1"/>
  203. </Names>
  204. <Table ss:ExpandedColumnCount="78" ss:ExpandedRowCount="21" x:FullColumns="1"
  205. x:FullRows="1" ss:StyleID="s71" ss:DefaultColumnWidth="54"
  206. ss:DefaultRowHeight="13.5">
  207. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="60"/>
  208. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="78"/>
  209. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="115.5"/>
  210. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="58.5"/>
  211. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  212. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="129.75" ss:Span="1"/>
  213. <Column ss:Index="8" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="64.5"/>
  214. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="72"/>
  215. <Column ss:StyleID="s72" ss:AutoFitWidth="0" ss:Width="99"/>
  216. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="58.5"/>
  217. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  218. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="64.5"/>
  219. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="72"/>
  220. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="58.5"/>
  221. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="65.25"/>
  222. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  223. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
  224. <Column ss:Index="20" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="65.25"/>
  225. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  226. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
  227. <Column ss:Index="24" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="65.25"/>
  228. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  229. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
  230. <Column ss:Index="28" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="88.5"/>
  231. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="87"/>
  232. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  233. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
  234. <Column ss:Index="33" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="65.25"/>
  235. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  236. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
  237. <Column ss:Index="37" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="65.25"/>
  238. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  239. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
  240. <Column ss:Index="41" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="65.25"/>
  241. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  242. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
  243. <Column ss:Index="45" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="65.25"/>
  244. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  245. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
  246. <Column ss:Index="49" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="65.25"/>
  247. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  248. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
  249. <Column ss:Index="53" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="65.25"/>
  250. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  251. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
  252. <Column ss:Index="57" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="65.25"/>
  253. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  254. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="53.25" ss:Span="1"/>
  255. <Column ss:Index="61" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="58.5"/>
  256. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="79.5" ss:Span="2"/>
  257. <Column ss:Index="65" ss:StyleID="s73" ss:AutoFitWidth="0" ss:Width="79.5"/>
  258. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51" ss:Span="3"/>
  259. <Column ss:Index="70" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="69.75"/>
  260. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="64.5"/>
  261. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="58.5" ss:Span="1"/>
  262. <Column ss:Index="74" ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="51"/>
  263. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="64.5"/>
  264. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="78"/>
  265. <Column ss:StyleID="s71" ss:AutoFitWidth="0" ss:Width="80.25"/>
  266. <Row ss:Height="27" ss:StyleID="s67">
  267. <Cell><Data ss:Type="String">分类</Data></Cell>
  268. <Cell><Data ss:Type="String">名称</Data></Cell>
  269. <Cell><Data ss:Type="String">备注</Data></Cell>
  270. <Cell><Data ss:Type="String">专属职业</Data><Comment ss:Author="csz"><ss:Data
  271. xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9">csz:</Font></B><Font
  272. html:Size="9">&#10;填写职业名称:&#10;苍狼 御剑 逸仙 神箭 灵狐 &#10;&#10;如果是坐骑装备,填写:坐骑</Font></ss:Data></Comment></Cell>
  273. <Cell><Data ss:Type="String">类型</Data><Comment ss:Author="微软用户"><ss:Data
  274. xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">csz:&#10;装备类型&#10;这里是一个细分的类型,具体到某一类装备。&#10;&#10;按照以下规则转码:&#10;&#10;武器 1&#10;头部 2&#10;上衣 3&#10;腿部 4&#10;肩部 5&#10;手套 6&#10;鞋子 7&#10;项链 8&#10;戒指 9&#10;护身符 10&#10;</Font></ss:Data></Comment></Cell>
  275. <Cell><Data ss:Type="String">代码</Data><Comment ss:Author="csz"><ss:Data
  276. xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9">csz:</Font></B><Font
  277. html:Size="9">&#10;装备的唯一标识,所有装备的代码都是唯一性的;生成和掉落都根据这个代码进行索引&#10;&#10;</Font></ss:Data></Comment><NamedCell
  278. ss:Name="_FilterDatabase"/></Cell>
  279. <Cell><Data ss:Type="String">基类装备代码</Data><Comment ss:Author="csz"><ss:Data
  280. xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9">csz:</Font></B><Font
  281. html:Size="9">&#10;定义这个代码用来给装备培养用,包括:洗练、精炼、重铸时,采用和这个代码对应的装备相通的算法&#10;&#10;即对应Equipment表的Code=本字段的某件装备&#10;&#10;特别说明:重铸时对于独有属性,仍然读取基类装备的独有属性,策划必须确保独有装备和基类装备具有相同的独有属性</Font></ss:Data></Comment></Cell>
  282. <Cell><Data ss:Type="String">套装编号</Data><Comment ss:Author="csz"><ss:Data
  283. xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9">csz:</Font></B><Font
  284. html:Size="9">&#10;&#10;标记本装备隶属于那一套套装,对应EquipBuild表【SuitList】的【套装编号】字段</Font></ss:Data></Comment></Cell>
  285. <Cell><Data ss:Type="String">品阶星级</Data><Comment ss:Author="施轶"><ss:Data
  286. xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">csz:&#10;&#10;预留字段&#10;&#10;这个字段用来让图标直观的显示装备品级,不带星的为普通装备,带星的为更高品级&#10;&#10;不填或0:客户端不显示星级&#10;n:客户端显示n星,5星以上显示★×n,如6星显示★×6</Font></ss:Data></Comment></Cell>
  287. <Cell ss:StyleID="s80"><Data ss:Type="String">描述</Data><Comment
  288. ss:Author="微软用户"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
  289. html:Size="9">csz:&#10;放在物品最后装X用的一段描述。</Font></ss:Data></Comment></Cell>
  290. <Cell><Data ss:Type="String">是否出现</Data><Comment ss:Author="陈绍治"><ss:Data
  291. xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">陈绍治:&#10;&#10;1:出现,会掉落&#10;0:不出现,后续版本或者临时取消掉落</Font></ss:Data></Comment></Cell>
  292. <Cell ss:StyleID="s81"><Data ss:Type="String">成色</Data><Comment
  293. ss:Author="微软用户"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
  294. html:Size="9">csz:&#10;0:白色,默认颜色&#10;1:蓝色,精良&#10;2:紫色,史诗&#10;3:橙色,传说&#10;4:绿色,套装: &#10;5:红色,顶级(暂未开放)&#10;</Font></ss:Data></Comment></Cell>
  295. <Cell><Data ss:Type="String">等级需求</Data><Comment ss:Author="陈绍治"><ss:Data
  296. xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">陈绍治:&#10;穿戴、使用、强化相关等操作需要的人物等级</Font></ss:Data></Comment></Cell>
  297. <Cell ss:StyleID="s82"><Data ss:Type="String">熔炼等级</Data><Comment
  298. ss:Author="csz"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font
  299. html:Size="9">csz:</Font></B><Font html:Size="9">&#10;&#10;熔炼需要的字段,用来定义产出。一般情况下等于等级需求字段,但可能有时候不能完全根据等级来,因此这里需要单独定一个字段便于控制产出</Font></ss:Data></Comment></Cell>
  300. <Cell><Data ss:Type="String">基础价格</Data><Comment ss:Author="陈绍治"><ss:Data
  301. xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">陈绍治:&#10;&#10;这件装备的基础价格,出售的时候按这个价格卖给NPC</Font></ss:Data></Comment></Cell>
  302. <Cell><Data ss:Type="String">基础属性1</Data><Comment ss:Author="陈绍治"><ss:Data
  303. xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">陈绍治:&#10;&#10;唯一类装备的基础属性,固定3个&#10;对于独有Unique类装备,其基础值固定,min=max,策划必须确保</Font></ss:Data></Comment></Cell>
  304. <Cell><Data ss:Type="String">参数1</Data></Cell>
  305. <Cell><Data ss:Type="String">最小值1</Data></Cell>
  306. <Cell><Data ss:Type="String">最大值1</Data></Cell>
  307. <Cell><Data ss:Type="String">基础属性2</Data></Cell>
  308. <Cell><Data ss:Type="String">参数2</Data></Cell>
  309. <Cell><Data ss:Type="String">最小值2</Data></Cell>
  310. <Cell><Data ss:Type="String">最大值2</Data></Cell>
  311. <Cell><Data ss:Type="String">基础属性3</Data></Cell>
  312. <Cell><Data ss:Type="String">参数3</Data></Cell>
  313. <Cell><Data ss:Type="String">最小值3</Data></Cell>
  314. <Cell><Data ss:Type="String">最大值3</Data></Cell>
  315. <Cell><Data ss:Type="String">扩展属性数量</Data><Comment ss:Author="csz"><ss:Data
  316. xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Size="9">csz:</Font></B><Font
  317. html:Size="9">&#10;&#10;扩展随机属性的数量,这个字段方便程序读取,循环读取后面的字段。每次循环读取后面4个字段</Font></ss:Data></Comment></Cell>
  318. <Cell ss:StyleID="s84"><Data ss:Type="String">扩展属性1</Data><Comment
  319. ss:Author="csz"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font
  320. html:Size="9">csz:</Font></B><Font html:Size="9">&#10;&#10;扩展属性可有多个,值是固定的,min=max,并且其值范围不可超过对应基础装备的随机范围,策划必须确保</Font></ss:Data></Comment></Cell>
  321. <Cell ss:StyleID="s84"><Data ss:Type="String">参数1</Data></Cell>
  322. <Cell ss:StyleID="s84"><Data ss:Type="String">最小值1</Data></Cell>
  323. <Cell ss:StyleID="s84"><Data ss:Type="String">最大值1</Data></Cell>
  324. <Cell ss:StyleID="s84"><Data ss:Type="String">扩展属性2</Data></Cell>
  325. <Cell ss:StyleID="s84"><Data ss:Type="String">参数2</Data></Cell>
  326. <Cell ss:StyleID="s84"><Data ss:Type="String">最小值2</Data></Cell>
  327. <Cell ss:StyleID="s84"><Data ss:Type="String">最大值2</Data></Cell>
  328. <Cell ss:StyleID="s84"><Data ss:Type="String">扩展属性3</Data></Cell>
  329. <Cell ss:StyleID="s84"><Data ss:Type="String">参数3</Data></Cell>
  330. <Cell ss:StyleID="s84"><Data ss:Type="String">最小值3</Data></Cell>
  331. <Cell ss:StyleID="s84"><Data ss:Type="String">最大值3</Data></Cell>
  332. <Cell ss:StyleID="s84"><Data ss:Type="String">扩展属性4</Data></Cell>
  333. <Cell ss:StyleID="s84"><Data ss:Type="String">参数4</Data></Cell>
  334. <Cell ss:StyleID="s84"><Data ss:Type="String">最小值4</Data></Cell>
  335. <Cell ss:StyleID="s84"><Data ss:Type="String">最大值4</Data></Cell>
  336. <Cell ss:StyleID="s84"><Data ss:Type="String">扩展属性5</Data></Cell>
  337. <Cell ss:StyleID="s84"><Data ss:Type="String">参数5</Data></Cell>
  338. <Cell ss:StyleID="s84"><Data ss:Type="String">最小值5</Data></Cell>
  339. <Cell ss:StyleID="s84"><Data ss:Type="String">最大值5</Data></Cell>
  340. <Cell ss:StyleID="s84"><Data ss:Type="String">扩展属性6</Data></Cell>
  341. <Cell ss:StyleID="s84"><Data ss:Type="String">参数6</Data></Cell>
  342. <Cell ss:StyleID="s84"><Data ss:Type="String">最小值6</Data></Cell>
  343. <Cell ss:StyleID="s84"><Data ss:Type="String">最大值6</Data></Cell>
  344. <Cell ss:StyleID="s86"><Data ss:Type="String">独有属性1</Data><Comment
  345. ss:Author="csz"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font
  346. html:Size="9">csz:</Font></B><Font html:Size="9">&#10;&#10;独有属性,用来区别本装备和其他装备的不同,一般都是一些比较好的属性&#10;&#10;独有属性最多有2条,这些属性不能被洗练、精炼,但是可以通过重铸来重新生成其属性值&#10;&#10;为空就表示没有,无需处理</Font></ss:Data></Comment></Cell>
  347. <Cell ss:StyleID="s86"><Data ss:Type="String">参数1</Data></Cell>
  348. <Cell ss:StyleID="s86"><Data ss:Type="String">最小值1</Data></Cell>
  349. <Cell ss:StyleID="s86"><Data ss:Type="String">最大值1</Data></Cell>
  350. <Cell ss:StyleID="s86"><Data ss:Type="String">独有属性2</Data></Cell>
  351. <Cell ss:StyleID="s86"><Data ss:Type="String">参数2</Data></Cell>
  352. <Cell ss:StyleID="s86"><Data ss:Type="String">最小值2</Data></Cell>
  353. <Cell ss:StyleID="s86"><Data ss:Type="String">最大值2</Data></Cell>
  354. <Cell ss:StyleID="s82"><Data ss:Type="String">图标文件</Data><Comment
  355. ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
  356. html:Size="9">陈绍治:&#10;&#10;ICON文件的文件名,只要前缀就行了</Font></ss:Data></Comment></Cell>
  357. <Cell ss:StyleID="s82"><Data ss:Type="String">重叠数量</Data><Comment
  358. ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
  359. html:Size="9">陈绍治:&#10;&#10;这个字段有2层含义:&#10;1:不可重叠,其实就是只能重叠1个&#10;&gt;1,可重叠的上限,也就是背包内的单格子下标数量上限&#10;&#10;其他字段无意义,策划确保数值正确性</Font></ss:Data></Comment></Cell>
  360. <Cell ss:StyleID="s87"><Data ss:Type="String">购买上限</Data><Comment
  361. ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
  362. html:Size="9">陈绍治:&#10;单次可购买该物品的最大数量,&lt;=重叠数量&#10;这个字段用来在购买物品界面填写默认值,比如强化石堆叠是999个,商城玩家购买时,我们填写10个,玩家默认购买这个数量,当然也是可以修改的。主要是给客户端用,服务器无需存档</Font></ss:Data></Comment></Cell>
  363. <Cell ss:StyleID="s87"><Data ss:Type="String">绑定规则</Data><Comment
  364. ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
  365. html:Size="9">陈绍治:&#10;&#10;0:默认不绑定&#10;1:拾取即绑定(就是获得的时候就绑定,不一定是地上拾取的,比如商城购买后的也算)&#10;2:装备后绑定(主要是给装备用的字段,穿了就绑定)&#10;&#10;以上绑定规则是针对角色而言&#10;&#10;</Font><B><Font
  366. html:Size="9">特别注意:</Font></B><Font html:Size="9">&#10;</Font><B><Font
  367. html:Size="9">本字段为1时,后续的不可交易、不可寄卖、不可存入账号仓库、不可存入公会仓库字段也必须同时为1(策划必须确保)</Font></B></ss:Data></Comment></Cell>
  368. <Cell ss:StyleID="s87"><Data ss:Type="String">检测</Data></Cell>
  369. <Cell ss:StyleID="s91"><Data ss:Type="String">不可销毁</Data><Comment
  370. ss:Author="陈绍治"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><Font
  371. html:Size="9">陈绍治:&#10;0:否,可以摧毁&#10;1:是,不可以摧毁&#10;&#10;后续几个字段,同时为1表示绑定;&#10;建议服务器端用位运算来存储以节省空间。&#10;道具基础类设定以下函数:&#10;&#10;//判定一个物品是否绑定&#10;isBind(){&#10;不可交易、不可寄卖、不可存入个人仓库、不可存入公会仓库 4字段都为1 返回true,其他返回false&#10;}&#10;&#10;//强制绑定物品&#10;setBind(){&#10;以上字段都设置为1&#10;}&#10;&#10;//强制解绑物品&#10;unBind(){&#10;以上4个字段都设置为0&#10;}&#10;</Font></ss:Data></Comment></Cell>
  372. <Cell ss:StyleID="s91"><Data ss:Type="String">不可出售</Data><Comment
  373. ss:Author="csz"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font
  374. html:Size="9">csz:</Font></B><Font html:Size="9">&#10;&#10;不可卖给NPC&#10;0:否,可以买&#10;1:是,不能卖</Font></ss:Data></Comment></Cell>
  375. <Cell ss:StyleID="s91"><Data ss:Type="String">不可交易</Data><Comment
  376. ss:Author="csz"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font
  377. html:Size="9">csz:</Font></B><Font html:Size="9">&#10;预留字段</Font></ss:Data></Comment></Cell>
  378. <Cell ss:StyleID="s91"><Data ss:Type="String">不可寄卖</Data><Comment
  379. ss:Author="csz"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font
  380. html:Size="9">csz:</Font></B><Font html:Size="9">&#10;0:不可通过寄卖行寄卖&#10;1:可以寄卖</Font></ss:Data></Comment></Cell>
  381. <Cell ss:StyleID="s91"><Data ss:Type="String">不可存入个人仓库</Data></Cell>
  382. <Cell ss:StyleID="s91"><Data ss:Type="String">不可存入账号仓库</Data></Cell>
  383. <Cell ss:StyleID="s91"><Data ss:Type="String">不可存入公会仓库</Data></Cell>
  384. <Cell ss:StyleID="s91"><Data ss:Type="String">不可熔炼</Data><Comment
  385. ss:Author="朱晶晶"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font
  386. html:Size="9">陈绍治:&#10;这个字段用来控制某些特殊装备不能被熔炼,只能卖给NPC&#10;</Font></B><Font
  387. html:Size="9">&#10;0-可熔炼&#10;1-不可熔炼</Font></ss:Data></Comment></Cell>
  388. <Cell><Data ss:Type="String">模型ID</Data></Cell>
  389. <Cell><Data ss:Type="String">造型ID</Data><Comment ss:Author="刘琦"><ss:Data
  390. xmlns="http://www.w3.org/TR/REC-html40"><Font html:Size="9">陈绍治:&#10;装备所造成的avatar形象更变,目前能够更变avatar形象的只有主手武器和衣服,配置时请注意</Font></ss:Data></Comment></Cell>
  391. <Cell ss:StyleID="s91"><Data ss:Type="String">公会仓库存入贡献</Data><Comment
  392. ss:Author="csz"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font
  393. html:Size="9">csz:</Font></B><Font html:Size="9">&#10;&#10;被放入公会仓库的时候,玩家获得多少仓库贡献</Font></ss:Data></Comment></Cell>
  394. <Cell ss:StyleID="s91"><Data ss:Type="String">公会仓库取出贡献</Data><Comment
  395. ss:Author="csz"><ss:Data xmlns="http://www.w3.org/TR/REC-html40"><B><Font
  396. html:Size="9">csz:</Font></B><Font html:Size="9">&#10;&#10;从公会仓库提取这件物品,玩家需要多少仓库贡献,始终大于存入获得的贡献</Font></ss:Data></Comment></Cell>
  397. <Cell><Data ss:Type="String">公会仓库等级筛选</Data></Cell>
  398. </Row>
  399. <Row ss:Height="27" ss:StyleID="s68">
  400. <Cell ss:StyleID="s74"><Data ss:Type="String">@remark</Data></Cell>
  401. <Cell ss:StyleID="s75"><Data ss:Type="String">Name</Data></Cell>
  402. <Cell ss:StyleID="s74"><Data ss:Type="String">@remark</Data></Cell>
  403. <Cell ss:StyleID="s75"><Data ss:Type="String">Pro</Data></Cell>
  404. <Cell ss:StyleID="s75"><Data ss:Type="String">Type</Data></Cell>
  405. <Cell ss:StyleID="s75"><Data ss:Type="String">Code</Data><NamedCell
  406. ss:Name="_FilterDatabase"/></Cell>
  407. <Cell ss:StyleID="s75"><Data ss:Type="String">BaseCode</Data></Cell>
  408. <Cell ss:StyleID="s75"><Data ss:Type="String">SuitID</Data></Cell>
  409. <Cell ss:StyleID="s75"><Data ss:Type="String">StarLevel</Data></Cell>
  410. <Cell ss:StyleID="s83"><Data ss:Type="String">Desc</Data></Cell>
  411. <Cell ss:StyleID="s75"><Data ss:Type="String">isValid</Data></Cell>
  412. <Cell ss:StyleID="s76"><Data ss:Type="String">Qcolor</Data></Cell>
  413. <Cell ss:StyleID="s76"><Data ss:Type="String">LevelReq</Data></Cell>
  414. <Cell ss:StyleID="s79"><Data ss:Type="String">MeltLevel</Data></Cell>
  415. <Cell ss:StyleID="s76"><Data ss:Type="String">Price</Data></Cell>
  416. <Cell ss:StyleID="s76"><Data ss:Type="String">Prop1</Data></Cell>
  417. <Cell ss:StyleID="s76"><Data ss:Type="String">Par1</Data></Cell>
  418. <Cell ss:StyleID="s76"><Data ss:Type="String">Min1</Data></Cell>
  419. <Cell ss:StyleID="s76"><Data ss:Type="String">Max1</Data></Cell>
  420. <Cell ss:StyleID="s76"><Data ss:Type="String">Prop2</Data></Cell>
  421. <Cell ss:StyleID="s76"><Data ss:Type="String">Par2</Data></Cell>
  422. <Cell ss:StyleID="s76"><Data ss:Type="String">Min2</Data></Cell>
  423. <Cell ss:StyleID="s76"><Data ss:Type="String">Max2</Data></Cell>
  424. <Cell ss:StyleID="s76"><Data ss:Type="String">Prop3</Data></Cell>
  425. <Cell ss:StyleID="s76"><Data ss:Type="String">Par3</Data></Cell>
  426. <Cell ss:StyleID="s76"><Data ss:Type="String">Min3</Data></Cell>
  427. <Cell ss:StyleID="s76"><Data ss:Type="String">Max3</Data></Cell>
  428. <Cell ss:StyleID="s76"><Data ss:Type="String">RPropCount</Data></Cell>
  429. <Cell ss:StyleID="s76"><Data ss:Type="String">RProp1</Data></Cell>
  430. <Cell ss:StyleID="s76"><Data ss:Type="String">RPar1</Data></Cell>
  431. <Cell ss:StyleID="s76"><Data ss:Type="String">RMin1</Data></Cell>
  432. <Cell ss:StyleID="s76"><Data ss:Type="String">RMax1</Data></Cell>
  433. <Cell ss:StyleID="s76"><Data ss:Type="String">RProp2</Data></Cell>
  434. <Cell ss:StyleID="s76"><Data ss:Type="String">RPar2</Data></Cell>
  435. <Cell ss:StyleID="s76"><Data ss:Type="String">RMin2</Data></Cell>
  436. <Cell ss:StyleID="s76"><Data ss:Type="String">RMax2</Data></Cell>
  437. <Cell ss:StyleID="s76"><Data ss:Type="String">RProp3</Data></Cell>
  438. <Cell ss:StyleID="s76"><Data ss:Type="String">RPar3</Data></Cell>
  439. <Cell ss:StyleID="s76"><Data ss:Type="String">RMin3</Data></Cell>
  440. <Cell ss:StyleID="s76"><Data ss:Type="String">RMax3</Data></Cell>
  441. <Cell ss:StyleID="s76"><Data ss:Type="String">RProp4</Data></Cell>
  442. <Cell ss:StyleID="s76"><Data ss:Type="String">RPar4</Data></Cell>
  443. <Cell ss:StyleID="s76"><Data ss:Type="String">RMin4</Data></Cell>
  444. <Cell ss:StyleID="s76"><Data ss:Type="String">RMax4</Data></Cell>
  445. <Cell ss:StyleID="s76"><Data ss:Type="String">RProp5</Data></Cell>
  446. <Cell ss:StyleID="s76"><Data ss:Type="String">RPar5</Data></Cell>
  447. <Cell ss:StyleID="s76"><Data ss:Type="String">RMin5</Data></Cell>
  448. <Cell ss:StyleID="s76"><Data ss:Type="String">RMax5</Data></Cell>
  449. <Cell ss:StyleID="s76"><Data ss:Type="String">RProp6</Data></Cell>
  450. <Cell ss:StyleID="s76"><Data ss:Type="String">RPar6</Data></Cell>
  451. <Cell ss:StyleID="s76"><Data ss:Type="String">RMin6</Data></Cell>
  452. <Cell ss:StyleID="s76"><Data ss:Type="String">RMax6</Data></Cell>
  453. <Cell ss:StyleID="s76"><Data ss:Type="String">UProp1</Data></Cell>
  454. <Cell ss:StyleID="s76"><Data ss:Type="String">UPar1</Data></Cell>
  455. <Cell ss:StyleID="s76"><Data ss:Type="String">UMin1</Data></Cell>
  456. <Cell ss:StyleID="s76"><Data ss:Type="String">UMax1</Data></Cell>
  457. <Cell ss:StyleID="s76"><Data ss:Type="String">UProp2</Data></Cell>
  458. <Cell ss:StyleID="s76"><Data ss:Type="String">UPar2</Data></Cell>
  459. <Cell ss:StyleID="s76"><Data ss:Type="String">UMin2</Data></Cell>
  460. <Cell ss:StyleID="s76"><Data ss:Type="String">UMax2</Data></Cell>
  461. <Cell ss:StyleID="s79"><Data ss:Type="String">Icon</Data></Cell>
  462. <Cell ss:StyleID="s79"><Data ss:Type="String">GroupCount</Data></Cell>
  463. <Cell ss:StyleID="s88"><ss:Data ss:Type="String"
  464. xmlns="http://www.w3.org/TR/REC-html40"><B>PurchaseCount</B></ss:Data></Cell>
  465. <Cell ss:StyleID="s89"><Data ss:Type="String">BindType</Data></Cell>
  466. <Cell ss:StyleID="s92"><Data ss:Type="String">@Remark</Data></Cell>
  467. <Cell ss:StyleID="s93"><Data ss:Type="String">NoDestory</Data></Cell>
  468. <Cell ss:StyleID="s93"><Data ss:Type="String">NoSell</Data></Cell>
  469. <Cell ss:StyleID="s93"><Data ss:Type="String">NoTrade</Data></Cell>
  470. <Cell ss:StyleID="s93"><Data ss:Type="String">NoAuction</Data></Cell>
  471. <Cell ss:StyleID="s93"><Data ss:Type="String">NoDepotRole</Data></Cell>
  472. <Cell ss:StyleID="s93"><Data ss:Type="String">NoDepotAcc</Data></Cell>
  473. <Cell ss:StyleID="s93"><Data ss:Type="String">NoDepotGuild</Data></Cell>
  474. <Cell ss:StyleID="s93"><ss:Data ss:Type="String"
  475. xmlns="http://www.w3.org/TR/REC-html40"><B>NoMelt</B></ss:Data></Cell>
  476. <Cell ss:StyleID="s75"><Data ss:Type="String">showId</Data></Cell>
  477. <Cell ss:StyleID="s75"><Data ss:Type="String">AvatarId</Data></Cell>
  478. <Cell ss:StyleID="s93"><Data ss:Type="String">WareHouseValue</Data></Cell>
  479. <Cell ss:StyleID="s93"><Data ss:Type="String">WareHouseCost</Data></Cell>
  480. <Cell><Data ss:Type="String">WareHouseLevelSort</Data></Cell>
  481. </Row>
  482. <Row ss:StyleID="s69">
  483. <Cell ss:Index="2" ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  484. <Cell ss:StyleID="s76"/>
  485. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  486. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  487. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data><NamedCell
  488. ss:Name="_FilterDatabase"/></Cell>
  489. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  490. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  491. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  492. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  493. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  494. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  495. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  496. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  497. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  498. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  499. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  500. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  501. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  502. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  503. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  504. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  505. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  506. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  507. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  508. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  509. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  510. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  511. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  512. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  513. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  514. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  515. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  516. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  517. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  518. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  519. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  520. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  521. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  522. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  523. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  524. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  525. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  526. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  527. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  528. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  529. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  530. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  531. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  532. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  533. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  534. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  535. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  536. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  537. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  538. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  539. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  540. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  541. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  542. <Cell ss:StyleID="s76"><Data ss:Type="String">NUMBER</Data></Cell>
  543. <Cell ss:StyleID="s79"><Data ss:Type="String">STRING</Data></Cell>
  544. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  545. <Cell ss:StyleID="s88"><Data ss:Type="String">NUMBER</Data></Cell>
  546. <Cell ss:StyleID="s88"><Data ss:Type="String">NUMBER</Data></Cell>
  547. <Cell ss:StyleID="s94"/>
  548. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  549. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  550. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  551. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  552. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  553. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  554. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  555. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  556. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  557. <Cell ss:StyleID="s76"><Data ss:Type="String">STRING</Data></Cell>
  558. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  559. <Cell ss:StyleID="s79"><Data ss:Type="String">NUMBER</Data></Cell>
  560. <Cell><Data ss:Type="String">NUMBER</Data></Cell>
  561. </Row>
  562. <Row ss:Height="14.25" ss:StyleID="s70">
  563. <Cell ss:StyleID="s77"><Data ss:Type="String">1、武器</Data></Cell>
  564. <Cell ss:StyleID="s66"><Data ss:Type="String">寒铁刃</Data></Cell>
  565. <Cell ss:StyleID="s71"><Data ss:Type="String">新手武器</Data></Cell>
  566. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  567. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  568. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u1</Data><NamedCell
  569. ss:Name="_FilterDatabase"/></Cell>
  570. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-1</Data></Cell>
  571. <Cell ss:StyleID="s71"/>
  572. <Cell ss:StyleID="s71"/>
  573. <Cell ss:StyleID="s72"/>
  574. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  575. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  576. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  577. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  578. <Cell ss:StyleID="s71"><Data ss:Type="Number">15</Data></Cell>
  579. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  580. <Cell ss:StyleID="s71"/>
  581. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  582. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  583. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  584. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  585. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  586. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  587. <Cell ss:StyleID="s71"/>
  588. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  589. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  590. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  591. <Cell ss:StyleID="s66"><Data ss:Type="String">被治疗效果</Data></Cell>
  592. <Cell ss:StyleID="Default"/>
  593. <Cell ss:StyleID="Default"><Data ss:Type="Number">100000</Data></Cell>
  594. <Cell ss:StyleID="Default"><Data ss:Type="Number">100000</Data></Cell>
  595. <Cell ss:StyleID="s85"/>
  596. <Cell ss:StyleID="s85"/>
  597. <Cell ss:StyleID="s85"/>
  598. <Cell ss:StyleID="s85"/>
  599. <Cell ss:StyleID="s71"/>
  600. <Cell ss:StyleID="s71"/>
  601. <Cell ss:StyleID="s71"/>
  602. <Cell ss:StyleID="s71"/>
  603. <Cell ss:StyleID="s71"/>
  604. <Cell ss:StyleID="s71"/>
  605. <Cell ss:StyleID="s71"/>
  606. <Cell ss:StyleID="s71"/>
  607. <Cell ss:StyleID="s71"/>
  608. <Cell ss:Index="47" ss:StyleID="s71"/>
  609. <Cell ss:StyleID="s71"/>
  610. <Cell ss:StyleID="s71"/>
  611. <Cell ss:StyleID="s71"/>
  612. <Cell ss:StyleID="s71"/>
  613. <Cell ss:StyleID="s71"/>
  614. <Cell ss:StyleID="s71"/>
  615. <Cell ss:StyleID="s71"/>
  616. <Cell ss:StyleID="s71"/>
  617. <Cell ss:StyleID="s71"/>
  618. <Cell ss:StyleID="s71"/>
  619. <Cell ss:StyleID="s71"/>
  620. <Cell ss:StyleID="s71"/>
  621. <Cell ss:StyleID="s71"/>
  622. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-01</Data></Cell>
  623. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  624. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  625. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  626. <Cell ss:StyleID="s95"
  627. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  628. ss:Type="String"></Data></Cell>
  629. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  630. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  631. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  632. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  633. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  634. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  635. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  636. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  637. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  638. <Cell ss:StyleID="s71"/>
  639. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  640. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  641. <Cell><Data ss:Type="Number">0</Data></Cell>
  642. </Row>
  643. <Row ss:Height="14.25" ss:StyleID="s70">
  644. <Cell ss:Index="2" ss:StyleID="s78"><Data ss:Type="String">赤火之刃</Data></Cell>
  645. <Cell ss:StyleID="s71"><Data ss:Type="String">10级苍狼武器</Data></Cell>
  646. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  647. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  648. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u10</Data><NamedCell
  649. ss:Name="_FilterDatabase"/></Cell>
  650. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-10</Data></Cell>
  651. <Cell ss:StyleID="s71"/>
  652. <Cell ss:StyleID="s71"/>
  653. <Cell ss:StyleID="s72"/>
  654. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  655. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  656. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  657. <Cell ss:StyleID="s71"><Data ss:Type="Number">10</Data></Cell>
  658. <Cell ss:StyleID="s71"><Data ss:Type="Number">60</Data></Cell>
  659. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  660. <Cell ss:StyleID="s71"/>
  661. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  662. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  663. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  664. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  665. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  666. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  667. <Cell ss:StyleID="s71"/>
  668. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  669. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  670. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  671. <Cell ss:StyleID="s66"><Data ss:Type="String">移动速度</Data></Cell>
  672. <Cell ss:StyleID="Default"/>
  673. <Cell ss:StyleID="Default"><Data ss:Type="Number">10000</Data></Cell>
  674. <Cell ss:StyleID="Default"><Data ss:Type="Number">10000</Data></Cell>
  675. <Cell ss:StyleID="s85"/>
  676. <Cell ss:StyleID="s85"/>
  677. <Cell ss:StyleID="s85"/>
  678. <Cell ss:StyleID="s85"/>
  679. <Cell ss:StyleID="s71"/>
  680. <Cell ss:StyleID="s71"/>
  681. <Cell ss:StyleID="s71"/>
  682. <Cell ss:StyleID="s71"/>
  683. <Cell ss:StyleID="s71"/>
  684. <Cell ss:StyleID="s71"/>
  685. <Cell ss:StyleID="s71"/>
  686. <Cell ss:StyleID="s71"/>
  687. <Cell ss:StyleID="s71"/>
  688. <Cell ss:Index="47" ss:StyleID="s71"/>
  689. <Cell ss:StyleID="s71"/>
  690. <Cell ss:StyleID="s71"/>
  691. <Cell ss:StyleID="s71"/>
  692. <Cell ss:StyleID="s71"/>
  693. <Cell ss:StyleID="s71"/>
  694. <Cell ss:StyleID="s71"/>
  695. <Cell ss:StyleID="s71"/>
  696. <Cell ss:StyleID="s71"/>
  697. <Cell ss:StyleID="s71"/>
  698. <Cell ss:StyleID="s71"/>
  699. <Cell ss:StyleID="s71"/>
  700. <Cell ss:StyleID="s71"/>
  701. <Cell ss:StyleID="s71"/>
  702. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-01</Data></Cell>
  703. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  704. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  705. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  706. <Cell ss:StyleID="s95"
  707. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  708. ss:Type="String"></Data></Cell>
  709. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  710. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  711. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  712. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  713. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  714. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  715. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  716. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  717. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  718. <Cell ss:StyleID="s71"/>
  719. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  720. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  721. <Cell><Data ss:Type="Number">0</Data></Cell>
  722. </Row>
  723. <Row ss:Height="14.25" ss:StyleID="s70">
  724. <Cell ss:Index="2" ss:StyleID="s78"><Data ss:Type="String">明月之刃</Data></Cell>
  725. <Cell ss:StyleID="s71"><Data ss:Type="String">20级苍狼武器</Data></Cell>
  726. <Cell ss:StyleID="s71"><Data ss:Type="String">逸仙</Data></Cell>
  727. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  728. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u20</Data><NamedCell
  729. ss:Name="_FilterDatabase"/></Cell>
  730. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-20</Data></Cell>
  731. <Cell ss:StyleID="s71"/>
  732. <Cell ss:StyleID="s71"/>
  733. <Cell ss:StyleID="s72"/>
  734. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  735. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  736. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  737. <Cell ss:StyleID="s71"><Data ss:Type="Number">20</Data></Cell>
  738. <Cell ss:StyleID="s71"><Data ss:Type="Number">110</Data></Cell>
  739. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  740. <Cell ss:StyleID="s71"/>
  741. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  742. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  743. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  744. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  745. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  746. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  747. <Cell ss:StyleID="s71"/>
  748. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  749. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  750. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  751. <Cell ss:StyleID="Default"><Data ss:Type="String">韧性%</Data></Cell>
  752. <Cell ss:StyleID="Default"/>
  753. <Cell ss:StyleID="Default"><Data ss:Type="Number">9000</Data></Cell>
  754. <Cell ss:StyleID="Default"><Data ss:Type="Number">9000</Data></Cell>
  755. <Cell ss:StyleID="s85"/>
  756. <Cell ss:StyleID="s85"/>
  757. <Cell ss:StyleID="s85"/>
  758. <Cell ss:StyleID="s85"/>
  759. <Cell ss:StyleID="s71"/>
  760. <Cell ss:StyleID="s71"/>
  761. <Cell ss:StyleID="s71"/>
  762. <Cell ss:StyleID="s71"/>
  763. <Cell ss:StyleID="s71"/>
  764. <Cell ss:StyleID="s71"/>
  765. <Cell ss:StyleID="s71"/>
  766. <Cell ss:StyleID="s71"/>
  767. <Cell ss:StyleID="s71"/>
  768. <Cell ss:Index="47" ss:StyleID="s71"/>
  769. <Cell ss:StyleID="s71"/>
  770. <Cell ss:StyleID="s71"/>
  771. <Cell ss:StyleID="s71"/>
  772. <Cell ss:StyleID="s71"/>
  773. <Cell ss:StyleID="s71"/>
  774. <Cell ss:StyleID="s71"/>
  775. <Cell ss:StyleID="s71"/>
  776. <Cell ss:StyleID="s71"/>
  777. <Cell ss:StyleID="s71"/>
  778. <Cell ss:StyleID="s71"/>
  779. <Cell ss:StyleID="s71"/>
  780. <Cell ss:StyleID="s71"/>
  781. <Cell ss:StyleID="s71"/>
  782. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-01</Data></Cell>
  783. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  784. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  785. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  786. <Cell ss:StyleID="s95"
  787. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  788. ss:Type="String"></Data></Cell>
  789. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  790. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  791. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  792. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  793. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  794. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  795. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  796. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  797. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  798. <Cell ss:StyleID="s71"/>
  799. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  800. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  801. <Cell><Data ss:Type="Number">0</Data></Cell>
  802. </Row>
  803. <Row ss:Height="14.25" ss:StyleID="s70">
  804. <Cell ss:Index="2" ss:StyleID="s78"><Data ss:Type="String">混元之刃</Data></Cell>
  805. <Cell ss:StyleID="s71"><Data ss:Type="String">30级苍狼武器</Data></Cell>
  806. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  807. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  808. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u30</Data><NamedCell
  809. ss:Name="_FilterDatabase"/></Cell>
  810. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-30</Data></Cell>
  811. <Cell ss:StyleID="s71"/>
  812. <Cell ss:StyleID="s71"/>
  813. <Cell ss:StyleID="s72"/>
  814. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  815. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  816. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  817. <Cell ss:StyleID="s71"><Data ss:Type="Number">30</Data></Cell>
  818. <Cell ss:StyleID="s71"><Data ss:Type="Number">160</Data></Cell>
  819. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  820. <Cell ss:StyleID="s71"/>
  821. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  822. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  823. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  824. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  825. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  826. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  827. <Cell ss:StyleID="s71"/>
  828. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  829. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  830. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  831. <Cell ss:StyleID="Default"><Data ss:Type="String">治疗效果</Data></Cell>
  832. <Cell ss:StyleID="Default"/>
  833. <Cell ss:StyleID="Default"><Data ss:Type="Number">1000</Data></Cell>
  834. <Cell ss:StyleID="Default"><Data ss:Type="Number">1000</Data></Cell>
  835. <Cell ss:StyleID="s85"/>
  836. <Cell ss:StyleID="s85"/>
  837. <Cell ss:StyleID="s85"/>
  838. <Cell ss:StyleID="s85"/>
  839. <Cell ss:StyleID="s71"/>
  840. <Cell ss:StyleID="s71"/>
  841. <Cell ss:StyleID="s71"/>
  842. <Cell ss:StyleID="s71"/>
  843. <Cell ss:StyleID="s71"/>
  844. <Cell ss:StyleID="s71"/>
  845. <Cell ss:StyleID="s71"/>
  846. <Cell ss:StyleID="s71"/>
  847. <Cell ss:StyleID="s71"/>
  848. <Cell ss:Index="47" ss:StyleID="s71"/>
  849. <Cell ss:StyleID="s71"/>
  850. <Cell ss:StyleID="s71"/>
  851. <Cell ss:StyleID="s71"/>
  852. <Cell ss:StyleID="s71"/>
  853. <Cell ss:StyleID="s71"/>
  854. <Cell ss:StyleID="s71"/>
  855. <Cell ss:StyleID="s71"/>
  856. <Cell ss:StyleID="s71"/>
  857. <Cell ss:StyleID="s71"/>
  858. <Cell ss:StyleID="s71"/>
  859. <Cell ss:StyleID="s71"/>
  860. <Cell ss:StyleID="s71"/>
  861. <Cell ss:StyleID="s71"/>
  862. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-02</Data></Cell>
  863. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  864. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  865. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  866. <Cell ss:StyleID="s95"
  867. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  868. ss:Type="String"></Data></Cell>
  869. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  870. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  871. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  872. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  873. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  874. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  875. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  876. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  877. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  878. <Cell ss:StyleID="s71"/>
  879. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  880. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  881. <Cell><Data ss:Type="Number">0</Data></Cell>
  882. </Row>
  883. <Row ss:Height="14.25" ss:StyleID="s70">
  884. <Cell ss:Index="2" ss:StyleID="s78"><Data ss:Type="String">血饮之刃</Data></Cell>
  885. <Cell ss:StyleID="s71"><Data ss:Type="String">40级苍狼武器</Data></Cell>
  886. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  887. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  888. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u40</Data><NamedCell
  889. ss:Name="_FilterDatabase"/></Cell>
  890. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-40</Data></Cell>
  891. <Cell ss:StyleID="s71"/>
  892. <Cell ss:StyleID="s71"/>
  893. <Cell ss:StyleID="s72"/>
  894. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  895. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  896. <Cell ss:StyleID="s71"><Data ss:Type="Number">40</Data></Cell>
  897. <Cell ss:StyleID="s71"><Data ss:Type="Number">40</Data></Cell>
  898. <Cell ss:StyleID="s71"><Data ss:Type="Number">210</Data></Cell>
  899. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  900. <Cell ss:StyleID="s71"/>
  901. <Cell ss:StyleID="s71"><Data ss:Type="Number">206</Data></Cell>
  902. <Cell ss:StyleID="s71"><Data ss:Type="Number">206</Data></Cell>
  903. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  904. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">44</Data></Cell>
  905. <Cell ss:StyleID="s71"><Data ss:Type="Number">44</Data></Cell>
  906. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  907. <Cell ss:StyleID="s71"/>
  908. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  909. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  910. <Cell ss:StyleID="s71"><Data ss:Type="Number">5</Data></Cell>
  911. <Cell ss:StyleID="Default"><Data ss:Type="String">暴伤抵御%</Data></Cell>
  912. <Cell ss:StyleID="Default"/>
  913. <Cell ss:StyleID="Default"><Data ss:Type="Number">375</Data></Cell>
  914. <Cell ss:StyleID="Default"><Data ss:Type="Number">375</Data></Cell>
  915. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  916. <Cell ss:StyleID="s85"/>
  917. <Cell ss:StyleID="s85"><Data ss:Type="Number">768</Data></Cell>
  918. <Cell ss:StyleID="s85"><Data ss:Type="Number">768</Data></Cell>
  919. <Cell ss:StyleID="s71"/>
  920. <Cell ss:StyleID="s71"/>
  921. <Cell ss:StyleID="s71"/>
  922. <Cell ss:StyleID="s71"/>
  923. <Cell ss:StyleID="s71"/>
  924. <Cell ss:StyleID="s71"/>
  925. <Cell ss:StyleID="s71"/>
  926. <Cell ss:StyleID="s71"/>
  927. <Cell ss:StyleID="s71"/>
  928. <Cell ss:Index="47" ss:StyleID="s71"/>
  929. <Cell ss:StyleID="s71"/>
  930. <Cell ss:StyleID="s71"/>
  931. <Cell ss:StyleID="s71"/>
  932. <Cell ss:StyleID="s71"/>
  933. <Cell ss:StyleID="s71"/>
  934. <Cell ss:StyleID="s71"/>
  935. <Cell ss:StyleID="s71"/>
  936. <Cell ss:StyleID="s71"/>
  937. <Cell ss:StyleID="s71"/>
  938. <Cell ss:StyleID="s71"/>
  939. <Cell ss:StyleID="s71"/>
  940. <Cell ss:StyleID="s71"/>
  941. <Cell ss:StyleID="s71"/>
  942. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-02</Data></Cell>
  943. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  944. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  945. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  946. <Cell ss:StyleID="s95"
  947. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  948. ss:Type="String"></Data></Cell>
  949. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  950. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  951. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  952. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  953. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  954. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  955. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  956. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  957. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  958. <Cell ss:StyleID="s71"/>
  959. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  960. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  961. <Cell><Data ss:Type="Number">0</Data></Cell>
  962. </Row>
  963. <Row ss:Height="14.25" ss:StyleID="s70">
  964. <Cell ss:Index="2" ss:StyleID="s78"><Data ss:Type="String">南明之刃</Data></Cell>
  965. <Cell ss:StyleID="s71"><Data ss:Type="String">50级苍狼武器</Data></Cell>
  966. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  967. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  968. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u50</Data><NamedCell
  969. ss:Name="_FilterDatabase"/></Cell>
  970. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-1</Data></Cell>
  971. <Cell ss:StyleID="s71"/>
  972. <Cell ss:StyleID="s71"/>
  973. <Cell ss:StyleID="s72"/>
  974. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  975. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  976. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  977. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  978. <Cell ss:StyleID="s71"><Data ss:Type="Number">260</Data></Cell>
  979. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  980. <Cell ss:StyleID="s71"/>
  981. <Cell ss:StyleID="s71"><Data ss:Type="Number">258</Data></Cell>
  982. <Cell ss:StyleID="s71"><Data ss:Type="Number">258</Data></Cell>
  983. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  984. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">54</Data></Cell>
  985. <Cell ss:StyleID="s71"><Data ss:Type="Number">54</Data></Cell>
  986. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  987. <Cell ss:StyleID="s71"/>
  988. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  989. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  990. <Cell ss:StyleID="s71"><Data ss:Type="Number">2</Data></Cell>
  991. <Cell ss:StyleID="Default"><Data ss:Type="String">受到伤害减免%</Data></Cell>
  992. <Cell ss:StyleID="Default"/>
  993. <Cell ss:StyleID="Default"><Data ss:Type="Number">5000</Data></Cell>
  994. <Cell ss:StyleID="Default"><Data ss:Type="Number">5000</Data></Cell>
  995. <Cell ss:StyleID="s85"><Data ss:Type="String">受到伤害减免%</Data></Cell>
  996. <Cell ss:StyleID="s85"/>
  997. <Cell ss:StyleID="s85"><Data ss:Type="Number">5000</Data></Cell>
  998. <Cell ss:StyleID="s85"><Data ss:Type="Number">5000</Data></Cell>
  999. <Cell ss:StyleID="s71"/>
  1000. <Cell ss:StyleID="s71"/>
  1001. <Cell ss:StyleID="s71"/>
  1002. <Cell ss:StyleID="s71"/>
  1003. <Cell ss:StyleID="s71"/>
  1004. <Cell ss:StyleID="s71"/>
  1005. <Cell ss:StyleID="s71"/>
  1006. <Cell ss:StyleID="s71"/>
  1007. <Cell ss:StyleID="s71"/>
  1008. <Cell ss:Index="47" ss:StyleID="s71"/>
  1009. <Cell ss:StyleID="s71"/>
  1010. <Cell ss:StyleID="s71"/>
  1011. <Cell ss:StyleID="s71"/>
  1012. <Cell ss:StyleID="s71"/>
  1013. <Cell ss:StyleID="s71"/>
  1014. <Cell ss:StyleID="s71"/>
  1015. <Cell ss:StyleID="s71"/>
  1016. <Cell ss:StyleID="s71"/>
  1017. <Cell ss:StyleID="s71"/>
  1018. <Cell ss:StyleID="s71"/>
  1019. <Cell ss:StyleID="s71"/>
  1020. <Cell ss:StyleID="s71"/>
  1021. <Cell ss:StyleID="s71"/>
  1022. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-02</Data></Cell>
  1023. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1024. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1025. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1026. <Cell ss:StyleID="s95"
  1027. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1028. ss:Type="String"></Data></Cell>
  1029. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1030. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1031. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1032. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1033. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1034. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1035. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1036. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1037. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1038. <Cell ss:StyleID="s71"/>
  1039. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1040. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1041. <Cell><Data ss:Type="Number">0</Data></Cell>
  1042. </Row>
  1043. <Row ss:Height="14.25" ss:StyleID="s70">
  1044. <Cell ss:Index="2" ss:StyleID="s71"><Data ss:Type="String">纯阳之刃</Data></Cell>
  1045. <Cell ss:StyleID="s71"><Data ss:Type="String">60级苍狼武器</Data></Cell>
  1046. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1047. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1048. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u60</Data><NamedCell
  1049. ss:Name="_FilterDatabase"/></Cell>
  1050. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-60</Data></Cell>
  1051. <Cell ss:StyleID="s71"/>
  1052. <Cell ss:StyleID="s71"/>
  1053. <Cell ss:StyleID="s72"/>
  1054. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1055. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1056. <Cell ss:StyleID="s71"><Data ss:Type="Number">60</Data></Cell>
  1057. <Cell ss:StyleID="s71"><Data ss:Type="Number">60</Data></Cell>
  1058. <Cell ss:StyleID="s71"><Data ss:Type="Number">310</Data></Cell>
  1059. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1060. <Cell ss:StyleID="s71"/>
  1061. <Cell ss:StyleID="s71"><Data ss:Type="Number">323</Data></Cell>
  1062. <Cell ss:StyleID="s71"><Data ss:Type="Number">323</Data></Cell>
  1063. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1064. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">67</Data></Cell>
  1065. <Cell ss:StyleID="s71"><Data ss:Type="Number">67</Data></Cell>
  1066. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1067. <Cell ss:StyleID="s71"/>
  1068. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1069. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1070. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1071. <Cell ss:StyleID="Default"><Data ss:Type="String">受到伤害减免%</Data></Cell>
  1072. <Cell ss:StyleID="Default"/>
  1073. <Cell ss:StyleID="Default"><Data ss:Type="Number">100</Data></Cell>
  1074. <Cell ss:StyleID="Default"><Data ss:Type="Number">100</Data></Cell>
  1075. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1076. <Cell ss:StyleID="s85"/>
  1077. <Cell ss:StyleID="s85"><Data ss:Type="Number">1200</Data></Cell>
  1078. <Cell ss:StyleID="s85"><Data ss:Type="Number">1200</Data></Cell>
  1079. <Cell ss:StyleID="s71"/>
  1080. <Cell ss:StyleID="s71"/>
  1081. <Cell ss:StyleID="s71"/>
  1082. <Cell ss:StyleID="s71"/>
  1083. <Cell ss:StyleID="s71"/>
  1084. <Cell ss:StyleID="s71"/>
  1085. <Cell ss:StyleID="s71"/>
  1086. <Cell ss:StyleID="s71"/>
  1087. <Cell ss:StyleID="s71"/>
  1088. <Cell ss:Index="47" ss:StyleID="s71"/>
  1089. <Cell ss:StyleID="s71"/>
  1090. <Cell ss:StyleID="s71"/>
  1091. <Cell ss:StyleID="s71"/>
  1092. <Cell ss:StyleID="s71"/>
  1093. <Cell ss:StyleID="s71"/>
  1094. <Cell ss:StyleID="s71"/>
  1095. <Cell ss:StyleID="s71"/>
  1096. <Cell ss:StyleID="s71"/>
  1097. <Cell ss:StyleID="s71"/>
  1098. <Cell ss:StyleID="s71"/>
  1099. <Cell ss:StyleID="s71"/>
  1100. <Cell ss:StyleID="s71"/>
  1101. <Cell ss:StyleID="s71"/>
  1102. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-03</Data></Cell>
  1103. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1104. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1105. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1106. <Cell ss:StyleID="s95"
  1107. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1108. ss:Type="String"></Data></Cell>
  1109. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1110. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1111. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1112. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1113. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1114. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1115. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1116. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1117. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1118. <Cell ss:StyleID="s71"/>
  1119. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1120. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1121. <Cell><Data ss:Type="Number">1</Data></Cell>
  1122. </Row>
  1123. <Row ss:Height="14.25" ss:StyleID="s70">
  1124. <Cell ss:Index="2" ss:StyleID="s71"><Data ss:Type="String">贪狼之刃</Data></Cell>
  1125. <Cell ss:StyleID="s71"><Data ss:Type="String">70级苍狼武器</Data></Cell>
  1126. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1127. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1128. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u70</Data><NamedCell
  1129. ss:Name="_FilterDatabase"/></Cell>
  1130. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-70</Data></Cell>
  1131. <Cell ss:StyleID="s71"/>
  1132. <Cell ss:StyleID="s71"/>
  1133. <Cell ss:StyleID="s72"/>
  1134. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1135. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1136. <Cell ss:StyleID="s71"><Data ss:Type="Number">70</Data></Cell>
  1137. <Cell ss:StyleID="s71"><Data ss:Type="Number">70</Data></Cell>
  1138. <Cell ss:StyleID="s71"><Data ss:Type="Number">360</Data></Cell>
  1139. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1140. <Cell ss:StyleID="s71"/>
  1141. <Cell ss:StyleID="s71"><Data ss:Type="Number">403</Data></Cell>
  1142. <Cell ss:StyleID="s71"><Data ss:Type="Number">403</Data></Cell>
  1143. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1144. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">84</Data></Cell>
  1145. <Cell ss:StyleID="s71"><Data ss:Type="Number">84</Data></Cell>
  1146. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1147. <Cell ss:StyleID="s71"/>
  1148. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1149. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1150. <Cell ss:StyleID="s71"><Data ss:Type="Number">2</Data></Cell>
  1151. <Cell ss:StyleID="s66"><Data ss:Type="String">受到伤害减免%</Data></Cell>
  1152. <Cell ss:StyleID="Default"/>
  1153. <Cell ss:StyleID="Default"><Data ss:Type="Number">175</Data></Cell>
  1154. <Cell ss:StyleID="Default"><Data ss:Type="Number">175</Data></Cell>
  1155. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1156. <Cell ss:StyleID="s85"/>
  1157. <Cell ss:StyleID="s85"><Data ss:Type="Number">1500</Data></Cell>
  1158. <Cell ss:StyleID="s85"><Data ss:Type="Number">1500</Data></Cell>
  1159. <Cell ss:StyleID="s71"/>
  1160. <Cell ss:StyleID="s71"/>
  1161. <Cell ss:StyleID="s71"/>
  1162. <Cell ss:StyleID="s71"/>
  1163. <Cell ss:StyleID="s71"/>
  1164. <Cell ss:StyleID="s71"/>
  1165. <Cell ss:StyleID="s71"/>
  1166. <Cell ss:StyleID="s71"/>
  1167. <Cell ss:StyleID="s71"/>
  1168. <Cell ss:Index="47" ss:StyleID="s71"/>
  1169. <Cell ss:StyleID="s71"/>
  1170. <Cell ss:StyleID="s71"/>
  1171. <Cell ss:StyleID="s71"/>
  1172. <Cell ss:StyleID="s71"/>
  1173. <Cell ss:StyleID="s71"/>
  1174. <Cell ss:StyleID="s71"/>
  1175. <Cell ss:StyleID="s71"/>
  1176. <Cell ss:StyleID="s71"/>
  1177. <Cell ss:StyleID="s71"/>
  1178. <Cell ss:StyleID="s71"/>
  1179. <Cell ss:StyleID="s71"/>
  1180. <Cell ss:StyleID="s71"/>
  1181. <Cell ss:StyleID="s71"/>
  1182. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-03</Data></Cell>
  1183. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1184. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1185. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1186. <Cell ss:StyleID="s95"
  1187. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1188. ss:Type="String"></Data></Cell>
  1189. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1190. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1191. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1192. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1193. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1194. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1195. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1196. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1197. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1198. <Cell ss:StyleID="s71"/>
  1199. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1200. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1201. <Cell><Data ss:Type="Number">1</Data></Cell>
  1202. </Row>
  1203. <Row ss:Height="14.25" ss:StyleID="s70">
  1204. <Cell ss:Index="2" ss:StyleID="s79"><Data ss:Type="String">青龙之刃</Data></Cell>
  1205. <Cell ss:StyleID="s71"><Data ss:Type="String">80级苍狼武器</Data></Cell>
  1206. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1207. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1208. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u80</Data><NamedCell
  1209. ss:Name="_FilterDatabase"/></Cell>
  1210. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-80</Data></Cell>
  1211. <Cell ss:StyleID="s71"/>
  1212. <Cell ss:StyleID="s71"/>
  1213. <Cell ss:StyleID="s72"/>
  1214. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1215. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1216. <Cell ss:StyleID="s71"><Data ss:Type="Number">80</Data></Cell>
  1217. <Cell ss:StyleID="s71"><Data ss:Type="Number">80</Data></Cell>
  1218. <Cell ss:StyleID="s71"><Data ss:Type="Number">410</Data></Cell>
  1219. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1220. <Cell ss:StyleID="s71"/>
  1221. <Cell ss:StyleID="s71"><Data ss:Type="Number">504</Data></Cell>
  1222. <Cell ss:StyleID="s71"><Data ss:Type="Number">504</Data></Cell>
  1223. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1224. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">105</Data></Cell>
  1225. <Cell ss:StyleID="s71"><Data ss:Type="Number">105</Data></Cell>
  1226. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1227. <Cell ss:StyleID="s71"/>
  1228. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1229. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1230. <Cell ss:StyleID="s71"><Data ss:Type="Number">3</Data></Cell>
  1231. <Cell ss:StyleID="Default"><Data ss:Type="String">攻击%</Data></Cell>
  1232. <Cell ss:StyleID="Default"/>
  1233. <Cell ss:StyleID="Default"><Data ss:Type="Number">100</Data></Cell>
  1234. <Cell ss:StyleID="Default"><Data ss:Type="Number">100</Data></Cell>
  1235. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1236. <Cell ss:StyleID="s85"/>
  1237. <Cell ss:StyleID="s85"><Data ss:Type="Number">1875</Data></Cell>
  1238. <Cell ss:StyleID="s85"><Data ss:Type="Number">1875</Data></Cell>
  1239. <Cell ss:StyleID="s71"/>
  1240. <Cell ss:StyleID="s71"/>
  1241. <Cell ss:StyleID="s71"/>
  1242. <Cell ss:StyleID="s71"/>
  1243. <Cell ss:StyleID="s71"/>
  1244. <Cell ss:StyleID="s71"/>
  1245. <Cell ss:StyleID="s71"/>
  1246. <Cell ss:StyleID="s71"/>
  1247. <Cell ss:StyleID="s71"/>
  1248. <Cell ss:Index="47" ss:StyleID="s71"/>
  1249. <Cell ss:StyleID="s71"/>
  1250. <Cell ss:StyleID="s71"/>
  1251. <Cell ss:StyleID="s71"/>
  1252. <Cell ss:StyleID="s71"/>
  1253. <Cell ss:StyleID="s71"/>
  1254. <Cell ss:StyleID="s71"/>
  1255. <Cell ss:StyleID="s71"/>
  1256. <Cell ss:StyleID="s71"/>
  1257. <Cell ss:StyleID="s71"/>
  1258. <Cell ss:StyleID="s71"/>
  1259. <Cell ss:StyleID="s71"/>
  1260. <Cell ss:StyleID="s71"/>
  1261. <Cell ss:StyleID="s71"/>
  1262. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-04</Data></Cell>
  1263. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1264. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1265. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1266. <Cell ss:StyleID="s95"
  1267. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1268. ss:Type="String"></Data></Cell>
  1269. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1270. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1271. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1272. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1273. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1274. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1275. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1276. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1277. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1278. <Cell ss:StyleID="s71"/>
  1279. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1280. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1281. <Cell><Data ss:Type="Number">1</Data></Cell>
  1282. </Row>
  1283. <Row ss:Height="14.25" ss:StyleID="s70">
  1284. <Cell ss:Index="2" ss:StyleID="s79"><Data ss:Type="String">魔龙之刃</Data></Cell>
  1285. <Cell ss:StyleID="s71"><Data ss:Type="String">90级苍狼武器</Data></Cell>
  1286. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1287. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1288. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u90</Data><NamedCell
  1289. ss:Name="_FilterDatabase"/></Cell>
  1290. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-90</Data></Cell>
  1291. <Cell ss:StyleID="s71"/>
  1292. <Cell ss:StyleID="s71"/>
  1293. <Cell ss:StyleID="s72"/>
  1294. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1295. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1296. <Cell ss:StyleID="s71"><Data ss:Type="Number">90</Data></Cell>
  1297. <Cell ss:StyleID="s71"><Data ss:Type="Number">90</Data></Cell>
  1298. <Cell ss:StyleID="s71"><Data ss:Type="Number">460</Data></Cell>
  1299. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1300. <Cell ss:StyleID="s71"/>
  1301. <Cell ss:StyleID="s71"><Data ss:Type="Number">631</Data></Cell>
  1302. <Cell ss:StyleID="s71"><Data ss:Type="Number">631</Data></Cell>
  1303. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1304. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">131</Data></Cell>
  1305. <Cell ss:StyleID="s71"><Data ss:Type="Number">131</Data></Cell>
  1306. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1307. <Cell ss:StyleID="s71"/>
  1308. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1309. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1310. <Cell ss:StyleID="s71"><Data ss:Type="Number">4</Data></Cell>
  1311. <Cell ss:StyleID="Default"><Data ss:Type="String">攻击%</Data></Cell>
  1312. <Cell ss:StyleID="Default"/>
  1313. <Cell ss:StyleID="Default"><Data ss:Type="Number">125</Data></Cell>
  1314. <Cell ss:StyleID="Default"><Data ss:Type="Number">125</Data></Cell>
  1315. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1316. <Cell ss:StyleID="s85"/>
  1317. <Cell ss:StyleID="s85"><Data ss:Type="Number">2344</Data></Cell>
  1318. <Cell ss:StyleID="s85"><Data ss:Type="Number">2344</Data></Cell>
  1319. <Cell ss:StyleID="s71"/>
  1320. <Cell ss:StyleID="s71"/>
  1321. <Cell ss:StyleID="s71"/>
  1322. <Cell ss:StyleID="s71"/>
  1323. <Cell ss:StyleID="s71"/>
  1324. <Cell ss:StyleID="s71"/>
  1325. <Cell ss:StyleID="s71"/>
  1326. <Cell ss:StyleID="s71"/>
  1327. <Cell ss:StyleID="s71"/>
  1328. <Cell ss:Index="47" ss:StyleID="s71"/>
  1329. <Cell ss:StyleID="s71"/>
  1330. <Cell ss:StyleID="s71"/>
  1331. <Cell ss:StyleID="s71"/>
  1332. <Cell ss:StyleID="s71"/>
  1333. <Cell ss:StyleID="s71"/>
  1334. <Cell ss:StyleID="s71"/>
  1335. <Cell ss:StyleID="s71"/>
  1336. <Cell ss:StyleID="s71"/>
  1337. <Cell ss:StyleID="s71"/>
  1338. <Cell ss:StyleID="s71"/>
  1339. <Cell ss:StyleID="s71"/>
  1340. <Cell ss:StyleID="s71"/>
  1341. <Cell ss:StyleID="s71"/>
  1342. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-04</Data></Cell>
  1343. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1344. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1345. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1346. <Cell ss:StyleID="s95"
  1347. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1348. ss:Type="String"></Data></Cell>
  1349. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1350. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1351. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1352. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1353. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1354. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1355. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1356. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1357. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1358. <Cell ss:StyleID="s71"/>
  1359. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1360. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1361. <Cell><Data ss:Type="Number">2</Data></Cell>
  1362. </Row>
  1363. <Row ss:Height="14.25" ss:StyleID="s70">
  1364. <Cell ss:Index="2" ss:StyleID="s79"><Data ss:Type="String">炼狱之刃</Data></Cell>
  1365. <Cell ss:StyleID="s71"><Data ss:Type="String">100级苍狼武器</Data></Cell>
  1366. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1367. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1368. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u100</Data><NamedCell
  1369. ss:Name="_FilterDatabase"/></Cell>
  1370. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-100</Data></Cell>
  1371. <Cell ss:StyleID="s71"/>
  1372. <Cell ss:StyleID="s71"/>
  1373. <Cell ss:StyleID="s72"/>
  1374. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1375. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1376. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1377. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1378. <Cell ss:StyleID="s71"><Data ss:Type="Number">510</Data></Cell>
  1379. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1380. <Cell ss:StyleID="s71"/>
  1381. <Cell ss:StyleID="s71"><Data ss:Type="Number">787</Data></Cell>
  1382. <Cell ss:StyleID="s71"><Data ss:Type="Number">787</Data></Cell>
  1383. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1384. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">165</Data></Cell>
  1385. <Cell ss:StyleID="s71"><Data ss:Type="Number">165</Data></Cell>
  1386. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1387. <Cell ss:StyleID="s71"/>
  1388. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1389. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1390. <Cell ss:StyleID="s71"><Data ss:Type="Number">5</Data></Cell>
  1391. <Cell ss:StyleID="Default"><Data ss:Type="String">攻击%</Data></Cell>
  1392. <Cell ss:StyleID="Default"/>
  1393. <Cell ss:StyleID="Default"><Data ss:Type="Number">125</Data></Cell>
  1394. <Cell ss:StyleID="Default"><Data ss:Type="Number">125</Data></Cell>
  1395. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1396. <Cell ss:StyleID="s85"/>
  1397. <Cell ss:StyleID="s85"><Data ss:Type="Number">2930</Data></Cell>
  1398. <Cell ss:StyleID="s85"><Data ss:Type="Number">2930</Data></Cell>
  1399. <Cell ss:StyleID="s71"/>
  1400. <Cell ss:StyleID="s71"/>
  1401. <Cell ss:StyleID="s71"/>
  1402. <Cell ss:StyleID="s71"/>
  1403. <Cell ss:StyleID="s71"/>
  1404. <Cell ss:StyleID="s71"/>
  1405. <Cell ss:StyleID="s71"/>
  1406. <Cell ss:StyleID="s71"/>
  1407. <Cell ss:StyleID="s71"/>
  1408. <Cell ss:Index="47" ss:StyleID="s71"/>
  1409. <Cell ss:StyleID="s71"/>
  1410. <Cell ss:StyleID="s71"/>
  1411. <Cell ss:StyleID="s71"/>
  1412. <Cell ss:StyleID="s71"/>
  1413. <Cell ss:StyleID="s71"/>
  1414. <Cell ss:StyleID="s71"/>
  1415. <Cell ss:StyleID="s71"/>
  1416. <Cell ss:StyleID="s71"/>
  1417. <Cell ss:StyleID="s71"/>
  1418. <Cell ss:StyleID="s71"/>
  1419. <Cell ss:StyleID="s71"/>
  1420. <Cell ss:StyleID="s71"/>
  1421. <Cell ss:StyleID="s71"/>
  1422. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-05</Data></Cell>
  1423. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1424. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1425. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1426. <Cell ss:StyleID="s95"
  1427. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1428. ss:Type="String"></Data></Cell>
  1429. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1430. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1431. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1432. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1433. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1434. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1435. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1436. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1437. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1438. <Cell ss:StyleID="s71"/>
  1439. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1440. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1441. <Cell><Data ss:Type="Number">2</Data></Cell>
  1442. </Row>
  1443. <Row ss:Height="14.25" ss:StyleID="s70">
  1444. <Cell ss:Index="2" ss:StyleID="s79"><Data ss:Type="String">雷霆之刃</Data></Cell>
  1445. <Cell ss:StyleID="s71"><Data ss:Type="String">110级苍狼武器</Data></Cell>
  1446. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1447. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1448. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u110</Data><NamedCell
  1449. ss:Name="_FilterDatabase"/></Cell>
  1450. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-110</Data></Cell>
  1451. <Cell ss:StyleID="s71"/>
  1452. <Cell ss:StyleID="s71"/>
  1453. <Cell ss:StyleID="s72"/>
  1454. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1455. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1456. <Cell ss:StyleID="s71"><Data ss:Type="Number">110</Data></Cell>
  1457. <Cell ss:StyleID="s71"><Data ss:Type="Number">110</Data></Cell>
  1458. <Cell ss:StyleID="s71"><Data ss:Type="Number">560</Data></Cell>
  1459. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1460. <Cell ss:StyleID="s71"/>
  1461. <Cell ss:StyleID="s71"><Data ss:Type="Number">984</Data></Cell>
  1462. <Cell ss:StyleID="s71"><Data ss:Type="Number">984</Data></Cell>
  1463. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1464. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">205</Data></Cell>
  1465. <Cell ss:StyleID="s71"><Data ss:Type="Number">205</Data></Cell>
  1466. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1467. <Cell ss:StyleID="s71"/>
  1468. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1469. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1470. <Cell ss:StyleID="s71"><Data ss:Type="Number">6</Data></Cell>
  1471. <Cell ss:StyleID="s66"><Data ss:Type="String">暴击伤害%</Data></Cell>
  1472. <Cell ss:StyleID="Default"/>
  1473. <Cell ss:StyleID="Default"><Data ss:Type="Number">375</Data></Cell>
  1474. <Cell ss:StyleID="Default"><Data ss:Type="Number">375</Data></Cell>
  1475. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1476. <Cell ss:StyleID="s85"/>
  1477. <Cell ss:StyleID="s85"><Data ss:Type="Number">3662</Data></Cell>
  1478. <Cell ss:StyleID="s85"><Data ss:Type="Number">3662</Data></Cell>
  1479. <Cell ss:StyleID="s71"/>
  1480. <Cell ss:StyleID="s71"/>
  1481. <Cell ss:StyleID="s71"/>
  1482. <Cell ss:StyleID="s71"/>
  1483. <Cell ss:StyleID="s71"/>
  1484. <Cell ss:StyleID="s71"/>
  1485. <Cell ss:StyleID="s71"/>
  1486. <Cell ss:StyleID="s71"/>
  1487. <Cell ss:StyleID="s71"/>
  1488. <Cell ss:Index="47" ss:StyleID="s71"/>
  1489. <Cell ss:StyleID="s71"/>
  1490. <Cell ss:StyleID="s71"/>
  1491. <Cell ss:StyleID="s71"/>
  1492. <Cell ss:StyleID="s71"/>
  1493. <Cell ss:StyleID="s71"/>
  1494. <Cell ss:StyleID="s71"/>
  1495. <Cell ss:StyleID="s71"/>
  1496. <Cell ss:StyleID="s71"/>
  1497. <Cell ss:StyleID="s71"/>
  1498. <Cell ss:StyleID="s71"/>
  1499. <Cell ss:StyleID="s71"/>
  1500. <Cell ss:StyleID="s71"/>
  1501. <Cell ss:StyleID="s71"/>
  1502. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-05</Data></Cell>
  1503. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1504. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1505. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1506. <Cell ss:StyleID="s95"
  1507. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1508. ss:Type="String"></Data></Cell>
  1509. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1510. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1511. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1512. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1513. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1514. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1515. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1516. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1517. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1518. <Cell ss:StyleID="s71"/>
  1519. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1520. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1521. <Cell><Data ss:Type="Number">2</Data></Cell>
  1522. </Row>
  1523. <Row ss:Height="14.25" ss:StyleID="s70">
  1524. <Cell ss:Index="2" ss:StyleID="s79"><Data ss:Type="String">斩天之刃</Data></Cell>
  1525. <Cell ss:StyleID="s71"><Data ss:Type="String">120级苍狼武器</Data></Cell>
  1526. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1527. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1528. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u120</Data><NamedCell
  1529. ss:Name="_FilterDatabase"/></Cell>
  1530. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-120</Data></Cell>
  1531. <Cell ss:StyleID="s71"/>
  1532. <Cell ss:StyleID="s71"/>
  1533. <Cell ss:StyleID="s72"/>
  1534. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1535. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1536. <Cell ss:StyleID="s71"><Data ss:Type="Number">120</Data></Cell>
  1537. <Cell ss:StyleID="s71"><Data ss:Type="Number">120</Data></Cell>
  1538. <Cell ss:StyleID="s71"><Data ss:Type="Number">610</Data></Cell>
  1539. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1540. <Cell ss:StyleID="s71"/>
  1541. <Cell ss:StyleID="s71"><Data ss:Type="Number">1231</Data></Cell>
  1542. <Cell ss:StyleID="s71"><Data ss:Type="Number">1231</Data></Cell>
  1543. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1544. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">256</Data></Cell>
  1545. <Cell ss:StyleID="s71"><Data ss:Type="Number">256</Data></Cell>
  1546. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1547. <Cell ss:StyleID="s71"/>
  1548. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1549. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1550. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1551. <Cell ss:StyleID="Default"><Data ss:Type="String">冷却缩减%</Data></Cell>
  1552. <Cell ss:StyleID="Default"/>
  1553. <Cell ss:StyleID="Default"><Data ss:Type="Number">150</Data></Cell>
  1554. <Cell ss:StyleID="Default"><Data ss:Type="Number">150</Data></Cell>
  1555. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1556. <Cell ss:StyleID="s85"/>
  1557. <Cell ss:StyleID="s85"><Data ss:Type="Number">4578</Data></Cell>
  1558. <Cell ss:StyleID="s85"><Data ss:Type="Number">4578</Data></Cell>
  1559. <Cell ss:StyleID="s71"/>
  1560. <Cell ss:StyleID="s71"/>
  1561. <Cell ss:StyleID="s71"/>
  1562. <Cell ss:StyleID="s71"/>
  1563. <Cell ss:StyleID="s71"/>
  1564. <Cell ss:StyleID="s71"/>
  1565. <Cell ss:StyleID="s71"/>
  1566. <Cell ss:StyleID="s71"/>
  1567. <Cell ss:StyleID="s71"/>
  1568. <Cell ss:Index="47" ss:StyleID="s71"/>
  1569. <Cell ss:StyleID="s71"/>
  1570. <Cell ss:StyleID="s71"/>
  1571. <Cell ss:StyleID="s71"/>
  1572. <Cell ss:StyleID="s71"/>
  1573. <Cell ss:StyleID="s71"/>
  1574. <Cell ss:StyleID="s71"/>
  1575. <Cell ss:StyleID="s71"/>
  1576. <Cell ss:StyleID="s71"/>
  1577. <Cell ss:StyleID="s71"/>
  1578. <Cell ss:StyleID="s71"/>
  1579. <Cell ss:StyleID="s71"/>
  1580. <Cell ss:StyleID="s71"/>
  1581. <Cell ss:StyleID="s71"/>
  1582. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-05</Data></Cell>
  1583. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1584. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1585. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1586. <Cell ss:StyleID="s95"
  1587. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1588. ss:Type="String"></Data></Cell>
  1589. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1590. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1591. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1592. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1593. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1594. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1595. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1596. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1597. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1598. <Cell ss:StyleID="s71"/>
  1599. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1600. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1601. <Cell><Data ss:Type="Number">3</Data></Cell>
  1602. </Row>
  1603. <Row ss:Height="14.25" ss:StyleID="s70">
  1604. <Cell ss:Index="2" ss:StyleID="s79"><Data ss:Type="String">湮灭之刃</Data></Cell>
  1605. <Cell ss:StyleID="s71"><Data ss:Type="String">130级苍狼武器</Data></Cell>
  1606. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1607. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1608. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u130</Data><NamedCell
  1609. ss:Name="_FilterDatabase"/></Cell>
  1610. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-130</Data></Cell>
  1611. <Cell ss:StyleID="s71"/>
  1612. <Cell ss:StyleID="s71"/>
  1613. <Cell ss:StyleID="s72"/>
  1614. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1615. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1616. <Cell ss:StyleID="s71"><Data ss:Type="Number">130</Data></Cell>
  1617. <Cell ss:StyleID="s71"><Data ss:Type="Number">130</Data></Cell>
  1618. <Cell ss:StyleID="s71"><Data ss:Type="Number">660</Data></Cell>
  1619. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1620. <Cell ss:StyleID="s71"/>
  1621. <Cell ss:StyleID="s71"><Data ss:Type="Number">1538</Data></Cell>
  1622. <Cell ss:StyleID="s71"><Data ss:Type="Number">1538</Data></Cell>
  1623. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1624. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">320</Data></Cell>
  1625. <Cell ss:StyleID="s71"><Data ss:Type="Number">320</Data></Cell>
  1626. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1627. <Cell ss:StyleID="s71"/>
  1628. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1629. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1630. <Cell ss:StyleID="s71"><Data ss:Type="Number">2</Data></Cell>
  1631. <Cell ss:StyleID="Default"><Data ss:Type="String">穿透%</Data></Cell>
  1632. <Cell ss:StyleID="Default"/>
  1633. <Cell ss:StyleID="Default"><Data ss:Type="Number">125</Data></Cell>
  1634. <Cell ss:StyleID="Default"><Data ss:Type="Number">125</Data></Cell>
  1635. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1636. <Cell ss:StyleID="s85"/>
  1637. <Cell ss:StyleID="s85"><Data ss:Type="Number">5722</Data></Cell>
  1638. <Cell ss:StyleID="s85"><Data ss:Type="Number">5722</Data></Cell>
  1639. <Cell ss:StyleID="s71"/>
  1640. <Cell ss:StyleID="s71"/>
  1641. <Cell ss:StyleID="s71"/>
  1642. <Cell ss:StyleID="s71"/>
  1643. <Cell ss:StyleID="s71"/>
  1644. <Cell ss:StyleID="s71"/>
  1645. <Cell ss:StyleID="s71"/>
  1646. <Cell ss:StyleID="s71"/>
  1647. <Cell ss:StyleID="s71"/>
  1648. <Cell ss:Index="47" ss:StyleID="s71"/>
  1649. <Cell ss:StyleID="s71"/>
  1650. <Cell ss:StyleID="s71"/>
  1651. <Cell ss:StyleID="s71"/>
  1652. <Cell ss:StyleID="s71"/>
  1653. <Cell ss:StyleID="s71"/>
  1654. <Cell ss:StyleID="s71"/>
  1655. <Cell ss:StyleID="s71"/>
  1656. <Cell ss:StyleID="s71"/>
  1657. <Cell ss:StyleID="s71"/>
  1658. <Cell ss:StyleID="s71"/>
  1659. <Cell ss:StyleID="s71"/>
  1660. <Cell ss:StyleID="s71"/>
  1661. <Cell ss:StyleID="s71"/>
  1662. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-05</Data></Cell>
  1663. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1664. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1665. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1666. <Cell ss:StyleID="s95"
  1667. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1668. ss:Type="String"></Data></Cell>
  1669. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1670. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1671. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1672. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1673. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1674. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1675. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1676. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1677. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1678. <Cell ss:StyleID="s71"/>
  1679. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1680. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1681. <Cell><Data ss:Type="Number">3</Data></Cell>
  1682. </Row>
  1683. <Row ss:Height="14.25" ss:StyleID="s70">
  1684. <Cell ss:Index="2" ss:StyleID="s79"><Data ss:Type="String">地煞之刃</Data></Cell>
  1685. <Cell ss:StyleID="s71"><Data ss:Type="String">140级苍狼武器</Data></Cell>
  1686. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1687. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1688. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u140</Data><NamedCell
  1689. ss:Name="_FilterDatabase"/></Cell>
  1690. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-140</Data></Cell>
  1691. <Cell ss:StyleID="s71"/>
  1692. <Cell ss:StyleID="s71"/>
  1693. <Cell ss:StyleID="s72"/>
  1694. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1695. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1696. <Cell ss:StyleID="s71"><Data ss:Type="Number">140</Data></Cell>
  1697. <Cell ss:StyleID="s71"><Data ss:Type="Number">140</Data></Cell>
  1698. <Cell ss:StyleID="s71"><Data ss:Type="Number">710</Data></Cell>
  1699. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1700. <Cell ss:StyleID="s71"/>
  1701. <Cell ss:StyleID="s71"><Data ss:Type="Number">1923</Data></Cell>
  1702. <Cell ss:StyleID="s71"><Data ss:Type="Number">1923</Data></Cell>
  1703. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1704. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">401</Data></Cell>
  1705. <Cell ss:StyleID="s71"><Data ss:Type="Number">401</Data></Cell>
  1706. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1707. <Cell ss:StyleID="s71"/>
  1708. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1709. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1710. <Cell ss:StyleID="s71"><Data ss:Type="Number">3</Data></Cell>
  1711. <Cell ss:StyleID="Default"><Data ss:Type="String">穿透%</Data></Cell>
  1712. <Cell ss:StyleID="Default"/>
  1713. <Cell ss:StyleID="Default"><Data ss:Type="Number">125</Data></Cell>
  1714. <Cell ss:StyleID="Default"><Data ss:Type="Number">125</Data></Cell>
  1715. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1716. <Cell ss:StyleID="s85"/>
  1717. <Cell ss:StyleID="s85"><Data ss:Type="Number">7153</Data></Cell>
  1718. <Cell ss:StyleID="s85"><Data ss:Type="Number">7153</Data></Cell>
  1719. <Cell ss:StyleID="s71"/>
  1720. <Cell ss:StyleID="s71"/>
  1721. <Cell ss:StyleID="s71"/>
  1722. <Cell ss:StyleID="s71"/>
  1723. <Cell ss:StyleID="s71"/>
  1724. <Cell ss:StyleID="s71"/>
  1725. <Cell ss:StyleID="s71"/>
  1726. <Cell ss:StyleID="s71"/>
  1727. <Cell ss:StyleID="s71"/>
  1728. <Cell ss:Index="47" ss:StyleID="s71"/>
  1729. <Cell ss:StyleID="s71"/>
  1730. <Cell ss:StyleID="s71"/>
  1731. <Cell ss:StyleID="s71"/>
  1732. <Cell ss:StyleID="s71"/>
  1733. <Cell ss:StyleID="s71"/>
  1734. <Cell ss:StyleID="s71"/>
  1735. <Cell ss:StyleID="s71"/>
  1736. <Cell ss:StyleID="s71"/>
  1737. <Cell ss:StyleID="s71"/>
  1738. <Cell ss:StyleID="s71"/>
  1739. <Cell ss:StyleID="s71"/>
  1740. <Cell ss:StyleID="s71"/>
  1741. <Cell ss:StyleID="s71"/>
  1742. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-05</Data></Cell>
  1743. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1744. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1745. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1746. <Cell ss:StyleID="s95"
  1747. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1748. ss:Type="String"></Data></Cell>
  1749. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1750. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1751. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1752. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1753. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1754. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1755. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1756. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1757. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1758. <Cell ss:StyleID="s71"/>
  1759. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1760. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1761. <Cell><Data ss:Type="Number">3</Data></Cell>
  1762. </Row>
  1763. <Row ss:Height="14.25" ss:StyleID="s70">
  1764. <Cell ss:Index="2" ss:StyleID="s79"><Data ss:Type="String">盘古之刃</Data></Cell>
  1765. <Cell ss:StyleID="s71"><Data ss:Type="String">150级苍狼武器</Data></Cell>
  1766. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1767. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1768. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u150</Data><NamedCell
  1769. ss:Name="_FilterDatabase"/></Cell>
  1770. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-150</Data></Cell>
  1771. <Cell ss:StyleID="s71"/>
  1772. <Cell ss:StyleID="s71"/>
  1773. <Cell ss:StyleID="s72"/>
  1774. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1775. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1776. <Cell ss:StyleID="s71"><Data ss:Type="Number">150</Data></Cell>
  1777. <Cell ss:StyleID="s71"><Data ss:Type="Number">150</Data></Cell>
  1778. <Cell ss:StyleID="s71"><Data ss:Type="Number">760</Data></Cell>
  1779. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1780. <Cell ss:StyleID="s71"/>
  1781. <Cell ss:StyleID="s71"><Data ss:Type="Number">2404</Data></Cell>
  1782. <Cell ss:StyleID="s71"><Data ss:Type="Number">2404</Data></Cell>
  1783. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1784. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">501</Data></Cell>
  1785. <Cell ss:StyleID="s71"><Data ss:Type="Number">501</Data></Cell>
  1786. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1787. <Cell ss:StyleID="s71"/>
  1788. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1789. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1790. <Cell ss:StyleID="s71"><Data ss:Type="Number">4</Data></Cell>
  1791. <Cell ss:StyleID="Default"><Data ss:Type="String">所有伤害增加%</Data></Cell>
  1792. <Cell ss:StyleID="Default"/>
  1793. <Cell ss:StyleID="Default"><Data ss:Type="Number">175</Data></Cell>
  1794. <Cell ss:StyleID="Default"><Data ss:Type="Number">175</Data></Cell>
  1795. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1796. <Cell ss:StyleID="s85"/>
  1797. <Cell ss:StyleID="s85"><Data ss:Type="Number">8941</Data></Cell>
  1798. <Cell ss:StyleID="s85"><Data ss:Type="Number">8941</Data></Cell>
  1799. <Cell ss:StyleID="s71"/>
  1800. <Cell ss:StyleID="s71"/>
  1801. <Cell ss:StyleID="s71"/>
  1802. <Cell ss:StyleID="s71"/>
  1803. <Cell ss:StyleID="s71"/>
  1804. <Cell ss:StyleID="s71"/>
  1805. <Cell ss:StyleID="s71"/>
  1806. <Cell ss:StyleID="s71"/>
  1807. <Cell ss:StyleID="s71"/>
  1808. <Cell ss:Index="47" ss:StyleID="s71"/>
  1809. <Cell ss:StyleID="s71"/>
  1810. <Cell ss:StyleID="s71"/>
  1811. <Cell ss:StyleID="s71"/>
  1812. <Cell ss:StyleID="s71"/>
  1813. <Cell ss:StyleID="s71"/>
  1814. <Cell ss:StyleID="s71"/>
  1815. <Cell ss:StyleID="s71"/>
  1816. <Cell ss:StyleID="s71"/>
  1817. <Cell ss:StyleID="s71"/>
  1818. <Cell ss:StyleID="s71"/>
  1819. <Cell ss:StyleID="s71"/>
  1820. <Cell ss:StyleID="s71"/>
  1821. <Cell ss:StyleID="s71"/>
  1822. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-05</Data></Cell>
  1823. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1824. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1825. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1826. <Cell ss:StyleID="s95"
  1827. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1828. ss:Type="String"></Data></Cell>
  1829. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1830. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1831. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1832. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1833. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1834. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1835. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1836. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1837. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1838. <Cell ss:StyleID="s71"/>
  1839. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1840. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1841. <Cell><Data ss:Type="Number">4</Data></Cell>
  1842. </Row>
  1843. <Row ss:Height="14.25" ss:StyleID="s70">
  1844. <Cell ss:Index="2" ss:StyleID="s79"><Data ss:Type="String">裁决之刃</Data></Cell>
  1845. <Cell ss:StyleID="s71"><Data ss:Type="String">160级苍狼武器</Data></Cell>
  1846. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1847. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1848. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u160</Data><NamedCell
  1849. ss:Name="_FilterDatabase"/></Cell>
  1850. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-160</Data></Cell>
  1851. <Cell ss:StyleID="s71"/>
  1852. <Cell ss:StyleID="s71"/>
  1853. <Cell ss:StyleID="s72"/>
  1854. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1855. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1856. <Cell ss:StyleID="s71"><Data ss:Type="Number">160</Data></Cell>
  1857. <Cell ss:StyleID="s71"><Data ss:Type="Number">160</Data></Cell>
  1858. <Cell ss:StyleID="s71"><Data ss:Type="Number">810</Data></Cell>
  1859. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1860. <Cell ss:StyleID="s71"/>
  1861. <Cell ss:StyleID="s71"><Data ss:Type="Number">3005</Data></Cell>
  1862. <Cell ss:StyleID="s71"><Data ss:Type="Number">3005</Data></Cell>
  1863. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1864. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">626</Data></Cell>
  1865. <Cell ss:StyleID="s71"><Data ss:Type="Number">626</Data></Cell>
  1866. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1867. <Cell ss:StyleID="s71"/>
  1868. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1869. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1870. <Cell ss:StyleID="s71"><Data ss:Type="Number">5</Data></Cell>
  1871. <Cell ss:StyleID="Default"><Data ss:Type="String">生命%</Data></Cell>
  1872. <Cell ss:StyleID="Default"/>
  1873. <Cell ss:StyleID="Default"><Data ss:Type="Number">100</Data></Cell>
  1874. <Cell ss:StyleID="Default"><Data ss:Type="Number">100</Data></Cell>
  1875. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1876. <Cell ss:StyleID="s85"/>
  1877. <Cell ss:StyleID="s85"><Data ss:Type="Number">11176</Data></Cell>
  1878. <Cell ss:StyleID="s85"><Data ss:Type="Number">11176</Data></Cell>
  1879. <Cell ss:StyleID="s71"/>
  1880. <Cell ss:StyleID="s71"/>
  1881. <Cell ss:StyleID="s71"/>
  1882. <Cell ss:StyleID="s71"/>
  1883. <Cell ss:StyleID="s71"/>
  1884. <Cell ss:StyleID="s71"/>
  1885. <Cell ss:StyleID="s71"/>
  1886. <Cell ss:StyleID="s71"/>
  1887. <Cell ss:StyleID="s71"/>
  1888. <Cell ss:Index="47" ss:StyleID="s71"/>
  1889. <Cell ss:StyleID="s71"/>
  1890. <Cell ss:StyleID="s71"/>
  1891. <Cell ss:StyleID="s71"/>
  1892. <Cell ss:StyleID="s71"/>
  1893. <Cell ss:StyleID="s71"/>
  1894. <Cell ss:StyleID="s71"/>
  1895. <Cell ss:StyleID="s71"/>
  1896. <Cell ss:StyleID="s71"/>
  1897. <Cell ss:StyleID="s71"/>
  1898. <Cell ss:StyleID="s71"/>
  1899. <Cell ss:StyleID="s71"/>
  1900. <Cell ss:StyleID="s71"/>
  1901. <Cell ss:StyleID="s71"/>
  1902. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-05</Data></Cell>
  1903. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1904. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1905. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1906. <Cell ss:StyleID="s95"
  1907. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1908. ss:Type="String"></Data></Cell>
  1909. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1910. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1911. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1912. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1913. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1914. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1915. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1916. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1917. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1918. <Cell ss:StyleID="s71"/>
  1919. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  1920. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  1921. <Cell><Data ss:Type="Number">4</Data></Cell>
  1922. </Row>
  1923. <Row ss:Height="14.25" ss:StyleID="s70">
  1924. <Cell ss:Index="2" ss:StyleID="s79"><Data ss:Type="String">战神之刃</Data></Cell>
  1925. <Cell ss:StyleID="s71"><Data ss:Type="String">170级苍狼武器</Data></Cell>
  1926. <Cell ss:StyleID="s71"><Data ss:Type="String">苍狼</Data></Cell>
  1927. <Cell ss:StyleID="s71"><Data ss:Type="String">武器</Data></Cell>
  1928. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-u170</Data><NamedCell
  1929. ss:Name="_FilterDatabase"/></Cell>
  1930. <Cell ss:StyleID="s71"><Data ss:Type="String">dweap1-170</Data></Cell>
  1931. <Cell ss:StyleID="s71"/>
  1932. <Cell ss:StyleID="s71"/>
  1933. <Cell ss:StyleID="s72"/>
  1934. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1935. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1936. <Cell ss:StyleID="s71"><Data ss:Type="Number">170</Data></Cell>
  1937. <Cell ss:StyleID="s71"><Data ss:Type="Number">170</Data></Cell>
  1938. <Cell ss:StyleID="s71"><Data ss:Type="Number">860</Data></Cell>
  1939. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1940. <Cell ss:StyleID="s71"/>
  1941. <Cell ss:StyleID="s71"><Data ss:Type="Number">3755</Data></Cell>
  1942. <Cell ss:StyleID="s71"><Data ss:Type="Number">3755</Data></Cell>
  1943. <Cell ss:StyleID="s71"><Data ss:Type="String">攻击</Data></Cell>
  1944. <Cell ss:Index="22" ss:StyleID="s71"><Data ss:Type="Number">783</Data></Cell>
  1945. <Cell ss:StyleID="s71"><Data ss:Type="Number">783</Data></Cell>
  1946. <Cell ss:StyleID="s71"><Data ss:Type="String">暴击率</Data></Cell>
  1947. <Cell ss:StyleID="s71"/>
  1948. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1949. <Cell ss:StyleID="s71"><Data ss:Type="Number">200</Data></Cell>
  1950. <Cell ss:StyleID="s71"><Data ss:Type="Number">6</Data></Cell>
  1951. <Cell ss:StyleID="Default"><Data ss:Type="String">韧性%</Data></Cell>
  1952. <Cell ss:StyleID="Default"/>
  1953. <Cell ss:StyleID="Default"><Data ss:Type="Number">200</Data></Cell>
  1954. <Cell ss:StyleID="Default"><Data ss:Type="Number">200</Data></Cell>
  1955. <Cell ss:StyleID="s85"><Data ss:Type="String">生命</Data></Cell>
  1956. <Cell ss:StyleID="s85"/>
  1957. <Cell ss:StyleID="s85"><Data ss:Type="Number">13970</Data></Cell>
  1958. <Cell ss:StyleID="s85"><Data ss:Type="Number">13970</Data></Cell>
  1959. <Cell ss:StyleID="s71"/>
  1960. <Cell ss:StyleID="s71"/>
  1961. <Cell ss:StyleID="s71"/>
  1962. <Cell ss:StyleID="s71"/>
  1963. <Cell ss:StyleID="s71"/>
  1964. <Cell ss:StyleID="s71"/>
  1965. <Cell ss:StyleID="s71"/>
  1966. <Cell ss:StyleID="s71"/>
  1967. <Cell ss:StyleID="s71"/>
  1968. <Cell ss:Index="47" ss:StyleID="s71"/>
  1969. <Cell ss:StyleID="s71"/>
  1970. <Cell ss:StyleID="s71"/>
  1971. <Cell ss:StyleID="s71"/>
  1972. <Cell ss:StyleID="s71"/>
  1973. <Cell ss:StyleID="s71"/>
  1974. <Cell ss:StyleID="s71"/>
  1975. <Cell ss:StyleID="s71"/>
  1976. <Cell ss:StyleID="s71"/>
  1977. <Cell ss:StyleID="s71"/>
  1978. <Cell ss:StyleID="s71"/>
  1979. <Cell ss:StyleID="s71"/>
  1980. <Cell ss:StyleID="s71"/>
  1981. <Cell ss:StyleID="s71"/>
  1982. <Cell ss:StyleID="s71"><Data ss:Type="String">swd1-05</Data></Cell>
  1983. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1984. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1985. <Cell ss:StyleID="s90"><Data ss:Type="Number">2</Data></Cell>
  1986. <Cell ss:StyleID="s95"
  1987. ss:Formula="=IF(RC[-1]=1,IF(AND(RC[3]=1,RC[4]=1,RC[6]=1,RC[7]=1),&quot;正确&quot;,&quot;异常&quot;),&quot;&quot;)"><Data
  1988. ss:Type="String"></Data></Cell>
  1989. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1990. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1991. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1992. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1993. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1994. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1995. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1996. <Cell ss:StyleID="s71"><Data ss:Type="Number">0</Data></Cell>
  1997. <Cell ss:StyleID="s71"><Data ss:Type="Number">1</Data></Cell>
  1998. <Cell ss:StyleID="s71"/>
  1999. <Cell ss:StyleID="s71"><Data ss:Type="Number">50</Data></Cell>
  2000. <Cell ss:StyleID="s71"><Data ss:Type="Number">100</Data></Cell>
  2001. <Cell><Data ss:Type="Number">4</Data></Cell>
  2002. </Row>
  2003. </Table>
  2004. </Worksheet>
  2005. <Worksheet ss:Name="Remark">
  2006. <Table ss:ExpandedColumnCount="2" ss:ExpandedRowCount="12" x:FullColumns="1"
  2007. x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="14.25">
  2008. <Row ss:Index="6">
  2009. <Cell ss:Index="2" ss:StyleID="s65"><Data ss:Type="String">特别说明</Data></Cell>
  2010. </Row>
  2011. <Row>
  2012. <Cell ss:Index="2" ss:StyleID="s66"><ss:Data ss:Type="String"
  2013. xmlns="http://www.w3.org/TR/REC-html40">1、Unique定义:独有的,固定的。</ss:Data></Cell>
  2014. </Row>
  2015. <Row>
  2016. <Cell ss:StyleID="s66"/>
  2017. <Cell ss:StyleID="s66"><Data ss:Type="String">2、这里的装备主要用于不经过TC掉落随机,采用Code方式直接产出,所有属性(基础、扩展、独有)全都固定,不可随机</Data></Cell>
  2018. </Row>
  2019. <Row>
  2020. <Cell ss:StyleID="s66"/>
  2021. <Cell ss:StyleID="s66"><Data ss:Type="String">3、在任务奖励、无差别给玩家装备时,才可采用本表定义的装备</Data></Cell>
  2022. </Row>
  2023. <Row>
  2024. <Cell ss:Index="2" ss:StyleID="s66"><Data ss:Type="String">4、独有装备仍然可以被洗练、精炼和重铸,根据字段BaseCode获取对应的基类装备的对应算法。比如Code为【dweap1-u1】的装备,其基类装备代码BaseCode为【dweap1-1】,当对前者进行洗练、精炼、重铸时,采用和后者一样的算法。</Data></Cell>
  2025. </Row>
  2026. <Row>
  2027. <Cell ss:Index="2" ss:StyleID="s66"><Data ss:Type="String">5、独有装备没有以下字段:【稀有度、TC等级、随机属性来源、随机属性数量】,因为不需要随机。</Data></Cell>
  2028. </Row>
  2029. <Row>
  2030. <Cell ss:Index="2" ss:StyleID="s66"><Data ss:Type="String">6、独有装备的扩展属性已经在脚本内固定,因此无需按照词缀算法随机生成。</Data></Cell>
  2031. </Row>
  2032. </Table>
  2033. </Worksheet>
  2034. </Workbook>