You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

script-skill-parser.js 120 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324
  1. let merge_skill = false;
  2. const Attributes = {
  3. /*0: "Fire",
  4. 1: "Water",
  5. 2: "Wood",
  6. 3: "Light",
  7. 4: "Dark",
  8. 5: "Heart",
  9. 6: "Jammer",
  10. 7: "Poison",
  11. 8: "MPoison",
  12. 9: "Bomb",*/
  13. Fire: 0,
  14. Water: 1,
  15. Wood: 2,
  16. Light: 3,
  17. Dark: 4,
  18. Heart: 5,
  19. Jammer: 6,
  20. Poison: 7,
  21. MPoison: 8,
  22. Bomb: 9,
  23. }
  24. for (let name in Attributes)
  25. {
  26. Attributes[Attributes[name]] = name;
  27. }
  28. Attributes.all = function () {
  29. return [
  30. this.Fire,
  31. this.Water,
  32. this.Wood,
  33. this.Light,
  34. this.Dark
  35. ];
  36. }
  37. Attributes._6color = function () {
  38. return [
  39. this.Fire,
  40. this.Water,
  41. this.Wood,
  42. this.Light,
  43. this.Dark,
  44. this.Heart
  45. ];
  46. }
  47. Attributes.orbs = function () {
  48. return [
  49. this.Fire,
  50. this.Water,
  51. this.Wood,
  52. this.Light,
  53. this.Dark,
  54. this.Heart,
  55. this.Jammer,
  56. this.Poison,
  57. this.MPoison,
  58. this.Bomb,
  59. ];
  60. }
  61. //代码来自于 https://www.jianshu.com/p/3644833bca33
  62. function isEqual(obj1,obj2) {
  63. //判断是否是对象或数组
  64. function isObject(obj) {
  65. return typeof obj === 'object' && obj !== null;
  66. }
  67. // 两个数据有任何一个不是对象或数组
  68. if (!isObject(obj1) || !isObject(obj2)) {
  69. // 值类型(注意:参与equal的一般不会是函数)
  70. return obj1 === obj2;
  71. }
  72. // 如果传的两个参数都是同一个对象或数组
  73. if (obj1 === obj2) {
  74. return true;
  75. }
  76. // 两个都是对象或数组,而且不相等
  77. // 1.先比较obj1和obj2的key的个数,是否一样
  78. const obj1Keys = Object.keys(obj1);
  79. const obj2Keys = Object.keys(obj2);
  80. if (obj1Keys.length !== obj2Keys.length) {
  81. return false;
  82. }
  83. // 如果key的个数相等,就是第二步
  84. // 2.以obj1为基准,和obj2依次递归比较
  85. for (let key in obj1) {
  86. // 比较当前key的value --- 递归
  87. const res = isEqual(obj1[key], obj2[key]);
  88. if (!res) {
  89. return false;
  90. }
  91. }
  92. // 3.全相等
  93. return true
  94. }
  95. class Orb
  96. {
  97. attr = null;
  98. //states = {
  99. // enhanced: false, //强化
  100. // locked: false, //锁定
  101. // unmatchable: false, //禁止消除
  102. //}
  103. states = new Set();
  104. constructor(attr = null)
  105. {
  106. this.attr = attr;
  107. }
  108. valueOf() {
  109. return this.attr;
  110. }
  111. }
  112. class Block
  113. {
  114. //states = {
  115. // cloud: false, //云
  116. // roulette: false, //轮盘变化
  117. //}
  118. states = new Set();
  119. }
  120. class BoardSet
  121. {
  122. boards = [];
  123. boardsLabel = [];
  124. node = (()=>{
  125. const div = document.createElement("div");
  126. div.className = "board-set";
  127. return div;
  128. })();
  129. constructor(...boards) {
  130. const boardSet = this;
  131. const switchFunction = function(event){ //在65、76、54之间循环切换
  132. if (event.ctrlKey) {
  133. boardSet.boards.forEach(board=>board.tableNode.classList.remove(className_displayNone));
  134. return;
  135. }
  136. let showIdx = boardSet.boards.findIndex(board=>!board.tableNode.classList.contains(className_displayNone));
  137. if (showIdx < 0 || showIdx >= (boardSet.boards.length - 1)) showIdx = 0;
  138. else showIdx++;
  139. for (let i=0;i<boardSet.boards.length;i++) {
  140. boardSet.boards[i].tableNode.classList.toggle(className_displayNone, i !== showIdx);
  141. }
  142. }
  143. this.boards.push(...(boards.filter(board=>board instanceof Board)));
  144. this.boards.forEach((board, idx)=>{
  145. this.node.appendChild(board.tableNode);
  146. const span = document.createElement("span");
  147. span.dataset.columnCount = board.columnCount;
  148. span.dataset.rowCount = board.rowCount;
  149. span.onclick = switchFunction;
  150. this.boardsLabel.push(span);
  151. this.node.appendChild(span);
  152. if (idx > 0) {
  153. board.tableNode.classList.add(className_displayNone);
  154. }
  155. });
  156. }
  157. valueOf() {
  158. return this.node;
  159. }
  160. }
  161. class Board
  162. {
  163. rowCount = 0;
  164. columnCount = 0;
  165. orbsData = [];
  166. blocksData = [];
  167. tableNode = document.createElement("table");
  168. constructor(def = null, columnCount = 6, rowCount = 5)
  169. {
  170. const intAttr = typeof(def) == "number" ? def : void(0);
  171. this.rowCount = Number(rowCount);
  172. this.columnCount = Number(columnCount);
  173. this.orbsData = new Array(this.rowCount);
  174. this.blocksData = new Array(this.rowCount);
  175. for (let ri=0; ri<this.rowCount; ri++)
  176. {
  177. const orbCol = new Array(this.columnCount), blockCol = new Array(this.columnCount);
  178. for (let ci=0; ci<this.columnCount; ci++)
  179. {
  180. orbCol[ci] = new Orb(intAttr);
  181. blockCol[ci] = new Block();
  182. }
  183. this.orbsData[ri] = orbCol;
  184. this.blocksData[ri] = blockCol;
  185. }
  186. //如果传入的是数组,直接随机分布
  187. if (Array.isArray(def))
  188. {
  189. this.randomFill(def);
  190. }
  191. const table = this.tableNode;
  192. table.boardData = this;
  193. table.className = "board";
  194. for (let ri=0; ri<this.rowCount; ri++)
  195. {
  196. const row = table.insertRow();
  197. for (let ci=0; ci<this.columnCount; ci++)
  198. {
  199. const cell = row.insertCell();
  200. cell.className = "block";
  201. const orbIcon = cell.appendChild(document.createElement('icon'));
  202. orbIcon.className = "orb";
  203. }
  204. }
  205. }
  206. //获取指定行号
  207. getTargetRowIndex(rowIndex)
  208. {
  209. switch (this.rowCount) {
  210. case 6: return rowIndex >= 2 ? rowIndex + 1 : rowIndex;
  211. case 4: return rowIndex >= 3 ? rowIndex - 1 : rowIndex;
  212. case 5: default: return rowIndex;
  213. }
  214. }
  215. //获取指定列号
  216. getTargetColumnIndex(columnIndex)
  217. {
  218. switch (this.columnCount) {
  219. case 7: return columnIndex >= 3 ? columnIndex + 1 : columnIndex;
  220. case 5: return columnIndex >= 4 ? columnIndex - 1 : columnIndex;
  221. case 6: default: return columnIndex;
  222. }
  223. }
  224. setOrbAndBlock(orb, block, attr, state, blockState)
  225. {
  226. if (orb instanceof Orb) {
  227. if (typeof(attr) == 'number' && !orb.states.has('locked'))
  228. orb.attr = attr;
  229. if (typeof(state) == 'string')
  230. orb.states.add(state);
  231. }
  232. if (block instanceof Block && typeof(blockState) == 'string')
  233. block.states.add(blockState);
  234. }
  235. //设定横行
  236. setRows(rows, attr, state, blockState)
  237. {
  238. for (let ri of rows)
  239. {
  240. ri = this.getTargetRowIndex(ri);
  241. const orbsRow = this.orbsData[ri], blocksRow = this.blocksData[ri];
  242. for (let ci=0; ci<this.columnCount; ci++)
  243. {
  244. this.setOrbAndBlock(orbsRow[ci], blocksRow[ci], attr, state, blockState);
  245. }
  246. }
  247. }
  248. //设定竖列
  249. setColumns(cols, attr, state, blockState)
  250. {
  251. for (let ci of cols)
  252. {
  253. ci = this.getTargetColumnIndex(ci);
  254. for (let ri=0; ri<this.rowCount; ri++)
  255. {
  256. const orbsRow = this.orbsData[ri], blocksRow = this.blocksData[ri];
  257. this.setOrbAndBlock(orbsRow[ci], blocksRow[ci], attr, state, blockState);
  258. if (blockState == 'immobility') { //如果是封条,额外添加需要旋转的信息
  259. this.setOrbAndBlock(orbsRow[ci], blocksRow[ci], attr, state, 'rotate');
  260. }
  261. }
  262. }
  263. }
  264. //设定形状
  265. setShape(matrix, attr, state, blockState)
  266. {
  267. const setOrb = typeof(state) == 'number';
  268. function fillRow(ri, inputRow)
  269. {
  270. const orbsRow = this.orbsData[ri], blocksRow = this.blocksData[ri];
  271. for (let ci of inputRow)
  272. {
  273. ci = this.getTargetColumnIndex(ci);
  274. if (this.columnCount >= 7 && ci == 4)
  275. {
  276. this.setOrbAndBlock(orbsRow[ci - 1], blocksRow[ci - 1], attr, state, blockState);
  277. }
  278. this.setOrbAndBlock(orbsRow[ci], blocksRow[ci], attr, state, blockState);
  279. }
  280. }
  281. for (let i=0; i<matrix.length; i++)
  282. {
  283. let ri = this.getTargetRowIndex(i);
  284. if (this.rowCount >= 6 && ri == 3)
  285. {
  286. fillRow.call(this, ri - 1, matrix[i]);
  287. }
  288. fillRow.call(this, ri, matrix[i]);
  289. }
  290. }
  291. //洗版的填充
  292. randomFill(attrs)
  293. {
  294. if (!Array.isArray(attrs) && typeof(attrs) == 'number')
  295. attrs = [attrs];
  296. //获得随机排列的数据
  297. let attrArray = new Array(this.rowCount * this.columnCount);
  298. //每种颜色至少3个
  299. for (let i=0; i<attrs.length; i++) {
  300. attrArray.fill(attrs[i], i * 3, (i + 1) * 3);
  301. }
  302. //随机填充剩下的
  303. for (let i=attrs.length*3; i<attrArray.length; i++) {
  304. attrArray[i] = attrs.length == 1 ?
  305. attrs[0] :
  306. attrs[Math.floor(Math.random() * attrs.length)];
  307. }
  308. attrArray.shuffle(); //整体随机分布一次
  309. const flatOrbsData = this.orbsData.flat();
  310. flatOrbsData.forEach((orb, idx)=>{
  311. if (!orb.states.has('locked'))
  312. orb.attr = attrArray[idx];
  313. });
  314. }
  315. //生成珠子的填充
  316. generateOrbs(attrs, count, exclude, state)
  317. {
  318. if (!Array.isArray(attrs) && typeof(attrs) == 'number')
  319. attrs = [attrs];
  320. if (!Array.isArray(exclude) && typeof(exclude) == 'number')
  321. exclude = [exclude];
  322. let flatOrbsData = this.orbsData.flat()
  323. if (exclude?.length) flatOrbsData = flatOrbsData.filter(orb=>!exclude.includes(orb.attr));
  324. flatOrbsData.shuffle(); //将所有排除的格子打乱
  325. if (!state) { //未输入状态时,为产生珠子
  326. const attrArray = attrs?.length ? attrs.map(attr=>new Array(count).fill(attr)).flat() : [];
  327. //有属性时,使用产生珠子的长度;如果没有属性时,就保留1个长度,用来添加状态;但是都不能大于排除的宝珠数。
  328. const maxLength = Math.min(attrArray.length, flatOrbsData.length);
  329. //直接填充
  330. for (let i=0; i<maxLength; i++) {
  331. this.setOrbAndBlock(flatOrbsData[i], null, attrArray[i]);
  332. }
  333. } else {
  334. //在板面上查询符合的颜色
  335. flatOrbsData = flatOrbsData.filter(orb=>attrs.includes(orb.attr));
  336. const maxLength = Math.min(count, flatOrbsData.length);
  337. for (let i=0; i<maxLength; i++) {
  338. this.setOrbAndBlock(flatOrbsData[i], null, null, state);
  339. }
  340. }
  341. }
  342. //生成板面状态
  343. generateBlockStates(blockState, count = 1, size = [1,1], position = [0, 0])
  344. {
  345. for (let i=0; i<count; i++) {
  346. let [width, height] = size, [x, y] = position;
  347. if (!x) x = Math.randomInteger(this.columnCount - width); else x--;
  348. if (!y) y = Math.randomInteger(this.rowCount - height); else y--;
  349. for (let hi=0; hi<height; hi++) {
  350. for (let wi=0; wi<width; wi++) {
  351. this.setOrbAndBlock(null, this.blocksData[y+hi][x+wi], null, null, blockState);
  352. }
  353. }
  354. }
  355. }
  356. //导出数组
  357. valueOf()
  358. {
  359. return this.orbsData;
  360. }
  361. //输出表格
  362. refreshTable()
  363. {
  364. const table = this.tableNode;
  365. table.dataset.rowCount = this.rowCount;
  366. table.dataset.columnCount = this.columnCount;
  367. for (let ri=0; ri<this.rowCount; ri++)
  368. {
  369. const orbsRow = this.orbsData[ri], blocksRow = this.blocksData[ri];
  370. const row = table.rows[ri];
  371. for (let ci=0; ci<this.columnCount; ci++)
  372. {
  373. const cell = row.cells[ci], orbIcon = cell.querySelector("icon");
  374. const orbObj = orbsRow[ci], blockObj = blocksRow[ci];
  375. if (orbObj.attr != null)
  376. orbIcon.setAttribute("data-orb-icon", orbObj.attr);
  377. else
  378. orbIcon.removeAttribute("data-orb-icon");
  379. orbIcon.classList.add(...orbObj.states);
  380. cell.classList.add(...blockObj.states);
  381. }
  382. }
  383. return table;
  384. }
  385. }
  386. const SkillValue = {
  387. isLess: function (value) {
  388. if (value.kind === SkillValueKind.Percent) return value.value < 1;
  389. if (value.kind === SkillValueKind.Constant) return value.value < 0;
  390. return false;
  391. }
  392. };
  393. const SkillValueKind = {
  394. Percent: 'mul',
  395. Constant: 'const',
  396. ConstantTo: 'const-to',
  397. xMaxHP: 'mul-maxhp',
  398. xHP: 'mul-hp',
  399. xCHP: 'mul-chp',
  400. xATK: 'mul-atk',
  401. xRCV: 'mul-rcv',
  402. RandomATK: 'random-atk',
  403. HPScale: 'hp-scale',
  404. xTeamHP: 'mul-team-hp',
  405. xTeamATK: 'mul-team-atk',
  406. xTeamRCV: 'mul-team-rcv',
  407. xAwakenings: 'mul-awakenings',
  408. };
  409. const SkillPowerUpKind = {
  410. Multiplier: 'mul',
  411. ScaleAttributes: 'scale-attrs',
  412. ScaleCombos: 'scale-combos',
  413. ScaleMatchLength: 'scale-match-len',
  414. ScaleMatchAttrs: 'scale-match-attrs',
  415. ScaleCross: 'scale-cross',
  416. ScaleRemainOrbs: 'scale-remain-orbs',
  417. ScaleStateKind: 'scale-state-kind',
  418. };
  419. const SkillKinds = {
  420. Error: "error",
  421. Unknown: "unknown",
  422. ActiveTurns: "active-turns",
  423. DelayActiveTurns: "delay-active-turns",
  424. DamageEnemy: "damage-enemy",
  425. Vampire: "vampire",
  426. ReduceDamage: "reduce-damage",
  427. SelfHarm: "self-harm",
  428. Heal: "heal",
  429. AutoHealBuff: "auto-heal-buff",
  430. ChangeOrbs: "change-orbs",
  431. GenerateOrbs: "generate-orbs",
  432. FixedOrbs: "fixed-orbs",
  433. PowerUp: "power-up",
  434. CounterAttack: "counter-attack",
  435. SetOrbState: "set-orb-state",
  436. RateMultiply: "rate-mul",
  437. OrbDropIncrease: "orb-drop-incr",
  438. Resolve: "resolve",
  439. Delay: "delay",
  440. DefenseBreak: "def-break",
  441. MassAttack: "mass-attack",
  442. BoardChange: "board-change",
  443. Unbind: "unbind",
  444. BindSkill: "bind-skill",
  445. RandomSkills: "random-skills",
  446. EvolvedSkills: "evolved-skills",
  447. SkillProviso: "skill-proviso",
  448. ChangeAttribute: "change-attr",
  449. SkillBoost: "skill-boost",
  450. AddCombo: "add-combo",
  451. VoidEnemyBuff: "void-enemy-buff",
  452. Poison: "poison",
  453. CTW: "ctw",
  454. Gravity: "gravity",
  455. FollowAttack: "follow-attack",
  456. FollowAttackFixed: "follow-attack-fixed",
  457. AutoHeal: "auto-heal",
  458. TimeExtend: "time-extend",
  459. DropRefresh: "drop-refresh",
  460. LeaderChange: "leader-change",
  461. MinMatchLength: "min-match-len",
  462. FixedTime: "fixed-time",
  463. Drum: "drum",
  464. AutoPath: "auto-path",
  465. BoardSizeChange: "board-size-change",
  466. NoSkyfall: "no-skyfall",
  467. Henshin: "henshin",
  468. VoidPoison: "void-poison",
  469. SkillProviso: "skill-proviso",
  470. ImpartAwakenings: "impart-awakenings",
  471. ObstructOpponent: "obstruct-opponent",
  472. IncreaseDamageCap: "increase-damage-cap",
  473. BoardJammingStates: "board-jamming-states",
  474. }
  475. function skillParser(skillId)
  476. {
  477. function merge(skills)
  478. {
  479. //主动技部分的合并
  480. let activeTurns = skills.filter(skill=>skill.kind == SkillKinds.ActiveTurns);
  481. if (activeTurns.length>1)
  482. { //把后面的全都合并到第一个
  483. //按回合数拆分组
  484. let diffTurnsGroup = activeTurns.groupBy((a,b)=>a.turns === b.turns);
  485. let diffTurnsSkills = diffTurnsGroup.flatMap(group=>{
  486. if (group.length>1) { //大于一个技能的可以合并
  487. group[0].skills = group.flatMap(s=>s.skills);
  488. // group.reduce((pre,cur)=>{
  489. // pre.skills.push(...cur.skills);
  490. // return pre
  491. // });
  492. let firstSkill = group.shift(); //从筛选中去除第一个
  493. group.forEach(skill=>skills.splice(skills.indexOf(skill),1)); //去掉所有后面的
  494. return [firstSkill];
  495. } else { //1个技能的跳过
  496. return group[0];
  497. }
  498. });
  499. //进行具体技能效果的合并
  500. diffTurnsSkills.forEach(turnsSkill=>{
  501. //破吸部分的合并
  502. let voidBuff = turnsSkill.skills.filter(skill=>skill.kind == SkillKinds.VoidEnemyBuff);
  503. if (voidBuff.length>1)
  504. { //把后面的全都合并到第一个
  505. voidBuff[0].buffs = voidBuff.flatMap(s=>s.buffs);
  506. voidBuff.shift(); //从筛选中去除第一个
  507. voidBuff.forEach(skill=>turnsSkill.skills.splice(turnsSkill.skills.indexOf(skill),1)); //去掉所有后面的
  508. }
  509. });
  510. }
  511. //解封部分的合并
  512. let unbinds = skills.filter(skill=>skill.kind == SkillKinds.Unbind);
  513. if (unbinds.length>1)
  514. { //把后面的全都合并到第一个
  515. unbinds.reduce((pre,cur)=>{
  516. pre.normal = pre.normal || cur.normal;
  517. pre.awakenings = pre.awakenings || cur.awakenings;
  518. pre.matches = pre.matches || cur.matches;
  519. return pre
  520. });
  521. unbinds.shift(); //从筛选中去除第一个
  522. unbinds.forEach(skill=>skills.splice(skills.indexOf(skill),1)); //去掉所有后面的
  523. }
  524. let fixedDamages = skills.filter(skill=>skill.kind == SkillKinds.DamageEnemy && skill.attr === 'fixed').filter((skill,idx,arr)=>skill.id==arr[0].id);
  525. if (fixedDamages.length>1)
  526. { //把后面的全都合并到第一个
  527. fixedDamages[0].times = fixedDamages.length;
  528. fixedDamages.shift(); //从筛选中去除第一个
  529. fixedDamages.forEach(skill=>skills.splice(skills.indexOf(skill),1)); //去掉所有后面的
  530. }
  531. let skillPowerUp = skills.filter(skill=>skill.kind == SkillKinds.PowerUp);
  532. if (skillPowerUp.length > 1 || (skillPowerUp[0] && skillPowerUp[0]?.value?.kind === SkillPowerUpKind.ScaleCross))
  533. {
  534. //合并技能效果
  535. function combinePowerUp(target, source) {
  536. if (source?.additional.length)
  537. {
  538. if (!Array.isArray(target.additional)) target.additional = [];
  539. target.additional.push(...source.additional);
  540. }
  541. if (source.reduceDamage != undefined)
  542. {
  543. if (!target.reduceDamage)
  544. target.reduceDamage = source.reduceDamage;
  545. else if (target.reduceDamage.kind === source.reduceDamage.kind)
  546. target.reduceDamage.value *= source.reduceDamage.value;
  547. }
  548. if (target?.value.baseAtk != undefined && source?.value.baseAtk) target.value.baseAtk *= source.value.baseAtk;
  549. if (target?.value.baseRcv != undefined && source?.value.baseRcv != undefined) target.value.baseRcv *= source.value.baseRcv;
  550. if (target?.value.bonusAtk != undefined && source?.value.bonusAtk != undefined) target.value.bonusAtk += source.value.bonusAtk;
  551. if (target?.value.bonusRcv != undefined && source?.value.bonusRcv != undefined) target.value.bonusRcv += source.value.bonusRcv;
  552. if (target?.value.atk != undefined && source?.value.atk != undefined) target.value.atk *= source.value.atk;
  553. if (target?.value.hp != undefined && source?.value.hp != undefined) target.value.hp *= source.value.hp;
  554. if (target?.value.rcv != undefined && source?.value.rcv != undefined) target.value.rcv *= source.value.rcv;
  555. }
  556. //十字
  557. let scaleCross = skillPowerUp.filter(skill=>skill.value.kind === SkillPowerUpKind.ScaleCross);
  558. function mergeScaleCrossAttr(skill)
  559. {
  560. let crosses = skill.value.crosses;
  561. let atk = crosses[0].atk;
  562. let rcv = crosses[0].rcv;
  563. if (crosses.length >= 2 &&
  564. crosses.every(cross=>cross.atk === atk && cross.rcv === rcv)
  565. ) {
  566. crosses[0].attr = Array.from(new Set(crosses.reduce((pre,cur)=>{
  567. pre.push(...cur.attr);
  568. return pre;
  569. }, [])));
  570. skill.value.crosses.splice(1);
  571. }
  572. }
  573. //每个十字技能,先把所有属性合并到自身
  574. scaleCross.forEach(mergeScaleCrossAttr);
  575. //筛选出所有倍率一样的子技能
  576. scaleCross = scaleCross.filter((skill,idx,arr)=>{
  577. let atk = arr[0].value.crosses[0].atk;
  578. let rcv = arr[0].value.crosses[0].rcv;
  579. let crosses = skill.value.crosses;
  580. return crosses.every(cross=>cross.atk === atk && cross.rcv === rcv);
  581. });
  582. //先合并属性倍率
  583. if (scaleCross.length >= 1)
  584. { //把后面的全都合并到第一个
  585. scaleCross.reduce((pre,cur)=>{
  586. combinePowerUp(pre,cur);
  587. pre.value.crosses = pre.value.crosses.concat(cur.value.crosses);
  588. return pre
  589. });
  590. let _skill = scaleCross.shift(); //从筛选中去除第一个
  591. scaleCross.forEach(skill=>skills.splice(skills.indexOf(skill),1)); //去掉所有后面的
  592. mergeScaleCrossAttr(_skill);
  593. }
  594. //重新找出来十字,合并附加内容
  595. scaleCross = skills.filter(skill=>skill.kind == SkillKinds.PowerUp && skill.value.kind === SkillPowerUpKind.ScaleCross);
  596. scaleCross = scaleCross.filter((skill,idx,arr)=>{
  597. let s0 = arr[0];
  598. let attr0 = s0.value.crosses[0].attr.concat().sort();
  599. let attr1 = skill.value.crosses[0].attr.concat().sort();
  600. return isEqual(skill.condition, s0.condition) &&
  601. isEqual(skill.attrs, s0.attrs) &&
  602. isEqual(skill.types, s0.types) &&
  603. isEqual(attr0, attr1)
  604. ;
  605. });
  606. if (scaleCross.length > 1)
  607. { //把后面的全都合并到第一个
  608. scaleCross.reduce((pre,cur)=>{
  609. combinePowerUp(pre, cur);
  610. return pre
  611. });
  612. scaleCross.shift(); //从筛选中去除第一个
  613. scaleCross.forEach(skill=>skills.splice(skills.indexOf(skill),1)); //去掉所有后面的
  614. }
  615. //长串匹配
  616. let scaleMatchLength = skillPowerUp.filter(skill=>skill.value.kind === SkillPowerUpKind.ScaleMatchLength);
  617. scaleMatchLength = scaleMatchLength.groupBy((a,b)=>{
  618. let av = a.value;
  619. let bv = b.value;
  620. return isEqual(a.condition, b.condition) &&
  621. isEqual(a.attrs, b.attrs) &&
  622. isEqual(a.types, b.types) &&
  623. av.min === bv.min &&
  624. av.max === bv.max &&
  625. (av.matchAll === bv.matchAll || av.attrs.length <= 1) && isEqual(av.attrs, bv.attrs)
  626. ;
  627. });
  628. for (let group of scaleMatchLength)
  629. {
  630. if (group.length > 1)
  631. { //把后面的全都合并到第一个
  632. group.reduce((pre,cur)=>{
  633. combinePowerUp(pre, cur);
  634. return pre
  635. });
  636. group.shift(); //从筛选中去除第一个
  637. group.forEach(skill=>skills.splice(skills.indexOf(skill),1)); //去掉所有后面的
  638. }
  639. }
  640. //多串匹配
  641. let scaleMatchAttrs = skillPowerUp.filter(skill=>skill.value.kind === SkillPowerUpKind.ScaleMatchAttrs);
  642. scaleMatchAttrs = scaleMatchAttrs.filter((skill,idx,arr)=>{
  643. let s0 = arr[0];
  644. let v0 = s0.value;
  645. let v1 = skill.value;
  646. return isEqual(skill.condition, s0.condition) &&
  647. isEqual(skill.attrs, s0.attrs) &&
  648. isEqual(skill.types, s0.types) &&
  649. v0.min === v1.min &&
  650. v0.max === v1.max &&
  651. isEqual(v0.matches, v1.matches)
  652. ;
  653. });
  654. if (scaleMatchAttrs.length > 1)
  655. { //把后面的全都合并到第一个
  656. scaleMatchAttrs.reduce((pre,cur)=>{
  657. combinePowerUp(pre, cur);
  658. return pre
  659. });
  660. scaleMatchAttrs.shift(); //从筛选中去除第一个
  661. scaleMatchAttrs.forEach(skill=>skills.splice(skills.indexOf(skill),1)); //去掉所有后面的
  662. }
  663. //多色匹配
  664. let scaleAttributes = skillPowerUp.filter(skill=>skill.value.kind === SkillPowerUpKind.ScaleAttributes);
  665. scaleAttributes = scaleAttributes.filter((skill,idx,arr)=>{
  666. let s0 = arr[0];
  667. let v0 = s0.value;
  668. let v1 = skill.value;
  669. return isEqual(skill.condition, s0.condition) &&
  670. isEqual(skill.attrs, s0.attrs) &&
  671. isEqual(skill.types, s0.types) &&
  672. v0.min === v1.min &&
  673. v0.max === v1.max &&
  674. isEqual(v0.attrs, v1.attrs)
  675. ;
  676. });
  677. if (scaleAttributes.length > 1)
  678. { //把后面的全都合并到第一个
  679. scaleAttributes.reduce((pre,cur)=>{
  680. combinePowerUp(pre, cur);
  681. return pre
  682. });
  683. scaleAttributes.shift(); //从筛选中去除第一个
  684. scaleAttributes.forEach(skill=>skills.splice(skills.indexOf(skill),1)); //去掉所有后面的
  685. }
  686. //连击数
  687. let scaleCombos = skillPowerUp.filter(skill=>skill.value.kind === SkillPowerUpKind.ScaleCombos);
  688. scaleCombos = scaleCombos.filter((skill,idx,arr)=>{
  689. let s0 = arr[0];
  690. let v0 = s0.value;
  691. let v1 = skill.value;
  692. return isEqual(skill.condition, s0.condition) &&
  693. isEqual(skill.attrs, s0.attrs) &&
  694. isEqual(skill.types, s0.types) &&
  695. v0.min === v1.min &&
  696. v0.max === v1.max
  697. ;
  698. });
  699. if (scaleCombos.length > 1)
  700. { //把后面的全都合并到第一个
  701. scaleCombos.reduce((pre,cur)=>{
  702. combinePowerUp(pre, cur);
  703. return pre
  704. });
  705. scaleCombos.shift(); //从筛选中去除第一个
  706. scaleCombos.forEach(skill=>skills.splice(skills.indexOf(skill),1)); //去掉所有后面的
  707. }
  708. //普通倍率
  709. let multiplier = skillPowerUp.filter(skill=>skill.value.kind === SkillPowerUpKind.Multiplier
  710. && skill.condition?.LShape);
  711. multiplier = multiplier.filter((skill,idx,arr)=>{
  712. let s0 = arr[0];
  713. return !!skill.condition && isEqual(skill.condition, s0.condition) &&
  714. isEqual(skill.attrs, s0.attrs) &&
  715. isEqual(skill.types, s0.types)
  716. ;
  717. });
  718. if (multiplier.length)
  719. { //把后面的全都合并到第一个
  720. multiplier.reduce((pre,cur)=>{
  721. combinePowerUp(pre, cur);
  722. return pre
  723. });
  724. multiplier.shift(); //从筛选中去除第一个
  725. multiplier.forEach(skill=>skills.splice(skills.indexOf(skill),1)); //去掉所有后面的
  726. }
  727. }
  728. return skills;
  729. }
  730. const skill = Skills[skillId];
  731. if (!skill) return [];
  732. //此处用apply将这个parser传递到后面解析函数的this里,用于递归解析
  733. const result = skillObjectParsers?.[skill.type]?.apply({ parser: skillParser }, skill.params)
  734. ?? { kind: SkillKinds.Unknown }; //没有时返回未知技能
  735. let skills = (Array.isArray(result) ? result : [result]) //确保技能是数组
  736. .filter(Boolean) //去除无效技能
  737. .map(s => ({ id: skillId, type: skill.type, params: skill.params, ...s })); //额外增加技能id、type、原始参数
  738. function splitProvisoSkill(skills)
  739. {
  740. let idx = skills.findIndex(skill=>skill.kind == SkillKinds.SkillProviso); //搜索HP、层数限制技能的位置
  741. if (idx>=0) //如果找到,就拆分成3份
  742. {
  743. return [
  744. skills.slice(0,idx),
  745. skills.slice(idx, idx+1),
  746. skills.slice(idx+1),
  747. ];
  748. }else
  749. {
  750. return [skills];
  751. }
  752. }
  753. //技能原始对象的合并,技能显示效果的合并在“function renderSkillEntry”里
  754. if (merge_skill)
  755. {
  756. //将技能拆分成3部分后分别合并技能
  757. let skillsSplit = splitProvisoSkill(skills).map(_skills=>merge(_skills));
  758. //再展平,重新回到一层技能
  759. skills = skillsSplit.flat(1);
  760. }
  761. return skills;
  762. }
  763. //返回flag里值为true的数组,如[1,4,7]
  764. function flags(num){
  765. /*
  766. return Array.from(new Array(32),(i,n)=>n).filter(n => num & (1 << n)); //性能太差
  767. return new Array(32).fill(null).map((i,n)=>n).filter(n => num & (1 << n)); //性能比上者好,但还是不够快
  768. */
  769. const arr = [];
  770. for (let i = 0; i<32;i++)
  771. {
  772. if (num & (1<<i))
  773. {
  774. arr.push(i);
  775. }
  776. }
  777. return arr;
  778. }
  779. const v = {
  780. percent: function(value) {
  781. return { kind: SkillValueKind.Percent, value: (value / 100) ?? 1 };
  782. },
  783. constant: function(value) {
  784. return { kind: SkillValueKind.Constant, value: value ?? 0 };
  785. },
  786. constantTo: function(value) {
  787. return { kind: SkillValueKind.ConstantTo, value: value ?? 1 };
  788. },
  789. xMaxHP: function(value) {
  790. return { kind: SkillValueKind.xMaxHP, value: (value / 100) ?? 1 };
  791. },
  792. xHP: function(value) {
  793. return { kind: SkillValueKind.xHP, value: (value / 100) ?? 1 };
  794. },
  795. xCHP: function(value) {
  796. return { kind: SkillValueKind.xCHP, value: (value / 100) ?? 1 };
  797. },
  798. xATK: function(value) {
  799. return { kind: SkillValueKind.xATK, value: (value / 100) ?? 1 };
  800. },
  801. xRCV: function(value) {
  802. return { kind: SkillValueKind.xRCV, value: (value / 100) ?? 1 };
  803. },
  804. randomATK: function(min, max) {
  805. return { kind: SkillValueKind.RandomATK, min: (min / 100) ?? 1, max: (max / 100) ?? 1, scale: 1 };
  806. },
  807. hpScale: function(min, max, scale) {
  808. return { kind: SkillValueKind.HPScale, min: (min / 100) ?? 1, max: (max / 100) ?? 1, scale: (scale / 100) ?? 1 };
  809. },
  810. xTeamHP: function(value) {
  811. return { kind: SkillValueKind.xTeamHP, value: (value / 100) ?? 1 };
  812. },
  813. xTeamATK: function(attrs, value) {
  814. return { kind: SkillValueKind.xTeamATK, attrs: attrs, value: (value / 100) ?? 1 };
  815. },
  816. xTeamRCV: function(value) {
  817. return { kind: SkillValueKind.xTeamRCV, value: (value / 100) ?? 1 };
  818. },
  819. percentAwakenings: function(awakenings, value) {
  820. return { kind: SkillValueKind.xAwakenings, awakenings: awakenings, value: value };
  821. },
  822. };
  823. const c = {
  824. hp: function (min, max) {
  825. return { hp: { min: min / 100, max: max / 100 } };
  826. },
  827. exact: function (type, value, attrs, multiple = false) {
  828. if (attrs === void 0) { attrs = Attributes.all(); }
  829. return { exact: { type: type, value: value, attrs: attrs, multiple: multiple} };
  830. },
  831. combos: function (min) {
  832. return { combos: { min } };
  833. },
  834. attrs: function (attrs, min) {
  835. return { attrs: { attrs, min} };
  836. },
  837. compo: function (type, ids) {
  838. return { compo: { type: type, ids: ids } };
  839. },
  840. remainOrbs: function (count) { return { remainOrbs: { count: count } }; },
  841. useSkill: function () { return { useSkill: true }; },
  842. multiplayer: function () { return { multiplayer: true }; },
  843. prob: function (percent) { return { prob: percent }; },
  844. LShape: function (attrs) { return { LShape: { attrs: attrs } }; },
  845. heal: function (min) { return { heal: { min: min } }; },
  846. stage: function (min, max) {
  847. return { stage: { min: min ?? 0, max: max ?? 0 } };
  848. },
  849. }
  850. const p = {
  851. mul: function (values) {
  852. if (Array.isArray(values)) {
  853. return {
  854. kind: SkillPowerUpKind.Multiplier,
  855. hp: 1,
  856. atk: values[0] / 100,
  857. rcv: values[1] / 100
  858. };
  859. }
  860. else {
  861. return {
  862. kind: SkillPowerUpKind.Multiplier,
  863. hp: (values.hp ?? 100) / 100,
  864. atk: (values.atk ?? 100) / 100,
  865. rcv: (values.rcv ?? 100) / 100
  866. };
  867. }
  868. },
  869. stats: function (value) {
  870. let statTypes = Array.from(arguments).slice(1);
  871. return [
  872. statTypes.indexOf(1) >= 0 ? value : 100,
  873. statTypes.indexOf(2) >= 0 ? value : 100
  874. ];
  875. },
  876. scale: function (min, max, baseMul, bonusMul) {
  877. return {
  878. min: min,
  879. max: max ?? min,
  880. baseAtk: (baseMul[0] / 100) ?? 1,
  881. baseRcv: (baseMul[1] / 100) ?? 1,
  882. bonusAtk: (bonusMul[0] / 100) ?? 0,
  883. bonusRcv: (bonusMul[1] / 100) ?? 0
  884. };
  885. },
  886. scaleAttrs: function (attrs, min, max, baseMul, bonusMul) {
  887. return { kind: SkillPowerUpKind.ScaleAttributes, attrs: attrs ,...this.scale(min, max, baseMul, bonusMul) };
  888. },
  889. scaleCombos: function (min, max, baseMul, bonusMul) {
  890. return { kind: SkillPowerUpKind.ScaleCombos ,...this.scale(min, max, baseMul, bonusMul) };
  891. },
  892. scaleMatchLength: function (attrs, min, max, baseMul, bonusMul, matchAll = false) {
  893. return { kind: SkillPowerUpKind.ScaleMatchLength, attrs, matchAll,...this.scale(min, max, baseMul, bonusMul) };
  894. },
  895. scaleMatchAttrs: function (matches, min, max, baseMul, bonusMul) {
  896. const flatMatches = matches.flat(); //当匹配的全是不同颜色时,切换成匹配颜色的技能
  897. if (new Set(flatMatches).size === flatMatches.length)
  898. return this.scaleAttrs(matches, min, max, baseMul, bonusMul);
  899. else
  900. return { kind: SkillPowerUpKind.ScaleMatchAttrs, matches: matches ,...this.scale(min, max, baseMul, bonusMul) };
  901. },
  902. scaleCross: function (crosses) {
  903. return { kind: SkillPowerUpKind.ScaleCross, crosses: crosses.map(cross => ({ ...cross, atk: ((cross.atk ?? 100) / 100), rcv: ((cross.rcv ?? 100) / 100)})) };
  904. },
  905. scaleRemainOrbs: function (max, baseMul, bonusMul) {
  906. return { kind: SkillPowerUpKind.ScaleRemainOrbs ,...this.scale(bonusMul ? 0 : max, max, baseMul, bonusMul) };
  907. },
  908. scaleStateKind: function (awakenings, attrs, types, value) {
  909. return { kind: SkillPowerUpKind.ScaleStateKind, awakenings: awakenings, attrs: attrs, types: types, value: value };
  910. },
  911. scaleMatchLengthTimes: function (attrs, min, exact, bonusMul) {
  912. return { kind: SkillPowerUpKind.ScaleMatchLengthTimes, attrs, min, exact, bonusMul };
  913. },
  914. }
  915. function activeTurns(turns, ...skills) {
  916. return skills.length ? { kind: SkillKinds.ActiveTurns, turns, skills } : null;
  917. }
  918. function delayActiveTurns(turns, ...skills) {
  919. return skills.length ? { kind: SkillKinds.DelayActiveTurns, turns, skills } : null;
  920. }
  921. function damageEnemy(target, attr, damage) {
  922. return { kind: SkillKinds.DamageEnemy, target: target, attr: attr, damage: damage };
  923. }
  924. function vampire(attr, damageValue, healValue) {
  925. return { kind: SkillKinds.Vampire, attr: attr, damage: damageValue, heal: healValue };
  926. }
  927. function reduceDamage(attrs, percent, condition, prob) {
  928. return { kind: SkillKinds.ReduceDamage, attrs: attrs, percent: percent, condition: condition, prob: prob || 1 };
  929. }
  930. function selfHarm(value) {
  931. return { kind: SkillKinds.SelfHarm, value: value };
  932. }
  933. function heal(value) {
  934. return { kind: SkillKinds.Heal, value: value };
  935. }
  936. function autoHealBuff(value) {
  937. return { kind: SkillKinds.AutoHealBuff, value: value };
  938. }
  939. function fromTo(from, to) {
  940. return { from: from, to: to };
  941. }
  942. function changeOrbs(...changes) {
  943. return { kind: SkillKinds.ChangeOrbs, changes: changes };
  944. }
  945. function generateOrbs(orbs, exclude, count, time) {
  946. return { kind: SkillKinds.GenerateOrbs, orbs: orbs, exclude: exclude, count: count, time: time};
  947. }
  948. function fixedOrbs(...generates) {
  949. return { kind: SkillKinds.FixedOrbs, generates: generates };
  950. }
  951. function powerUp(attrs, types, value, condition = null, reduceDamage = null, additional = [], eachTime = false) {
  952. let targets = attrs?.targets;
  953. if (targets) {attrs = null; types = null;}
  954. return { kind: SkillKinds.PowerUp, targets, attrs, types, condition, value, reduceDamage, additional, eachTime};
  955. }
  956. function counterAttack(attr, prob, value) {
  957. return { kind: SkillKinds.CounterAttack, attr: attr, prob: prob, value: value };
  958. }
  959. function setOrbState(orbs, state, arg) {
  960. return { kind: SkillKinds.SetOrbState, orbs: orbs, state: state, arg: arg};
  961. }
  962. function rateMultiply(value, rate) {
  963. return { kind: SkillKinds.RateMultiply, value: value, rate: rate };
  964. }
  965. function orbDropIncrease(prob, attrs, flag, value) {
  966. return { kind: SkillKinds.OrbDropIncrease, prob, attrs, flag, value };
  967. }
  968. function resolve(min, max) {
  969. return { kind: SkillKinds.Resolve, min: min, max: max };
  970. }
  971. function unbind(normal, awakenings, matches) {
  972. return { kind: SkillKinds.Unbind, normal: normal, awakenings: awakenings , matches: matches};
  973. }
  974. function bindSkill() { return { kind: SkillKinds.BindSkill}; }
  975. function boardChange(attrs) {
  976. return { kind: SkillKinds.BoardChange, attrs: attrs };
  977. }
  978. function randomSkills(skills) {
  979. return { kind: SkillKinds.RandomSkills, skills: skills };
  980. }
  981. function evolvedSkills(loop, skills) {
  982. return { kind: SkillKinds.EvolvedSkills, loop: loop, skills: skills };
  983. }
  984. function changeAttr(target, attr) {
  985. return { kind: SkillKinds.ChangeAttribute, target: target, attr: attr ?? 0 };
  986. }
  987. function gravity(value) {
  988. return { kind: SkillKinds.Gravity, value: value };
  989. }
  990. function voidEnemyBuff(buffs) {
  991. return { kind: SkillKinds.VoidEnemyBuff, buffs: buffs };
  992. }
  993. function skillBoost(value1, value2) { return { kind: SkillKinds.SkillBoost, min: value1, max: value2 ?? value1 }; }
  994. function minMatch(value) { return { kind: SkillKinds.MinMatchLength, value: value }; }
  995. function fixedTime(value) { return { kind: SkillKinds.FixedTime, value: v.constant(value) }; }
  996. function addCombo(value) { return { kind: SkillKinds.AddCombo, value: value }; }
  997. function defBreak(value) { return { kind: SkillKinds.DefenseBreak, value: value }; }
  998. function poison(value) { return { kind: SkillKinds.Poison, value: value }; }
  999. function CTW(time, cond, skill) {
  1000. return { kind: SkillKinds.CTW, time, cond, skill };
  1001. }
  1002. function followAttack(value) { return { kind: SkillKinds.FollowAttack, value: value }; }
  1003. function followAttackFixed(value) { return { kind: SkillKinds.FollowAttackFixed, value: v.constant(value) }; }
  1004. function autoHeal(value) { return { kind: SkillKinds.AutoHeal, value: value }; }
  1005. function timeExtend(value) { return { kind: SkillKinds.TimeExtend, value: value }; }
  1006. function delay() { return { kind: SkillKinds.Delay }; }
  1007. function massAttack() { return { kind: SkillKinds.MassAttack }; }
  1008. function dropRefresh() { return { kind: SkillKinds.DropRefresh }; }
  1009. function drum() { return { kind: SkillKinds.Drum }; }
  1010. function autoPath() { return { kind: SkillKinds.AutoPath }; }
  1011. function leaderChange(type = 0) { return { kind: SkillKinds.LeaderChange, type: type }; }
  1012. function noSkyfall() { return { kind: SkillKinds.NoSkyfall }; }
  1013. function henshin(id, random = false) {
  1014. return {
  1015. kind: SkillKinds.Henshin,
  1016. id: Array.isArray(id) ? id[0] : id, //兼容旧程序
  1017. ids: Array.isArray(id) ? id : [id],
  1018. random: random
  1019. };
  1020. }
  1021. function voidPoison() { return { kind: SkillKinds.VoidPoison }; }
  1022. function skillProviso(cond) { return { kind: SkillKinds.SkillProviso, cond: cond }; }
  1023. function impartAwakenings(attrs, types, awakenings) {
  1024. return { kind: SkillKinds.ImpartAwakenings, attrs: attrs, types: types, awakenings: awakenings };
  1025. }
  1026. function obstructOpponent(typeName, pos, ids) {
  1027. return { kind: SkillKinds.ObstructOpponent, typeName: typeName, pos: pos, enemy_skills: ids };
  1028. }
  1029. function increaseDamageCap(cap, targets) {
  1030. return { kind: SkillKinds.IncreaseDamageCap, cap: cap, targets: targets};
  1031. }
  1032. function boardJammingStates(state, posType, options) {
  1033. return { kind: SkillKinds.BoardJammingStates, state: state, posType: posType, ...options};
  1034. }
  1035. function boardSizeChange(width=7, height=6) {
  1036. return { kind: SkillKinds.BoardSizeChange, width, height };
  1037. }
  1038. const skillObjectParsers = {
  1039. //parser: (() => []), //这个用来解决代码提示的报错问题,不起实际作用
  1040. [0](attr, mul) { return damageEnemy('all', attr, v.xATK(mul)); },
  1041. [1](attr, value) { return damageEnemy('all', attr, v.constant(value)); },
  1042. [2](mul, _) { return damageEnemy('single', 'self', v.xATK(mul)); },
  1043. [3](turns, percent) { return activeTurns(turns, reduceDamage('all', v.percent(percent))); },
  1044. [4](mul) { return poison(v.xATK(mul)); },
  1045. [5](time) { return CTW(v.constant(time)); },
  1046. [6](percent) { return gravity(v.xCHP(percent)); },
  1047. [7](mul) { return heal(v.xRCV(mul)); },
  1048. [8](value) { return heal(v.constant(value)); },
  1049. [9](from, to) { return changeOrbs(fromTo([from ?? 0], [to ?? 0])); },
  1050. [10]() { return dropRefresh(); },
  1051. [11](attr, mul) { return powerUp([attr], null, p.mul({ atk: mul })); },
  1052. [12](mul) { return followAttack(v.xATK(mul)); },
  1053. [13](mul) { return autoHeal(v.xRCV(mul)); },
  1054. [14](min, max) { return resolve(v.percent(min), v.percent(max ?? 100)); },
  1055. [15](time) { return timeExtend(v.constant(time / 100)); },
  1056. [16](percent) { return reduceDamage('all', v.percent(percent)); },
  1057. [17](attr, percent) { return reduceDamage([attr], v.percent(percent)); },
  1058. [18](turns) { return activeTurns(turns, delay()); },
  1059. [19](turns, percent) { return activeTurns(turns, defBreak(v.percent(percent))); },
  1060. [20](from1, to1, from2, to2) {
  1061. if ((to1 ?? 0) == (to2 ?? 0))
  1062. return changeOrbs(fromTo([from1 ?? 0, from2 ?? 0], [to1 ?? 0]));
  1063. else
  1064. return changeOrbs(
  1065. fromTo([from1 ?? 0], [to1 ?? 0]),
  1066. fromTo([from2 ?? 0], [to2 ?? 0])
  1067. );
  1068. },
  1069. [21](turns, attr, percent) { return activeTurns(turns, reduceDamage([attr], v.percent(percent))); },
  1070. [22](type, mul) { return powerUp(null, [type], p.mul({ atk: mul })); },
  1071. [23](type, mul) { return powerUp(null, [type], p.mul({ hp: mul })); },
  1072. [24](type, mul) { return powerUp(null, [type], p.mul({ rcv: mul })); },
  1073. [26](mul) { return powerUp(null, null, p.mul({ atk: mul })); },
  1074. [28](attr, mul) { return powerUp([attr], null, p.mul({ atk: mul, rcv: mul })); },
  1075. [29](attr, mul) { return powerUp([attr], null, p.mul({ hp: mul, atk: mul, rcv: mul })); },
  1076. [30](type1, type2, mul) { return powerUp(null, [type1, type2], p.mul({ hp: mul })); },
  1077. [31](type1, type2, mul) { return powerUp(null, [type1, type2], p.mul({ atk: mul })); },
  1078. [33]() { return drum(); },
  1079. [35](mul, percent) { return vampire('self', v.xATK(mul), v.percent(percent)); },
  1080. [36](attr1, attr2, percent) { return reduceDamage([attr1, attr2], v.percent(percent)); },
  1081. [37](attr, mul) { return damageEnemy('single', attr, v.xATK(mul)); },
  1082. [38](max, prob, percent) { return reduceDamage('all', v.percent(percent), max === 100 ? c.hp(max, max) : c.hp(0, max), v.percent(prob)); },
  1083. [39](percent, stats1, stats2, mul) { return powerUp(null, null, p.mul(p.stats(mul, stats1, stats2)), c.hp(0, percent)); },
  1084. [40](attr1, attr2, mul) { return powerUp([attr1, attr2], null, p.mul({ atk: mul })); },
  1085. [41](prob, mul, attr) { return counterAttack(attr ?? 0, v.percent(prob), v.percent(mul)); },
  1086. [42](targetAttr, dmgAttr, value) { return damageEnemy(targetAttr, dmgAttr, v.constant(value)); },
  1087. [43](min, prob, percent) { return reduceDamage('all', v.percent(percent), c.hp(min, 100), v.percent(prob)); },
  1088. [44](percent, stats1, stats2, mul) { return powerUp(null, null, p.mul(p.stats(mul, stats1, stats2)), c.hp(percent, 100)); },
  1089. [45](attr, mul) { return powerUp([attr], null, p.mul({ hp: mul, atk: mul })); },
  1090. [46](attr1, attr2, mul) { return powerUp([attr1, attr2], null, p.mul({ hp: mul })); },
  1091. [48](attr, mul) { return powerUp([attr], null, p.mul({ hp: mul })); },
  1092. [49](attr, mul) { return powerUp([attr], null, p.mul({ rcv: mul })); },
  1093. [50](turns, attr, mul) { return activeTurns(turns, powerUp([attr], null, p.mul({ atk: mul ?? 0 }))); },
  1094. [51](turns) { return activeTurns(turns, massAttack()); },
  1095. [52](attr, mul) { return setOrbState([attr], 'enhanced', {enhance: v.percent(mul)}); },
  1096. [53](mul) { return rateMultiply(v.percent(mul), 'drop'); },
  1097. [54](mul) { return rateMultiply(v.percent(mul), 'coin'); },
  1098. [55](value) { return damageEnemy('single', 'fixed', v.constant(value)); },
  1099. [56](value) { return damageEnemy('all', 'fixed', v.constant(value)); },
  1100. [58](attr, min, max) { return damageEnemy('all', attr, v.randomATK(min, max)); },
  1101. [59](attr, min, max) { return damageEnemy('single', attr, v.randomATK(min, max)); },
  1102. [60](turns, mul, attr) { return activeTurns(turns, counterAttack(attr, v.percent(100), v.percent(mul))); },
  1103. [61](attrs, min, base, bonus, stage) { return powerUp(null, null, p.scaleAttrs(flags(attrs), min, min + (stage ?? 0), [base, 100], [bonus, 0])); },
  1104. [62](type, mul) { return powerUp(null, [type], p.mul({ hp: mul, atk: mul })); },
  1105. [63](type, mul) { return powerUp(null, [type], p.mul({ hp: mul, rcv: mul })); },
  1106. [64](type, mul) { return powerUp(null, [type], p.mul({ atk: mul, rcv: mul })); },
  1107. [65](type, mul) { return powerUp(null, [type], p.mul({ hp: mul, atk: mul, rcv: mul })); },
  1108. [66](combo, mul) { return powerUp(null, null, p.scaleCombos(combo, combo, [mul, 100], [0, 0])); },
  1109. [67](attr, mul) { return powerUp([attr], null, p.mul({ hp: mul, rcv: mul })); },
  1110. [69](attr, type, mul) { return powerUp([attr], [type], p.mul({ atk: mul })); },
  1111. [71](...attrs) { return boardChange(attrs.filter(attr => attr >= 0)); },
  1112. //据说是破除敌人的守护盾,但是因为重来没有实装过,所以不知道实际效果
  1113. [72](turns) { return activeTurns(turns, voidEnemyBuff(['guard'])); },
  1114. [73](attr, type, mul) { return powerUp([attr], [type], p.mul({ hp: mul, atk: mul })); },
  1115. [75](attr, type, mul) { return powerUp([attr], [type], p.mul({ atk: mul, rcv: mul })); },
  1116. [76](attr, type, mul) { return powerUp([attr], [type], p.mul({ hp: mul, atk: mul, rcv: mul })); },
  1117. [77](type1, type2, mul) { return powerUp(null, [type1, type2], p.mul({ hp: mul, atk: mul })); },
  1118. [79](type1, type2, mul) { return powerUp(null, [type1, type2], p.mul({ atk: mul, rcv: mul })); },
  1119. [84](attr, min, max, percent) {
  1120. return [
  1121. selfHarm(percent ? v.xCHP(100 - percent) : v.constantTo(1)),
  1122. damageEnemy('single', attr, v.randomATK(min, max))
  1123. ];
  1124. },
  1125. [85](attr, min, max, percent) {
  1126. return [
  1127. selfHarm(percent ? v.xCHP(100 - percent) : v.constantTo(1)),
  1128. damageEnemy('all', attr, v.randomATK(min, max))
  1129. ];
  1130. },
  1131. [86](attr, value, _, percent) {
  1132. return [
  1133. selfHarm(percent ? v.xCHP(100 - percent) : v.constantTo(1)),
  1134. damageEnemy('single', attr, v.constant(value))
  1135. ];
  1136. },
  1137. [87](attr, value, _, percent) {
  1138. return [
  1139. selfHarm(percent ? v.xCHP(100 - percent) : v.constantTo(1)),
  1140. damageEnemy('all', attr, v.constant(value))
  1141. ];
  1142. },
  1143. [88](turns, type, mul) { return activeTurns(turns, powerUp(null, [type], p.mul({ atk: mul }))); },
  1144. [90](turns, attr1, attr2, mul) { return activeTurns(turns, powerUp([attr1, attr2], null, p.mul({ atk: mul }))); },
  1145. [91](attr1, attr2, mul) { return setOrbState([attr1, attr2], 'enhanced', {enhance: v.percent(mul)}); },
  1146. [92](turns, type1, type2, mul) { return activeTurns(turns, powerUp(null, [type1, type2], p.mul({ atk: mul }))); },
  1147. [93]() { return leaderChange(); },
  1148. [94](percent, attr, stats1, stats2, mul) { return powerUp([attr], null, p.mul(p.stats(mul, stats1, stats2)), c.hp(0, percent)); },
  1149. [95](percent, type, stats1, stats2, mul) { return powerUp(null, [type], p.mul(p.stats(mul, stats1, stats2)), c.hp(0, percent)); },
  1150. [96](percent, attr, stats1, stats2, mul) { return powerUp([attr], null, p.mul(p.stats(mul, stats1, stats2)), c.hp(percent, 100)); },
  1151. [97](percent, type, stats1, stats2, mul) { return powerUp(null, [type], p.mul(p.stats(mul, stats1, stats2)), c.hp(percent, 100)); },
  1152. [98](min, base, bonus, max) { return powerUp(null, null, p.scaleCombos(min, max, [base, 100], [bonus, 0])); },
  1153. [100](stats1, stats2, mul) { return powerUp(null, null, p.mul(p.stats(mul, stats1, stats2)), c.useSkill()); },
  1154. [101](combo, mul) { return powerUp(null, null, p.mul({ atk: mul }), c.exact('combo', combo)); },
  1155. [103](combo, stats1, stats2, mul) { return powerUp(null, null, p.scaleCombos(combo, combo, p.stats(mul, stats1, stats2), [0, 0])); },
  1156. [104](combo, attrs, stats1, stats2, mul) { return powerUp(flags(attrs), null, p.scaleCombos(combo, combo, p.stats(mul, stats1, stats2), [0, 0])); },
  1157. [105](rcv, atk) { return powerUp(null, null, p.mul({ rcv, atk })); },
  1158. [106](hp, atk) { return powerUp(null, null, p.mul({ hp, atk })); },
  1159. [107](hp, attrs, atk) {
  1160. return [
  1161. powerUp(null, null, p.mul({ hp })),
  1162. attrs && powerUp(flags(attrs), null, p.mul({ atk: atk ?? 100 })) || null,
  1163. ].filter(Boolean);
  1164. },
  1165. [108](hp, type, atk) { return [powerUp(null, null, p.mul({ hp })), powerUp(null, [type], p.mul({ atk }))]; },
  1166. [109](attrs, len, mul) { return powerUp(null, null, p.scaleMatchLength(flags(attrs), len, len, [mul, 100], [0, 0])); },
  1167. [110](single, attr, min, max, scale) { return damageEnemy(single ? 'single' : 'all', attr, v.hpScale(min, max, scale)); },
  1168. [111](attr1, attr2, mul) { return powerUp([attr1, attr2], null, p.mul({ hp: mul, atk: mul })); },
  1169. [114](attr1, attr2, mul) { return powerUp([attr1, attr2], null, p.mul({ hp: mul, atk: mul, rcv: mul })); },
  1170. [115](attr, mul, percent) { return vampire(attr, v.xATK(mul), v.percent(percent)); },
  1171. [116](...ids) { return ids.flatMap(id => this.parser(id)); },
  1172. [117](bind, rcv, constant, hp, awokenBind) {
  1173. return [
  1174. rcv ? heal(v.xRCV(rcv)) : hp ? heal(v.xMaxHP(hp)) : constant ? heal(v.constant(constant)) : null,
  1175. (bind || awokenBind) ? unbind(bind ?? 0, awokenBind ?? 0) : null,
  1176. ].filter(Boolean);
  1177. },
  1178. [118](...ids) { return randomSkills(ids.map(id => this.parser(id))); },
  1179. [119](attrs, min, base, bonus, max) { return powerUp(null, null, p.scaleMatchLength(flags(attrs), min, max, [base || 100, 100], [bonus, 0])); },
  1180. [121](attrs, types, hp, atk, rcv) { return powerUp(flags(attrs), flags(types), p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 })); },
  1181. [122](percent, attrs, types, atk, rcv) { return powerUp(flags(attrs), flags(types), p.mul({ atk: atk || 100, rcv: rcv || 100 }), c.hp(0, percent)); },
  1182. [123](percent, attrs, types, atk, rcv) { return powerUp(flags(attrs), flags(types), p.mul({ atk: atk || 100, rcv: rcv || 100 }), c.hp(percent, 100)); },
  1183. [124](attrs1, attrs2, attrs3, attrs4, attrs5, min, mul, bonus) {
  1184. const attrs = [attrs1, attrs2, attrs3, attrs4, attrs5].filter(Boolean);
  1185. return powerUp(null, null, p.scaleMatchAttrs(attrs.flatMap(flags), min, bonus ? attrs.length : min, [mul, 100], [bonus, 0]));
  1186. },
  1187. [125](mon1, mon2, mon3, mon4, mon5, hp, atk, rcv) { return powerUp(null, null, p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 }), c.compo('card', [mon1, mon2, mon3, mon4, mon5].filter(Boolean))); },
  1188. [126](attrs, turns, turns2, percent) { return activeTurns(turns === turns2 ? turns : [turns, turns2], orbDropIncrease(v.percent(percent), flags(attrs))); },
  1189. [127](cols1, attrs1, cols2, attrs2) {
  1190. return fixedOrbs(
  1191. { orbs: flags(attrs1), type: 'col', positions: flags(cols1) },
  1192. { orbs: flags(attrs2), type: 'col', positions: flags(cols2) }
  1193. );
  1194. },
  1195. [128](rows1, attrs1, rows2, attrs2) {
  1196. return fixedOrbs(
  1197. { orbs: flags(attrs1), type: 'row', positions: flags(rows1) },
  1198. { orbs: flags(attrs2), type: 'row', positions: flags(rows2) }
  1199. );
  1200. },
  1201. [129](attrs, types, hp, atk, rcv, rAttrs, rPercent) {
  1202. return [
  1203. (hp || atk || rcv) && powerUp(flags(attrs), flags(types), p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 })) || null,
  1204. rPercent && reduceDamage(flags(rAttrs), v.percent(rPercent)) || null
  1205. ].filter(Boolean);
  1206. },
  1207. [130](percent, attrs, types, atk, rcv, rAttrs, rPercent) {
  1208. return [
  1209. (atk || rcv) && powerUp(flags(attrs), flags(types), p.mul({ atk: atk || 100, rcv: rcv || 100 }), c.hp(0, percent)) || null,
  1210. rPercent && reduceDamage(flags(rAttrs), v.percent(rPercent), c.hp(0, percent)) || null
  1211. ].filter(Boolean);
  1212. },
  1213. [131](percent, attrs, types, atk, rcv, rAttrs, rPercent) {
  1214. return [
  1215. (atk || rcv) && powerUp(flags(attrs), flags(types), p.mul({ atk: atk || 100, rcv: rcv || 100 }), c.hp(percent, 100)) || null,
  1216. rPercent && reduceDamage(flags(rAttrs), v.percent(rPercent), c.hp(percent, 100)) || null
  1217. ].filter(Boolean);
  1218. },
  1219. [132](turns, time, percent) { return activeTurns(turns, timeExtend(time ? v.constant(time / 10) : v.percent(percent))); },
  1220. [133](attrs, types, atk, rcv) { return powerUp(flags(attrs), flags(types), p.mul({ atk: atk || 100, rcv: rcv || 100 }), c.useSkill()); },
  1221. [136](attrs1, hp1, atk1, rcv1, attrs2, hp2, atk2, rcv2) {
  1222. return [
  1223. powerUp(flags(attrs1), null, p.mul({ hp: hp1 || 100, atk: atk1 || 100, rcv: rcv1 || 100 })),
  1224. powerUp(flags(attrs2), null, p.mul({ hp: hp2 || 100, atk: atk2 || 100, rcv: rcv2 || 100 })),
  1225. ];
  1226. },
  1227. [137](types1, hp1, atk1, rcv1, types2, hp2, atk2, rcv2) {
  1228. return [
  1229. powerUp(null, flags(types1), p.mul({ hp: hp1 || 100, atk: atk1 || 100, rcv: rcv1 || 100 })),
  1230. powerUp(null, flags(types2), p.mul({ hp: hp2 || 100, atk: atk2 || 100, rcv: rcv2 || 100 })),
  1231. ];
  1232. },
  1233. [138](...ids) { return ids.flatMap(id => this.parser(id)); },
  1234. [139](attrs, types, percent1, less1, mul1, percent2, less2, mul2) {
  1235. return [
  1236. powerUp(flags(attrs), flags(types), p.mul({ atk: mul1 || 100 }), less1 ? c.hp(0, percent1) : c.hp(percent1, 100)),
  1237. powerUp(flags(attrs), flags(types), p.mul({ atk: mul2 || 100 }), less1 ?
  1238. (less2 ? c.hp(percent1, percent2) : c.hp(percent2, 100)) :
  1239. (less2 ? c.hp(0, percent2) : c.hp(percent2, percent1 - 1))
  1240. ),
  1241. ];
  1242. },
  1243. [140](attrs, mul) { return setOrbState(flags(attrs), 'enhanced', {enhance: v.percent(mul)}); },
  1244. [141](count, to, exclude) { return generateOrbs(flags(to), flags(exclude), count); },
  1245. [142](turns, attr) { return activeTurns(turns, changeAttr('self', attr)); },
  1246. [143](mul, dmgAttr) { return damageEnemy('all', dmgAttr ?? 0, v.xTeamHP(mul)); },
  1247. [144](teamAttrs, mul, single, dmgAttr) { return damageEnemy(single ? 'single' : 'all', dmgAttr ?? 0, v.xTeamATK(flags(teamAttrs), mul)); },
  1248. [145](mul) { return heal(v.xTeamRCV(mul)); },
  1249. [146](turns1, turns2) { return skillBoost(v.constant(turns1), turns2 ? v.constant(turns2) : undefined); },
  1250. [148](percent) { return rateMultiply(v.percent(percent), 'exp'); },
  1251. [149](mul) { return powerUp(null, null, p.mul({ rcv: mul }), c.exact('match-length', 4, [Attributes.Heart])); },
  1252. [150](_, mul) { return powerUp({targets: ['the-attr']}, null, p.mul({ atk: mul }), c.exact('match-length', 5, 'enhanced')); },
  1253. [151](mul1, mul2, percent) {
  1254. return powerUp(null, null, p.scaleCross([{ single: true, attr: [Attributes.Heart], atk: mul1 || 100, rcv: mul2 || 100 }]), null, v.percent(percent));
  1255. },
  1256. [152](attrs, count) { return setOrbState(flags(attrs), 'locked', {count: v.constant(count)}); },
  1257. [153](attr, _) { return changeAttr('opponent', attr); },
  1258. [154](from, to) { return changeOrbs(fromTo(flags(from), flags(to))); },
  1259. [155](attrs, types, hp, atk, rcv) { return powerUp(flags(attrs), flags(types), p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 }), c.multiplayer()); },
  1260. [156](turns, awoken1, awoken2, awoken3, type, mul) {
  1261. if (type == 1)
  1262. {
  1263. return heal(v.percentAwakenings([awoken1, awoken2, awoken3].filter(Boolean), v.xRCV(mul)));
  1264. }else
  1265. {
  1266. return activeTurns(turns, type === 2 ?
  1267. powerUp(null, null, p.scaleStateKind([awoken1, awoken2, awoken3].filter(Boolean), null, null, p.mul({atk: mul - 100, hp:0, rcv:0}))) :
  1268. reduceDamage('all', v.percentAwakenings([awoken1, awoken2, awoken3].filter(Boolean), v.percent(mul)))
  1269. );
  1270. }
  1271. },
  1272. [157](attr1, mul1, attr2, mul2, attr3, mul3) {
  1273. let crosses = [
  1274. { single: false, attr: [attr1], atk: mul1 },
  1275. { single: false, attr: [attr2], atk: mul2 },
  1276. { single: false, attr: [attr3], atk: mul3 }
  1277. ].filter(cross => cross.atk);
  1278. return powerUp(null, null, p.scaleCross(crosses));
  1279. },
  1280. [158](len, attrs, types, atk, hp, rcv) {
  1281. return [
  1282. minMatch(len),
  1283. powerUp(flags(attrs), flags(types), p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 }))
  1284. ];
  1285. },
  1286. [159](attrs, min, base, bonus, max) { return powerUp(null, null, p.scaleMatchLength(flags(attrs), min, max, [base, 100], [bonus, 0])); },
  1287. [160](turns, combo) { return activeTurns(turns, addCombo(combo)); },
  1288. [161](percent) { return gravity(v.xMaxHP(percent)); },
  1289. [162]() { return boardSizeChange(); },
  1290. [163](attrs, types, hp, atk, rcv, rAttrs, rPercent) {
  1291. return [
  1292. noSkyfall(),
  1293. (hp || atk || rcv) && powerUp(flags(attrs), flags(types), p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 })) || null,
  1294. rPercent && reduceDamage(flags(rAttrs), v.percent(rPercent)) || null,
  1295. ].filter(Boolean);
  1296. },
  1297. [164](attrs1, attrs2, attrs3, attrs4, min, atk, rcv, bonus) {
  1298. const attrs = [attrs1, attrs2, attrs3, attrs4].filter(Boolean);
  1299. return powerUp(null, null, p.scaleMatchAttrs(attrs.flatMap(flags), min, attrs.length, [atk, rcv], [bonus, bonus]));
  1300. },
  1301. [165](attrs, min, baseAtk, baseRcv, bonusAtk, bonusRcv, incr) {
  1302. const attrsArr = flags(attrs);
  1303. return powerUp(null, null, p.scaleAttrs(attrsArr, min, min + (min < attrsArr.length ? (incr ?? 0) : 0), [baseAtk || 100, baseRcv || 100], [bonusAtk, bonusRcv]));
  1304. },
  1305. [166](min, baseAtk, baseRcv, bonusAtk, bonusRcv, max) { return powerUp(null, null, p.scaleCombos(min, max, [baseAtk, baseRcv], [bonusAtk, bonusRcv])); },
  1306. [167](attrs, min, baseAtk, baseRcv, bonusAtk, bonusRcv, max) { return powerUp(null, null, p.scaleMatchLength(flags(attrs), min, max, [baseAtk, baseRcv], [bonusAtk, bonusRcv])); },
  1307. [168](turns, awoken1, awoken2, awoken3, awoken4, awoken5, awoken6, mul) {
  1308. return activeTurns(turns,
  1309. powerUp(null, null, p.scaleStateKind([awoken1, awoken2, awoken3, awoken4, awoken5, awoken6].filter(Boolean), null, null, p.mul({atk: mul, hp:0, rcv:0})))
  1310. );
  1311. },
  1312. [169](min, base, percent, bonus, max) { return powerUp(null, null, p.scaleCombos(min, max ?? min, [base || 100, 100], [bonus, 0]), null, v.percent(percent)); },
  1313. //stage的真实用法目前不知道,缺少样本来判断,不知道到底是直接算数(stage-1)还是算二进制个数(flags(stage).length)。 2022年5月23日
  1314. //按 瘦鹅 的说法,也可能是因为暗牛头限制了5色, 所以就算是3级到了6色,也只算5色。
  1315. [170](attrs, min, base, percent, bonus, stage) {
  1316. let attrsArr = flags(attrs);
  1317. return powerUp(null, null, p.scaleAttrs(attrsArr, min, Math.min(min + (stage || 0), attrsArr.length), [base, 100], [bonus ?? 0, 0]), null, v.percent(percent));
  1318. },
  1319. [171](attrs1, attrs2, attrs3, attrs4, min, mul, percent, bonus) {
  1320. const attrs = [attrs1, attrs2, attrs3, attrs4].filter(Boolean);
  1321. return powerUp(null, null, p.scaleMatchAttrs(attrs.flatMap(flags), min, bonus ? attrs.length : min, [mul, 100], [bonus ?? 0, 0]), null, v.percent(percent));
  1322. },
  1323. [172]() { return setOrbState(Attributes.orbs(), 'unlocked'); },
  1324. [173](turns, attrAbsorb, comboAbsorb, damageAbsorb) {
  1325. return activeTurns(turns, voidEnemyBuff(
  1326. [
  1327. attrAbsorb && 'attr-absorb',
  1328. comboAbsorb && 'combo-absorb',
  1329. damageAbsorb && 'damage-absorb'
  1330. ].filter((buff) => typeof buff === 'string')
  1331. ));
  1332. },
  1333. [175](series1, series2, series3, hp, atk, rcv) { return powerUp(null, null, p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 }), c.compo('series', [series1, series2, series3].filter(Boolean))); },
  1334. [176](row1, row2, row3, row4, row5, attrs) {
  1335. return fixedOrbs(
  1336. { orbs: [attrs ?? 0], type: 'shape', positions: [row1, row2, row3, row4, row5].map(row=>flags(row)) }
  1337. );
  1338. },
  1339. [177](attrs, types, hp, atk, rcv, remains, baseAtk, bonusAtk) {
  1340. return [
  1341. noSkyfall(),
  1342. (hp || atk || rcv) && powerUp(flags(attrs), flags(types), p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 })) || null,
  1343. baseAtk && powerUp(null, null, p.scaleRemainOrbs(remains, [baseAtk ?? 100, 100], [bonusAtk ?? 0, 0])) || null
  1344. ].filter(Boolean);
  1345. },
  1346. [178](time, attrs, types, hp, atk, rcv, attrs2, percent) {
  1347. return [
  1348. fixedTime(time),
  1349. (hp || atk || rcv) && powerUp(flags(attrs), flags(types), p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 })),
  1350. percent && reduceDamage(flags(attrs2), v.percent(percent)) || null,
  1351. ].filter(Boolean);
  1352. /*const reduceAttrs = flags(attrs2);
  1353. const isAllAttr = isEqual(reduceAttrs, Attributes.attr);
  1354. return [
  1355. fixedTime(time),
  1356. (hp || atk || rcv) && powerUp(flags(attrs), flags(types), p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 }), null, isAllAttr ? v.percent(percent) : null),
  1357. percent && !isAllAttr && reduceDamage(reduceAttrs, v.percent(percent)) || null,
  1358. ].filter(Boolean);*/
  1359. },
  1360. [179](turns, value, percent, bind, awokenBind) {
  1361. return [
  1362. (bind || awokenBind) ? unbind(bind ?? 0, awokenBind ?? 0) : null,
  1363. activeTurns(turns, autoHealBuff(value ? v.constant(value) : v.xMaxHP(percent)))
  1364. ].filter(Boolean);
  1365. },
  1366. [180](turns, percent) { return activeTurns(turns, orbDropIncrease(v.percent(percent), [], 'enhanced')); },
  1367. [182](attrs, len, mul, percent) { return powerUp(null, null, p.scaleMatchLength(flags(attrs), len, len, [mul || 100, 100], [0, 0]), null, v.percent(percent)); },
  1368. [183](attrs, types, percent1, atk1, reduce, percent2, atk2, rcv2) {
  1369. return [
  1370. (percent1 > 0) && powerUp(flags(attrs), flags(types), p.mul({ atk: atk1 || 100 }), c.hp(percent1, 100), v.percent(reduce)) || null,
  1371. (atk2 || rcv2) && powerUp(flags(attrs), flags(types), p.mul({ atk: atk2 || 100, rcv: rcv2 || 100 }), c.hp(0, percent2 || percent1)) || null
  1372. ].filter(Boolean);
  1373. },
  1374. [184](turns) { return activeTurns(turns, noSkyfall()); },
  1375. [185](time, attrs, types, hp, atk, rcv) {
  1376. return [
  1377. timeExtend(v.constant(time / 100)),
  1378. powerUp(flags(attrs), flags(types), p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 })),
  1379. ];
  1380. },
  1381. [186](attrs, types, hp, atk, rcv) {
  1382. return [
  1383. boardSizeChange(),
  1384. (hp || atk ||rcv) && powerUp(flags(attrs), flags(types), p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 })) || null,
  1385. ].filter(Boolean);
  1386. },
  1387. [188](value) {
  1388. return damageEnemy('single', 'fixed', v.constant(value));
  1389. },
  1390. [189]() {
  1391. return [
  1392. setOrbState(Attributes.orbs(), 'unlocked'),
  1393. boardChange([0,1,2,3]),
  1394. autoPath(),
  1395. ];
  1396. },
  1397. [191](turns) {
  1398. return activeTurns(turns, voidEnemyBuff(['damage-void']));
  1399. },
  1400. [192](attrs, len, mul, combo) {
  1401. return powerUp(null, null, p.scaleMatchLength(flags(attrs), len, len, [mul || 100, 100], [0, 0], true), null, null, combo ? [addCombo(combo)] : null);
  1402. },
  1403. [193](attrs, atk, rcv, percent) {
  1404. return powerUp(null, null, p.mul([atk || 100, rcv || 100]), c.LShape(flags(attrs)), v.percent(percent));
  1405. },
  1406. [194](attrs, min, mul, combo) {
  1407. return powerUp(null, null, p.scaleAttrs(flags(attrs), min, min, [mul || 100, 100], [0, 0]), null, null, combo ? [addCombo(combo)] : null);
  1408. },
  1409. [195](percent) {
  1410. return selfHarm(percent ? v.xCHP(100 - percent) : v.constantTo(1));
  1411. },
  1412. [196](matches) {
  1413. return unbind(0,0,matches);
  1414. },
  1415. [197]() {
  1416. return voidPoison();
  1417. },
  1418. [198](heal, atk, percent, awokenBind) {
  1419. return powerUp(null, null, p.mul([atk || 100, 100]), c.heal(heal), percent && v.percent(percent), awokenBind && [unbind(0, awokenBind ?? 0)]);
  1420. },
  1421. [199](attrs, min, damage) {
  1422. return powerUp(null, null, p.scaleAttrs(flags(attrs), min, min, [100, 100], [0, 0]), null, null, [followAttackFixed(damage)]);
  1423. },
  1424. [200](attrs, len, damage) {
  1425. return powerUp(null, null, p.scaleMatchLength(flags(attrs), len, len, [100, 100], [0, 0]), null, null, [followAttackFixed(damage)]);
  1426. },
  1427. [201](attrs1, attrs2, attrs3, attrs4, min, damage) {
  1428. const attrs = [attrs1, attrs2, attrs3, attrs4].filter(Boolean);
  1429. return powerUp(null, null, p.scaleMatchAttrs(attrs.flatMap(flags), min, min, [100, 100], [0, 0]), null, null, [followAttackFixed(damage)]);
  1430. },
  1431. [202](id) {
  1432. return henshin(id);
  1433. },
  1434. [203](evotypeid, hp, atk, rcv) {
  1435. let evotype = (type=>{
  1436. switch (type) {
  1437. case 0: return "pixel-evo";
  1438. case 2: return "reincarnation-evo";
  1439. default: return type;
  1440. }
  1441. })(evotypeid);
  1442. return powerUp(null, null, p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 }),
  1443. c.compo('evolution', [evotype]));
  1444. },
  1445. [205](attrs, turns) { return activeTurns(turns, orbDropIncrease(null, flags(attrs == -1 ? 0b1111111111: attrs), 'locked')); },
  1446. [206](attrs1, attrs2, attrs3, attrs4, attrs5, min, combo) {
  1447. const attrs = [attrs1, attrs2, attrs3, attrs4, attrs5].filter(Boolean);
  1448. return powerUp(null, null, p.scaleMatchAttrs(attrs.flatMap(flags), min, min, [100, 100], [0, 0]), null, null, combo ? [addCombo(combo)] : null);
  1449. },
  1450. [207](turns, time, row1, row2, row3, row4, row5, count) {
  1451. /*return activeTurns(turns, count ?
  1452. generateOrbs( ['variation'], null, count, time/100):
  1453. fixedOrbs( { orbs: ['variation'], time: time/100, type: 'shape', positions: [row1, row2, row3, row4, row5].map(row=>flags(row)) })
  1454. );*/
  1455. const options = { time: time/100};
  1456. if (count) {
  1457. options.count = count;
  1458. } else {
  1459. options.positions = [row1, row2, row3, row4, row5].map(flags);
  1460. }
  1461. return activeTurns(turns,
  1462. boardJammingStates('roulette', count ? 'random' : 'shape', options)
  1463. );
  1464. },
  1465. [208](count1, to1, exclude1, count2, to2, exclude2) {
  1466. return [
  1467. generateOrbs(flags(to1), flags(exclude1), count1),
  1468. generateOrbs(flags(to2), flags(exclude2), count2),
  1469. ];
  1470. },
  1471. [209](combo) {
  1472. return powerUp(null, null, p.scaleCross([{ single: true, attr: [Attributes.Heart], atk: 100, rcv: 100}]), null, null, combo ? [addCombo(combo)] : null);
  1473. },
  1474. [210](attrs, reduce, combo) {
  1475. return powerUp(null, null, p.scaleCross([{ single: false, attr: flags(attrs), atk: 100, rcv: 100}]), null, v.percent(reduce), combo ? [addCombo(combo)] : null);
  1476. },
  1477. [213](attrs, types, ...awakenings) { //赋予觉醒的队长技
  1478. return impartAwakenings(flags(attrs), flags(types), awakenings);
  1479. },
  1480. [214](turns) { return activeTurns(turns, bindSkill()); },
  1481. [215](turns, attrs) { return activeTurns(turns, setOrbState(flags(attrs), 'bound')); },
  1482. [217](rarity, hp, atk, rcv) {
  1483. return powerUp(null, null, p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 }),
  1484. c.compo('team-total-rarity', rarity));
  1485. },
  1486. [218](turns) { return skillBoost(v.constant(-turns)); },
  1487. [219](attrs, len, combo) {
  1488. return powerUp(null, null, p.scaleMatchLength(flags(attrs), len, len, [100, 100], [0, 0]), null, null, combo ? [addCombo(combo)] : null);
  1489. },
  1490. [220](attrs, combo) {
  1491. var skill = powerUp(null, null, p.mul([100,100]), c.LShape(flags(attrs)), null, combo ? [addCombo(combo)] : null);
  1492. return skill;
  1493. },
  1494. [221](attrs, damage) {
  1495. return powerUp(null, null, p.mul([100,100]), c.LShape(flags(attrs)), null, damage ? [followAttackFixed(damage)] : null);
  1496. },
  1497. [223](combo, damage) {
  1498. return powerUp(null, null, p.scaleCombos(combo, combo, [100, 100], [0, 0]), null, null, damage ? [followAttackFixed(damage)] : null);
  1499. },
  1500. [224](turns, attr) { return activeTurns(turns, changeAttr('opponent', attr)); },
  1501. [225](min, max) { return skillProviso(c.hp(min ?? 0, max ?? 100)); },
  1502. [226](turns, percent) { return activeTurns(turns, orbDropIncrease(v.percent(percent), [], 'nail')); },
  1503. [227]() { return leaderChange(1); },
  1504. [228](turns, attrs, types, atk, rcv) {
  1505. return activeTurns(turns,
  1506. powerUp(null, null, p.scaleStateKind(null, flags(attrs), flags(types), p.mul({atk: atk, rcv: rcv ?? 0, hp:0})))
  1507. );
  1508. },
  1509. [229](attrs, types, hp, atk, rcv) {
  1510. return powerUp(null, null, p.scaleStateKind(null, flags(attrs), flags(types), p.mul({hp: hp || 0, atk: atk || 0, rcv: rcv || 0})));
  1511. },
  1512. [230](turns, target, mul) {
  1513. const targetTypes = ["self","leader-self","leader-helper","sub-members"];
  1514. const typeArr = flags(target).map(n => targetTypes[n]);
  1515. return activeTurns(turns, powerUp({targets: typeArr}, null, p.mul({ atk: mul })));
  1516. },
  1517. [231](turns, awoken1, awoken2, awoken3, awoken4, awoken5, atk, rcv) {
  1518. return activeTurns(turns, powerUp(null, null, p.scaleStateKind([awoken1, awoken2, awoken3, awoken4, awoken5].filter(Boolean), null, null, p.mul({atk: atk, hp:0, rcv: rcv ?? 0}))));
  1519. },
  1520. [232](...ids) { return evolvedSkills(false, ids.map(id => this.parser(id))); },
  1521. [233](...ids) { return evolvedSkills(true, ids.map(id => this.parser(id))); },
  1522. [234](min, max) { return skillProviso(c.stage(min ?? 0, max ?? 0)); },
  1523. [235](attrs, lenMin, lenExact, atk, reducePercent, combo, damage) {
  1524. // const len = lenMin || lenExact; //宝珠长度
  1525. // const ee = Boolean(lenExact); //是否为刚好等于
  1526. //第二个参数为多少以上就算,第三个参数为多少以上才算
  1527. //return powerUp(null, null, p.mul({ atk: atk || 100}), c.exact('match-length', lenExact, flags(attr)), v.percent(percent), [combo ? addCombo(combo) : null, damage ? followAttackFixed(damage) : null].filter(Boolean), true);
  1528. //let powerup, condition;
  1529. let powerup = Boolean(lenMin)
  1530. ? p.scaleMatchLength(flags(attrs), lenMin, lenMin, [atk, 100], [0, 0])
  1531. : p.mul({ atk: atk || 100});
  1532. let condition = Boolean(lenExact)
  1533. ? c.exact('match-length', lenExact, flags(attrs))
  1534. : null;
  1535. let additional = [combo ? addCombo(combo) : null, damage ? followAttackFixed(damage) : null].filter(Boolean);
  1536. const eachTime = true;
  1537. return powerUp(null, null, powerup, condition, v.percent(reducePercent), additional, eachTime);
  1538. },
  1539. [236](...ids) { //随机变身
  1540. return henshin(ids.distinct(), true);
  1541. },
  1542. [237](turns, hp) { //改变HP上限
  1543. return activeTurns(turns,
  1544. powerUp(null, null, p.mul({ hp: hp }))
  1545. );
  1546. },
  1547. [238](turns, width, height, pos1, pos2) { //产云
  1548. return activeTurns(turns,
  1549. boardJammingStates('clouds', (pos1 && pos2) ? 'fixed' : 'random', { size: [width, height], positions: [pos1, pos2] })
  1550. );
  1551. },
  1552. [239](colum, turns, row) { //产封条
  1553. //const colums = flags(colum), rows = flags(row);
  1554. return activeTurns(turns,
  1555. boardJammingStates('immobility', 'fixed', { positions: {colums: flags(colum), rows: flags(row)} })
  1556. );
  1557. },
  1558. [241](turns, cap) { //改变伤害上限主动技
  1559. // const targetTypes = ["self","leader-self","leader-helper","sub-members"];
  1560. // const typeArr = flags(target).map(n => targetTypes[n]);
  1561. return activeTurns(turns,
  1562. increaseDamageCap(cap * 1e8, ["self"])
  1563. );
  1564. },
  1565. [243](turns, attrs, hpPercent, probPercent) { //掉落荆棘珠
  1566. return activeTurns(turns, orbDropIncrease(v.percent(probPercent), flags(attrs), 'thorn', v.xMaxHP(hpPercent)));
  1567. },
  1568. [244](turns, type) { //改变板面大小主动技
  1569. let width, height;
  1570. switch (type) {
  1571. case 1: {
  1572. width = 7;
  1573. height = 6;
  1574. break;
  1575. }
  1576. case 2: {
  1577. width = 5;
  1578. height = 3;
  1579. break;
  1580. }
  1581. case 3: {
  1582. width = 6;
  1583. height = 5;
  1584. break;
  1585. }
  1586. default: {
  1587. width = 6;
  1588. height = 5;
  1589. }
  1590. }
  1591. return activeTurns(turns, boardSizeChange(width, height));
  1592. },
  1593. [245](rarity, _2, _3, hp, atk, rcv) { //全员满足某种情况,现在是全部星级不一样
  1594. return powerUp(flags(_2), flags(_3), p.mul({ hp: hp || 100, atk: atk || 100, rcv: rcv || 100 }), c.compo('team-same-rarity', rarity));
  1595. },
  1596. [246](time, combo, cap) { //限定时间内转出多少C提高伤害上限
  1597. return CTW(v.constant(time), c.combos(combo) , increaseDamageCap(cap * 1e8, ["self"]));
  1598. },
  1599. [247](time, attr, min, cap) { //限定时间内转出多少色提高伤害上限
  1600. return CTW(v.constant(time), c.attrs(flags(attr), min) , increaseDamageCap(cap * 1e8, ["self"]));
  1601. },
  1602. [248](turns, ...ids) { //几回合后才生效的技能
  1603. return delayActiveTurns(turns,
  1604. ...ids.flatMap(id => this.parser(id))
  1605. );
  1606. },
  1607. [249](turns, attr, row1, row2, row3, row4, row5, count) {
  1608. const options = {
  1609. attrs: flags(attr),
  1610. };
  1611. if (count) {
  1612. options.count = count;
  1613. } else {
  1614. options.positions = [row1, row2, row3, row4, row5].map(flags);
  1615. }
  1616. return activeTurns(turns,
  1617. boardJammingStates('roulette', count ? 'random' : 'shape', options)
  1618. );
  1619. },
  1620. [1000](type, pos, ...ids) {
  1621. const posType = (type=>{
  1622. switch (type) {
  1623. case 1: return "after-me";
  1624. case 2: return "designated-position";
  1625. case 3: return "before-me";
  1626. default: return type;
  1627. }
  1628. })(type);
  1629. return obstructOpponent(posType, flags(pos), ids);
  1630. },
  1631. };
  1632. function renderSkillTitle(skillId, { showTurns } = {}) {
  1633. const skill = Skills[skillId];
  1634. const div = document.createElement("summary");
  1635. div.className = "evolved-skill-title";
  1636. const name = div.appendChild(document.createElement("span"));
  1637. name.className = "skill-name";
  1638. name.textContent = skill.name;
  1639. name.setAttribute("data-skillid", skillId);
  1640. //name.onclick = fastShowSkill;
  1641. if (showTurns) {
  1642. const cd = div.appendChild(document.createElement("span"));
  1643. cd.className = "skill-cd";
  1644. cd.textContent = skill.initialCooldown - skill.maxLevel + 1;
  1645. if (skill.maxLevel > 1) {
  1646. const level = div.appendChild(document.createElement("span"));
  1647. level.className = "skill-level-label";
  1648. level.textContent = skill.maxLevel;
  1649. }
  1650. }
  1651. return div;
  1652. }
  1653. function renderSkillEntry(skills)
  1654. {
  1655. //按住Ctrl点击技能在控制台输出技能的对象
  1656. function showParsedSkill(event) {
  1657. if (event.ctrlKey) {
  1658. //const skillId = parseInt(this.getAttribute("data-skill-id"));
  1659. console.log(this.skill);
  1660. }
  1661. }
  1662. const ul = document.createElement("ul");
  1663. ul.className = "card-skill-list";
  1664. skills.forEach(skill=>{
  1665. const li = ul.appendChild(document.createElement("li"));
  1666. li.className = skill.kind;
  1667. li.appendChild(renderSkill(skill));
  1668. //li.setAttribute("data-skill-id", skill.id);
  1669. li.skill = skill;
  1670. li.addEventListener("click", showParsedSkill);
  1671. });
  1672. //技能显示效果的合并,技能原始对象的合并在“function skillParser”里
  1673. if (merge_skill)
  1674. {
  1675. const searchKind = [ //需要配合并的技能类型
  1676. SkillKinds.SetOrbState,
  1677. SkillKinds.BoardChange,
  1678. SkillKinds.GenerateOrbs,
  1679. SkillKinds.FixedOrbs,
  1680. SkillKinds.BoardJammingStates,
  1681. ];
  1682. let boardChange = skills.filter(skill=>{
  1683. if (skill.kind == SkillKinds.ActiveTurns) {
  1684. //如果是主动技,任一子技能属于这个范围就可以了
  1685. return skill.skills.some(subSkill=>searchKind.includes(subSkill.kind))
  1686. } else {
  1687. return searchKind.includes(skill.kind);
  1688. }
  1689. }).flatMap(skill=>skill.kind == SkillKinds.ActiveTurns ?
  1690. //主动技还需要再筛选一遍子技能
  1691. skill.skills.filter(subSkill=>searchKind.includes(subSkill.kind)) :
  1692. skill);
  1693. if (boardChange.filter(skill=>skill.kind != SkillKinds.SetOrbState).length > 0)
  1694. {
  1695. const boardsBar = new BoardSet(new Board(), new Board(null,7,6), new Board(null,5,4));
  1696. for (const skill of boardChange)
  1697. {
  1698. switch (skill.kind)
  1699. {
  1700. case SkillKinds.BoardChange: { //洗版
  1701. const attrs = skill.attrs;
  1702. boardsBar.boards.forEach(board=>board.randomFill(attrs));
  1703. break;
  1704. }
  1705. case SkillKinds.GenerateOrbs: { //产生珠子
  1706. let orbs = skill.orbs, exclude = skill.exclude, count = skill.count;
  1707. boardsBar.boards.forEach(board=>board.generateOrbs(orbs, count, exclude));
  1708. break;
  1709. }
  1710. case SkillKinds.FixedOrbs: { //固定位置产生珠子
  1711. for (const generate of skill.generates)
  1712. {
  1713. let orb = generate.orbs?.[0];
  1714. if (generate.type == 'shape') {
  1715. boardsBar.boards.forEach(board=>board.setShape(generate.positions, orb));
  1716. } else {
  1717. if (generate.type == 'row')
  1718. boardsBar.boards.forEach(board=>board.setRows(generate.positions, orb));
  1719. else
  1720. boardsBar.boards.forEach(board=>board.setColumns(generate.positions, orb));
  1721. }
  1722. }
  1723. break;
  1724. }
  1725. case SkillKinds.BoardJammingStates: { //产生板面干扰
  1726. const { state, posType, size, positions, count, time } = skill;
  1727. if (state == 'roulette') { //轮盘位
  1728. boardsBar.boards.forEach(board=>{
  1729. if (posType == 'random')
  1730. board.generateBlockStates('roulette', count);
  1731. else
  1732. board.setShape(positions, null, null, 'roulette');
  1733. });
  1734. }
  1735. if (state == 'clouds') { //云
  1736. boardsBar.boards.forEach(board=>{
  1737. board.generateBlockStates('clouds', count, size, positions);
  1738. });
  1739. }
  1740. if (state == 'immobility') { //封条
  1741. const {colums, rows} = skill.positions;
  1742. boardsBar.boards.forEach(board=>{
  1743. board.setColumns(colums, null, null, 'immobility');
  1744. board.setRows(rows, null, null, 'immobility');
  1745. });
  1746. }
  1747. break;
  1748. }
  1749. case SkillKinds.SetOrbState: { //修改珠子状态
  1750. const { orbs, state } = skill;
  1751. const count = skill?.arg?.count?.value ?? 99;
  1752. boardsBar.boards.forEach(board=>{
  1753. board.generateOrbs(orbs, count, null, state);
  1754. });
  1755. break;
  1756. }
  1757. }
  1758. }
  1759. const li = ul.appendChild(document.createElement("li"));
  1760. boardsBar.boards.forEach(board=>board.refreshTable());
  1761. li.appendChild(boardsBar.node);
  1762. li.className = "merge-board";
  1763. }
  1764. }
  1765. return ul;
  1766. }
  1767. //行列拆分成顺序和逆序的正常数字
  1768. function posSplit(pos, axis = 'row')
  1769. {
  1770. const max = axis == 'row' ? 5 : 6;
  1771. return [
  1772. pos.filter(n=>n<=2).map(n=>n+1),
  1773. pos.filter(n=>n>=3).reverse().map(n=>max-n),
  1774. ];
  1775. //return {sequence: pos.filter(n=>n<=2).map(n=>n+1), reverse: pos.filter(n=>n>=3).reverse().map(n=>max-n)};
  1776. }
  1777. function createSkillIcon(iconType, className){
  1778. const idoc = document.createElement("icon");
  1779. idoc.className = `icon-skill${className ? ` ${className}` : ''}`;
  1780. idoc.setAttribute("data-icon-type", iconType);
  1781. return idoc;
  1782. }
  1783. function renderSkill(skill, option = {})
  1784. {
  1785. const frg = document.createDocumentFragment();
  1786. if (typeof localTranslating == "undefined") return frg;
  1787. const tsp = localTranslating.skill_parse;
  1788. const createIcon = createSkillIcon;
  1789. if (Array.isArray(skill))
  1790. {
  1791. frg.ap(skill.map(_skill=>renderSkill(_skill)));
  1792. return frg;
  1793. }
  1794. switch (skill.kind) {
  1795. case SkillKinds.Error: {
  1796. let dict = { type: skill.kind };
  1797. frg.ap(tsp.skill.error(dict));
  1798. break;
  1799. }
  1800. case SkillKinds.Unknown: {
  1801. console.log(skill);
  1802. let dict = {
  1803. type: skill.kind
  1804. };
  1805. frg.ap(tsp.skill.unknown(dict));
  1806. break;
  1807. }
  1808. case SkillKinds.ActiveTurns: { //有回合的行动
  1809. let { turns, skills } = skill;
  1810. let dict = {
  1811. turns: Array.isArray(turns) ? turns.join(tsp.word.range_hyphen().textContent) : turns,
  1812. skills: skills?.map(renderSkill)?.nodeJoin(tsp.word.semicolon()),
  1813. };
  1814. frg.ap(tsp.skill.active_turns(dict));
  1815. break;
  1816. }
  1817. case SkillKinds.DelayActiveTurns: { //有推迟回合的行动
  1818. let { turns, skills } = skill;
  1819. let dict = {
  1820. turns: Array.isArray(turns) ? turns.join(tsp.word.range_hyphen().textContent) : turns,
  1821. icon: createIcon(SkillKinds.Delay),
  1822. skills: renderSkillEntry(skills),
  1823. };
  1824. frg.ap(tsp.skill.delay_active_turns(dict));
  1825. //独立出来
  1826. //frg.ap();
  1827. break;
  1828. }
  1829. case SkillKinds.RandomSkills: { //随机技能
  1830. let skills = skill.skills;
  1831. const ul = document.createElement("ul");
  1832. ul.className = "random-active-skill";
  1833. skills.forEach((subSkill, idx)=>{
  1834. const li = ul.appendChild(document.createElement("li"));
  1835. const details = li.appendChild(document.createElement("details"));
  1836. details.open = false; //随机类技能默认关闭
  1837. details.className = "skill-details";
  1838. details.appendChild(renderSkillTitle(skill.params[idx]));
  1839. details.appendChild(renderSkillEntry(subSkill));
  1840. });
  1841. let dict = {
  1842. skills: ul,
  1843. };
  1844. frg.ap(tsp.skill.random_skills(dict));
  1845. break;
  1846. }
  1847. case SkillKinds.EvolvedSkills: { //技能进化
  1848. let skills = skill.skills, loop = skill.loop;
  1849. const ul = document.createElement("ul");
  1850. ul.className = "evolved-active-skill";
  1851. skills.forEach((subSkill, idx)=>{
  1852. const li = ul.appendChild(document.createElement("li"));
  1853. const details = li.appendChild(document.createElement("details"));
  1854. details.open = true; //进化类技能默认打开
  1855. details.className = "skill-details";
  1856. details.appendChild(renderSkillTitle(skill.params[idx], { showTurns:true }));
  1857. details.appendChild(renderSkillEntry(subSkill));
  1858. });
  1859. let dict = {
  1860. skills: ul,
  1861. };
  1862. frg.ap(tsp.skill.evolved_skills(dict));
  1863. if (loop) frg.ap(tsp.skill.evolved_skills_loop({icon: createIcon("evolved-skill-loop")}));
  1864. break;
  1865. }
  1866. case SkillKinds.Delay: { //威吓
  1867. let dict = {
  1868. icon: createIcon(skill.kind),
  1869. };
  1870. frg.ap(tsp.skill.delay(dict));
  1871. break;
  1872. }
  1873. case SkillKinds.MassAttack: { //全体攻击
  1874. let dict = {
  1875. icon: createIcon(skill.kind),
  1876. };
  1877. frg.ap(tsp.skill.mass_attack(dict));
  1878. break;
  1879. }
  1880. case SkillKinds.LeaderChange: { //切换队长
  1881. let type = skill.type;
  1882. let dict = {
  1883. icon: createIcon(skill.kind),
  1884. target: type ? tsp.target.team_last() : tsp.target.self(),
  1885. };
  1886. frg.ap(tsp.skill.leader_change(dict));
  1887. break;
  1888. }
  1889. case SkillKinds.NoSkyfall: { //无天降
  1890. let dict = {
  1891. icon: createIcon(skill.kind),
  1892. };
  1893. frg.ap(tsp.skill.no_skyfall(dict));
  1894. break;
  1895. }
  1896. case SkillKinds.SelfHarm: { //主动自残
  1897. let value = skill.value;
  1898. let dict = {
  1899. icon: createIcon("heal", "hp-decr"),
  1900. value: renderValue(value, {percent: true}),
  1901. stats: tsp.stats.hp(),
  1902. };
  1903. frg.ap(tsp.skill.self_harm(dict));
  1904. break;
  1905. }
  1906. case SkillKinds.Heal: { //主动回血buff
  1907. let value = skill.value;
  1908. let dict = {
  1909. icon: createIcon("heal", "hp-incr"),
  1910. //icon: createIcon("auto-heal"),
  1911. value: renderValue(value, {unit: tsp.unit.point, percent: value.kind == SkillValueKind.xRCV ? false : true}),
  1912. stats: tsp.stats.hp(),
  1913. };
  1914. frg.ap(tsp.skill.heal(dict));
  1915. break;
  1916. }
  1917. case SkillKinds.AutoHealBuff: { //自动回血buff
  1918. let dict = {
  1919. icon: createIcon("auto-heal"),
  1920. value: renderValue(skill.value, {unit: tsp.unit.point, percent: true}),
  1921. stats: tsp.stats.hp(),
  1922. };
  1923. frg.ap(tsp.skill.auto_heal_buff(dict));
  1924. break;
  1925. }
  1926. case SkillKinds.DefenseBreak: { //破防
  1927. let dict = {
  1928. icon: createIcon(skill.kind),
  1929. value: renderValue(skill.value, {percent: true}),
  1930. };
  1931. frg.ap(tsp.skill.defense_break(dict));
  1932. break;
  1933. }
  1934. case SkillKinds.Poison: { //毒
  1935. let dict = {
  1936. icon: createIcon(skill.kind),
  1937. belong_to: tsp.target.self(),
  1938. target: tsp.target.enemy_all(),
  1939. stats: tsp.stats.hp(),
  1940. value: renderValue(skill.value),
  1941. };
  1942. frg.ap(tsp.skill.poison(dict));
  1943. break;
  1944. }
  1945. case SkillKinds.TimeExtend: { //时间变化buff
  1946. let value = skill.value;
  1947. let dict = {
  1948. icon: createIcon("status-time", SkillValue.isLess(value) ? "time-decr" : "time-incr"),
  1949. value: renderValue(value, { unit:tsp.unit.seconds, plusSign: value.kind != SkillValueKind.Percent, percent: SkillValue.isLess(value) }),
  1950. };
  1951. frg.ap(tsp.skill.time_extend(dict));
  1952. break;
  1953. }
  1954. case SkillKinds.FollowAttack: { //队长技倍率追打
  1955. let dict = {
  1956. //icon: createIcon("follow_attack"),
  1957. belong_to: tsp.target.self(),
  1958. target: tsp.target.enemy(),
  1959. value: renderValue(skill.value),
  1960. };
  1961. frg.ap(tsp.skill.follow_attack(dict));
  1962. break;
  1963. }
  1964. case SkillKinds.FollowAttackFixed: { //队长技固伤追打
  1965. let damage = skill.value;
  1966. let dict = {
  1967. damage: renderValue(damage, {unit: tsp.unit.point}),
  1968. attr: renderAttrs('fixed'),
  1969. };
  1970. frg.ap(tsp.skill.follow_attack_fixed(dict));
  1971. break;
  1972. }
  1973. case SkillKinds.AutoHeal: { //队长技自动回血
  1974. let dict = {
  1975. icon: createIcon(skill.kind),
  1976. belong_to: tsp.target.self(),
  1977. value: renderValue(skill.value),
  1978. stats: tsp.stats.hp(),
  1979. };
  1980. frg.ap(tsp.skill.auto_heal(dict));
  1981. break;
  1982. }
  1983. case SkillKinds.CTW: { //时间暂停
  1984. let {time, cond, skill: subSkill} = skill;
  1985. let dict = {
  1986. icon: createIcon(skill.kind),
  1987. time: renderValue(time, { unit: tsp.unit.seconds }),
  1988. };
  1989. if (cond) {
  1990. let dict2 = {
  1991. cond: renderCondition(cond),
  1992. skill: renderSkill(subSkill)
  1993. }
  1994. dict.addition = tsp.skill.ctw_addition(dict2);
  1995. }
  1996. frg.ap(tsp.skill.ctw(dict));
  1997. break;
  1998. }
  1999. case SkillKinds.Gravity: { //重力
  2000. let dict = {
  2001. icon: createIcon(skill.kind),
  2002. target: tsp.target.enemy(),
  2003. value: renderValue(skill.value, { percent:true }),
  2004. };
  2005. frg.ap(tsp.skill.gravity(dict));
  2006. break;
  2007. }
  2008. case SkillKinds.Resolve: { //根性
  2009. let prob = skill.prob;
  2010. let dict = {
  2011. icon: createIcon(skill.kind),
  2012. stats: renderStat('chp'),
  2013. min: renderValue(skill.min, { percent:true }),
  2014. max: renderValue(skill.max, { percent:true }),
  2015. };
  2016. frg.ap(tsp.skill.resolve(dict));
  2017. break;
  2018. }
  2019. case SkillKinds.DamageEnemy: { //大炮和固伤
  2020. let attr = skill.attr, target = skill.target, damage = skill.damage, times = skill.times;
  2021. if (attr == null) break; //没有属性时,编号为0的空技能
  2022. let dict = {
  2023. target: target === 'all' ? tsp.target.enemy_all() : target === 'single' ? tsp.target.enemy_one() : tsp.target.enemy_attr({attr: renderAttrs(target, {affix: true})}),
  2024. damage: renderValue(damage, {unit: tsp.unit.point}),
  2025. attr: renderAttrs(attr, {affix: (attr === 'self' || attr === 'fixed') ? false : true}),
  2026. };
  2027. if (times)
  2028. {
  2029. dict.times = tsp.skill.damage_enemy_times({
  2030. times: renderValue(v.constant(times), {unit: tsp.unit.times})
  2031. });
  2032. dict.totalDamage = tsp.skill.damage_enemy_count({
  2033. damage: renderValue(v.constant(damage.value * times), {unit: tsp.unit.point})
  2034. });
  2035. }
  2036. frg.ap(tsp.skill.damage_enemy(dict));
  2037. break;
  2038. }
  2039. case SkillKinds.Unbind: { //解封
  2040. let normal = skill.normal, awakenings = skill.awakenings, matches = skill.matches;
  2041. let effects = [];
  2042. let enabledStats = [normal, awakenings, matches].filter(Boolean);
  2043. if (merge_skill && enabledStats.length >= 2 && enabledStats.every((s,i,arr)=>s==arr[0]))
  2044. {
  2045. if (normal)
  2046. {
  2047. effects.push(tsp.skill.unbind_normal({icon: createIcon("unbind-normal")}));
  2048. }
  2049. if (awakenings)
  2050. {
  2051. effects.push(tsp.skill.unbind_awakenings({icon: createIcon("unbind-awakenings")}));
  2052. }
  2053. if (matches)
  2054. {
  2055. effects.push(tsp.skill.unbind_matches({icon: createIcon("unbind-matches")}));
  2056. }
  2057. let dict = {
  2058. turns: enabledStats[0],
  2059. stats: effects.nodeJoin(tsp.word.slight_pause()),
  2060. }
  2061. frg.ap(tsp.skill.unbind(dict));
  2062. }
  2063. else
  2064. {
  2065. if (normal)
  2066. {
  2067. let dict = {
  2068. turns: normal,
  2069. stats: tsp.skill.unbind_normal({icon: createIcon("unbind-normal")}),
  2070. }
  2071. effects.push(tsp.skill.unbind(dict));
  2072. }
  2073. if (awakenings)
  2074. {
  2075. let dict = {
  2076. turns: awakenings,
  2077. stats: tsp.skill.unbind_awakenings({icon: createIcon("unbind-awakenings")}),
  2078. }
  2079. effects.push(tsp.skill.unbind(dict));
  2080. }
  2081. if (matches)
  2082. {
  2083. let dict = {
  2084. turns: matches,
  2085. stats: tsp.skill.unbind_matches({icon: createIcon("unbind-matches")}),
  2086. }
  2087. effects.push(tsp.skill.unbind(dict));
  2088. }
  2089. frg.ap(effects.nodeJoin(tsp.word.comma()));
  2090. }
  2091. break;
  2092. }
  2093. case SkillKinds.BindSkill: {
  2094. let dict = {
  2095. icon: createIcon(skill.kind)
  2096. };
  2097. frg.ap(tsp.skill.bind_skill(dict));
  2098. break;
  2099. }
  2100. case SkillKinds.BoardChange: { //洗版
  2101. const attrs = skill.attrs;
  2102. let dict = {
  2103. orbs: renderOrbs(attrs),
  2104. };
  2105. frg.ap(tsp.skill.board_change(dict));
  2106. if (!merge_skill)
  2107. {
  2108. const boardsBar = new BoardSet(new Board(attrs), new Board(attrs,7,6), new Board(attrs,5,4));
  2109. boardsBar.boards.forEach(board=>{
  2110. board.refreshTable();
  2111. });
  2112. frg.ap(boardsBar.node);
  2113. }
  2114. break;
  2115. }
  2116. case SkillKinds.SkillBoost: { //溜
  2117. const min = skill.min, max = skill.max;
  2118. let dict = {
  2119. icon: createIcon(skill.kind, SkillValue.isLess(min) ? "boost-decr" : "boost-incr"),
  2120. turns_min: renderValue(min, { unit:tsp.unit.turns, plusSign:true }),
  2121. };
  2122. if (max.value !== min.value) {
  2123. dict.turns_max = tsp.skill.skill_boost_range(
  2124. {turns: renderValue(max, { unit:tsp.unit.turns, plusSign:true })}
  2125. );
  2126. }
  2127. frg.ap(tsp.skill.skill_boost(dict));
  2128. break;
  2129. }
  2130. case SkillKinds.AddCombo: { //+C
  2131. const value = skill.value;
  2132. let icon = createIcon(skill.kind);
  2133. icon.setAttribute("data-add-combo", value);
  2134. let dict = {
  2135. icon: icon,
  2136. value: value,
  2137. };
  2138. frg.ap(tsp.skill.add_combo(dict));
  2139. break;
  2140. }
  2141. case SkillKinds.FixedTime: { //固定手指
  2142. const value = skill.value;
  2143. let dict = {
  2144. icon: createIcon(skill.kind),
  2145. value: renderValue(value, { unit: tsp.unit.seconds }),
  2146. };
  2147. frg.ap(tsp.skill.fixed_time(dict));
  2148. break;
  2149. }
  2150. case SkillKinds.MinMatchLength: { //最低匹配长度
  2151. const value = skill.value;
  2152. let dict = {
  2153. icon: createIcon(skill.kind),
  2154. unmatchable: value - 1,
  2155. matchable: value,
  2156. };
  2157. frg.ap(tsp.skill.min_match_length(dict));
  2158. break;
  2159. }
  2160. case SkillKinds.DropRefresh: { //刷版
  2161. let dict = {
  2162. icon: createIcon(skill.kind),
  2163. };
  2164. frg.ap(tsp.skill.drop_refresh(dict));
  2165. break;
  2166. }
  2167. case SkillKinds.Drum: { //太鼓达人音效
  2168. frg.ap(tsp.skill.drum());
  2169. break;
  2170. }
  2171. case SkillKinds.AutoPath: { //小龙的萌新技能
  2172. frg.ap(tsp.skill.auto_path());
  2173. break;
  2174. }
  2175. case SkillKinds.Vampire: { //吸血
  2176. let attr = skill.attr, damage = skill.damage, heal = skill.heal;
  2177. let _dict = {
  2178. target: tsp.target.enemy_one(),
  2179. damage: renderValue(damage),
  2180. attr: renderAttrs(attr, {affix: (attr === 'self' || attr === 'fixed') ? false : true}),
  2181. };
  2182. let dict = {
  2183. icon: createIcon("heal", "hp-incr"),
  2184. damage_enemy: tsp.skill.damage_enemy(_dict),
  2185. heal: renderValue(heal, {percent: true}),
  2186. };
  2187. frg.ap(tsp.skill.vampire(dict));
  2188. break;
  2189. }
  2190. case SkillKinds.CounterAttack: { //反击
  2191. let attr = skill.attr, prob = skill.prob, value = skill.value;
  2192. let dict = {
  2193. icon: createIcon(skill.kind),
  2194. target: tsp.target.enemy(),
  2195. chance: prob.value < 1 ? tsp.value.prob({value: renderValue(prob, { percent:true })}) : null,
  2196. value: renderValue(value),
  2197. attr: renderAttrs(attr, {affix: true}),
  2198. };
  2199. frg.ap(tsp.skill.counter_attack(dict));
  2200. break;
  2201. }
  2202. case SkillKinds.ChangeOrbs: { //珠子变换
  2203. let changes = skill.changes;
  2204. let subDocument = [];
  2205. for (const change of changes)
  2206. {
  2207. let dict = {
  2208. from: renderOrbs(change.from),
  2209. to: renderOrbs(change.to),
  2210. };
  2211. subDocument.push(tsp.skill.change_orbs(dict));
  2212. }
  2213. frg.ap(subDocument.nodeJoin(tsp.word.comma()));
  2214. break;
  2215. }
  2216. case SkillKinds.GenerateOrbs: { //产生珠子
  2217. let orbs = skill.orbs, exclude = skill.exclude, count = skill.count;
  2218. let dict = {
  2219. exclude: exclude?.length ? tsp.word.affix_exclude({cotent: renderOrbs(exclude)}) : void 0,
  2220. orbs: renderOrbs(orbs),
  2221. value: count,
  2222. };
  2223. frg.ap(tsp.skill.generate_orbs(dict));
  2224. if (!merge_skill)
  2225. {
  2226. const boardsBar = new BoardSet(new Board(), new Board(null,7,6), new Board(null,5,4));
  2227. boardsBar.boards.forEach(board=>{
  2228. board.generateOrbs(orbs, count, exclude);
  2229. board.refreshTable();
  2230. });
  2231. frg.ap(boardsBar.node);
  2232. }
  2233. break;
  2234. }
  2235. case SkillKinds.FixedOrbs: { //固定位置产生珠子
  2236. let generates = skill.generates;
  2237. let slight_pause = tsp.word.slight_pause().textContent;
  2238. let subDocument = [];
  2239. const boardsBar = merge_skill ? null : new BoardSet(new Board(), new Board(null,7,6), new Board(null,5,4));
  2240. for (const generate of generates)
  2241. {
  2242. let orb = generate.orbs?.[0];
  2243. let dict = {
  2244. orbs: renderOrbs(orb),
  2245. };
  2246. if (generate.type == 'shape')
  2247. {
  2248. dict.position = tsp.position.shape();
  2249. boardsBar?.boards?.forEach(board=>board.setShape(generate.positions, orb));
  2250. }else
  2251. {
  2252. let posFrgs = [];
  2253. if (generate.positions.length == 0) continue;
  2254. if (generate.type == 'row')
  2255. {
  2256. const [sequence, reverse] = posSplit(generate.positions, 'row');
  2257. if (sequence.length) posFrgs.push(tsp.position.top({pos: sequence.join(slight_pause)}));
  2258. if (reverse.length) posFrgs.push(tsp.position.bottom({pos: reverse.join(slight_pause)}));
  2259. boardsBar?.boards?.forEach(board=>board.setRows(generate.positions, orb));
  2260. }else
  2261. {
  2262. const [sequence, reverse] = posSplit(generate.positions, 'colum');
  2263. if (sequence.length) posFrgs.push(tsp.position.left({pos: sequence.join(slight_pause)}));
  2264. if (reverse.length) posFrgs.push(tsp.position.right({pos: reverse.join(slight_pause)}));
  2265. boardsBar?.boards?.forEach(board=>board.setColumns(generate.positions, orb));
  2266. }
  2267. dict.position = posFrgs.nodeJoin(tsp.word.slight_pause());
  2268. }
  2269. subDocument.push(tsp.skill.fixed_orbs(dict));
  2270. }
  2271. frg.ap(subDocument.nodeJoin(tsp.word.comma()));
  2272. if (boardsBar) {
  2273. boardsBar.boards.forEach(board=>board.refreshTable());
  2274. frg.ap(boardsBar.node);
  2275. }
  2276. break;
  2277. }
  2278. case SkillKinds.OrbDropIncrease: { //增加天降
  2279. let {prob, attrs, flag, value} = skill;
  2280. prob = prob || v.percent(100);
  2281. let dict = {
  2282. prob: renderValue(prob, {percent: true}),
  2283. orbs: renderOrbs(attrs, {className: "drop", affix: true}),
  2284. flag: flag && tsp.orbs[flag]({icon: createIcon("orb-" + flag)}) || null,
  2285. };
  2286. if (value?.kind == SkillValueKind.xMaxHP) {
  2287. dict.value = tsp.skill.orb_thorn({value: renderValue(value, {percent: true})})
  2288. }
  2289. frg.ap(flag ? tsp.skill.orb_drop_increase_flag(dict) : tsp.skill.orb_drop_increase(dict));
  2290. break;
  2291. }
  2292. case SkillKinds.VoidEnemyBuff: {
  2293. let buffs = skill.buffs;
  2294. let subDocument = [];
  2295. for (const buff of buffs)
  2296. {
  2297. let dict = {
  2298. icon: createIcon(buff),
  2299. };
  2300. subDocument.push(tsp.skill[buff.replace(/\-/g,'_')](dict));
  2301. }
  2302. let dict = {
  2303. buff: subDocument.nodeJoin(tsp.word.slight_pause()),
  2304. };
  2305. frg.ap(tsp.skill.void_enemy_buff(dict));
  2306. break;
  2307. }
  2308. case SkillKinds.ChangeAttribute: {
  2309. let attr = skill.attr, target = skill.target;
  2310. let dict = {
  2311. attrs: renderAttrs(attr, {affix: true}),
  2312. target: target === 'opponent' ? tsp.target.enemy_all() : tsp.target.self(),
  2313. };
  2314. frg.ap(tsp.skill.change_attribute(dict));
  2315. break;
  2316. }
  2317. case SkillKinds.SetOrbState: {
  2318. let orbs = skill.orbs, state = skill.state, arg = skill.arg;
  2319. let dict = {
  2320. orbs: renderOrbs(orbs, {className: state, affix: true}),
  2321. icon: createIcon('orb-' + state),
  2322. };
  2323. switch (state)
  2324. {
  2325. case "enhanced":{
  2326. dict.value = renderValue(arg.enhance, {percent: true});
  2327. frg.ap(tsp.skill.set_orb_state_enhanced(dict));
  2328. break;
  2329. }
  2330. case "locked":{
  2331. if (arg.count.value < 42)
  2332. dict.value = renderValue(arg.count, {unit: tsp.unit.orbs});
  2333. frg.ap(tsp.skill.set_orb_state_locked(dict));
  2334. break;
  2335. }
  2336. case "unlocked":{
  2337. frg.ap(tsp.skill.set_orb_state_unlocked(dict));
  2338. break;
  2339. }
  2340. case "bound":{
  2341. frg.ap(tsp.skill.set_orb_state_bound(dict));
  2342. break;
  2343. }
  2344. }
  2345. break;
  2346. }
  2347. case SkillKinds.RateMultiply: {
  2348. let rate = skill.rate, value = skill.value;
  2349. let dict = {
  2350. rate: tsp.skill["rate_multiply_" + rate]({icon: createIcon(skill.kind + "-" + rate)}),
  2351. value: renderValue(value),
  2352. };
  2353. frg.ap(tsp.skill.rate_multiply(dict));
  2354. break;
  2355. }
  2356. case SkillKinds.ReduceDamage: {
  2357. let attrs = skill.attrs, percent = skill.percent, condition = skill.condition, prob = skill.prob;
  2358. let dict = {
  2359. icon: createIcon(skill.kind),
  2360. attrs: renderAttrs(attrs, {affix: true}),
  2361. value: renderValue(percent, {percent: true}),
  2362. condition: condition ? renderCondition(condition) : null,
  2363. chance: prob.value < 1 ? tsp.value.prob({value: renderValue(prob, { percent:true })}) : null,
  2364. };
  2365. frg.ap(tsp.skill.reduce_damage(dict));
  2366. break;
  2367. }
  2368. case SkillKinds.PowerUp: {
  2369. let { attrs, types, targets, condition, value, reduceDamage, additional, eachTime } = skill;
  2370. let dict = {
  2371. icon: createIcon(skill.kind),
  2372. };
  2373. let comma = tsp.word.comma;
  2374. if (condition) dict.condition = renderCondition(condition);
  2375. let targetDict = {}, attrs_types = [];
  2376. if (attrs?.length && !isEqual(attrs, Attributes.all()))
  2377. {
  2378. targetDict.attrs = renderAttrs(attrs || [], {affix: attrs?.filter(attr=> attr !== 5)?.length});
  2379. attrs_types.push(targetDict.attrs);
  2380. }
  2381. if (types?.length)
  2382. {
  2383. targetDict.types = renderTypes(types || [], {affix: true});
  2384. attrs_types.push(targetDict.types);
  2385. }
  2386. if (targets != undefined)
  2387. {
  2388. targetDict.target = targets.map(target=>
  2389. tsp?.target[target.replaceAll("-","_")]?.())
  2390. .nodeJoin(tsp.word.slight_pause());
  2391. attrs_types.push(targetDict.target);
  2392. }
  2393. if (attrs_types.length)
  2394. {
  2395. targetDict.attrs_types = attrs_types.nodeJoin(tsp.word.slight_pause());
  2396. }
  2397. if (attrs_types.length) dict.targets = tsp.skill.power_up_targets(targetDict);
  2398. if (value){
  2399. /*if (attrs?.includes(5) && value.kind == SkillPowerUpKind.Multiplier)
  2400. { //如果属性有5,则是回复力
  2401. let _value = Object.assign({}, value);
  2402. _value.rcv = value.atk;
  2403. _value.atk = value.rcv;
  2404. value = _value;
  2405. }*/
  2406. if (value.kind == SkillPowerUpKind.Multiplier && Boolean(value.hp || value.atk || value.rcv) == false)
  2407. {
  2408. //不显示 value
  2409. }else
  2410. {
  2411. dict.value = renderPowerUp(value);
  2412. }
  2413. }
  2414. if (reduceDamage && reduceDamage.value > 0) {
  2415. let reduceDamageNode = tsp.skill.reduce_damage({
  2416. value: renderValue(reduceDamage, {percent: true}),
  2417. icon: createIcon("reduce-damage"),
  2418. });
  2419. dict.reduceDamage = [comma(), reduceDamageNode].nodeJoin();
  2420. }
  2421. if (additional?.length) {
  2422. let additionalNode = additional.filter(Boolean).map(subSkill=>renderSkill(subSkill, option));
  2423. dict.additional = [comma(), additionalNode.nodeJoin(comma())].nodeJoin();
  2424. }
  2425. if (eachTime) {
  2426. dict.each_time = tsp.word.each_time();
  2427. }
  2428. frg.ap(tsp.skill.power_up(dict));
  2429. break;
  2430. }
  2431. case SkillKinds.Henshin: { //变身
  2432. let ids = skill.ids, random = skill.random;
  2433. let doms = ids.map(id=>{
  2434. let dom = cardN(id);
  2435. dom.monDom.onclick = changeToIdInSkillDetail;
  2436. return dom; })
  2437. let dict = {
  2438. cards: doms.nodeJoin(),
  2439. }
  2440. frg.ap(random ?
  2441. tsp.skill.random_henshin(dict) :
  2442. tsp.skill.henshin(dict)
  2443. );
  2444. break;
  2445. }
  2446. case SkillKinds.VoidPoison: { //毒无效
  2447. let dict = {
  2448. poison: renderOrbs([7,8], {affix: true})
  2449. }
  2450. frg.ap(tsp.skill.void_poison(dict));
  2451. break;
  2452. }
  2453. case SkillKinds.SkillProviso: { //条件限制才能用技能
  2454. let cond = skill.cond;
  2455. let dict = {
  2456. condition: renderCondition(cond)
  2457. }
  2458. frg.ap(tsp.skill.skill_proviso(dict));
  2459. break;
  2460. }
  2461. case SkillKinds.ImpartAwakenings: { //赋予队员觉醒
  2462. let attrs = skill.attrs, types = skill.types, awakenings = skill.awakenings;
  2463. let dict = {
  2464. awakenings: renderAwakenings(awakenings, {affix: true}),
  2465. }
  2466. let attrs_types = [];
  2467. if (attrs?.length && !isEqual(attrs, Attributes.all()))
  2468. {
  2469. dict.attrs = renderAttrs(attrs || [], {affix: attrs?.filter(attr=> attr !== 5)?.length});
  2470. attrs_types.push(dict.attrs);
  2471. }
  2472. if (types?.length)
  2473. {
  2474. dict.types = renderTypes(types || [], {affix: true});
  2475. attrs_types.push(dict.types);
  2476. }
  2477. if (attrs_types.length)
  2478. {
  2479. dict.attrs_types = attrs_types.nodeJoin(tsp.word.slight_pause());
  2480. }
  2481. frg.ap(tsp.skill.impart_awoken(dict));
  2482. break;
  2483. }
  2484. case SkillKinds.ObstructOpponent: { //条件限制才能用技能
  2485. let type = skill.type, pos = skill.pos, enemy_skills = skill.enemy_skills;
  2486. let slight_pause = tsp.word.slight_pause().textContent;
  2487. let dict = {
  2488. skills: enemy_skills.join(slight_pause)
  2489. }
  2490. let targetDict = { positions: pos?.map(p=>p+1).join(slight_pause)}
  2491. switch (type)
  2492. {
  2493. case "after-me": {
  2494. dict.target = tsp.skill.obstruct_opponent_after_me(targetDict);
  2495. break;
  2496. }
  2497. case "designated-position": {
  2498. dict.target = tsp.skill.obstruct_opponent_designated_position(targetDict);
  2499. break;
  2500. }
  2501. case "before-me": {
  2502. dict.target = tsp.skill.obstruct_opponent_before_me(targetDict);
  2503. break;
  2504. }
  2505. default: {
  2506. dict.target = tsp.cond.unknown();
  2507. break;
  2508. }
  2509. }
  2510. frg.ap(tsp.skill.obstruct_opponent(dict));
  2511. break;
  2512. }
  2513. case SkillKinds.IncreaseDamageCap: { //增加伤害上限
  2514. const {cap, targets} = skill;
  2515. let dict = {
  2516. icon: createIcon(skill.kind),
  2517. targets: targets.map(target=>
  2518. tsp?.target[target.replaceAll("-","_")]?.())
  2519. .nodeJoin(tsp.word.slight_pause()),
  2520. cap: cap.bigNumberToString(),
  2521. };
  2522. frg.ap(tsp.skill.increase_damage_cap(dict));
  2523. break;
  2524. }
  2525. case SkillKinds.BoardJammingStates: { //板面产生干扰状态
  2526. const { state, posType, positions, count, time, attrs } = skill;
  2527. const boardsBar = merge_skill ? null : new BoardSet(new Board(), new Board(null,7,6), new Board(null,5,4));
  2528. const slight_pause = tsp.word.slight_pause().textContent;
  2529. let dict = {
  2530. icon: createIcon('board-' + state),
  2531. state: tsp.board[state](),
  2532. position: posType == 'random' ? tsp.position.random() : tsp.position.shape(),
  2533. };
  2534. if (state == 'roulette') { //轮盘位
  2535. const commentContent = [];
  2536. time && commentContent.push(tsp.board.roulette_time({duration: renderValue(v.constant(time), {unit: tsp.unit.seconds})}));
  2537. Array.isArray(attrs) && attrs.length && commentContent.push(tsp.board.roulette_attrs({orbs: renderOrbs(attrs)}));
  2538. dict.comment = tsp.word.comment({content: commentContent.nodeJoin(tsp.word.slight_pause())});
  2539. dict.count = renderValue(v.constant(count || positions.flat().length), {unit: tsp.unit.orbs});
  2540. boardsBar?.boards?.forEach(board=>{
  2541. if (posType == 'random')
  2542. board.generateBlockStates('roulette', count);
  2543. else
  2544. board.setShape(positions, null, null, 'roulette');
  2545. });
  2546. }
  2547. if (state == 'clouds') { //云
  2548. const [width, height] = skill.size;
  2549. dict.size = tsp.value.size({ width, height});
  2550. boardsBar?.boards?.forEach(board=>{
  2551. board.generateBlockStates('clouds', count, [width, height], positions);
  2552. });
  2553. }
  2554. if (state == 'immobility') { //封条
  2555. const {colums, rows} = skill.positions;
  2556. let posFrgs = [];
  2557. const [sequenceCols, reverseCols] = posSplit(colums, 'colum');
  2558. if (sequenceCols.length) posFrgs.push(tsp.position.left({pos: sequenceCols.join(slight_pause)}));
  2559. if (reverseCols.length) posFrgs.push(tsp.position.right({pos: reverseCols.join(slight_pause)}));
  2560. const [sequenceRows, reverseRows] = posSplit(rows, 'row');
  2561. if (sequenceRows.length) posFrgs.push(tsp.position.top({pos: sequenceRows.join(slight_pause)}));
  2562. if (reverseRows.length) posFrgs.push(tsp.position.bottom({pos: reverseRows.join(slight_pause)}));
  2563. boardsBar?.boards?.forEach(board=>{
  2564. board.setColumns(colums, null, null, 'immobility');
  2565. board.setRows(rows, null, null, 'immobility');
  2566. });
  2567. dict.position = posFrgs.nodeJoin(tsp.word.slight_pause());
  2568. }
  2569. frg.ap(tsp.skill.board_jamming_state(dict));
  2570. if (boardsBar) {
  2571. boardsBar.boards.forEach(board=>board.refreshTable());
  2572. frg.ap(boardsBar.node);
  2573. }
  2574. break;
  2575. }
  2576. case SkillKinds.BoardSizeChange: { //改变板面大小
  2577. const { width, height } = skill;
  2578. let dict = {
  2579. icon: createIcon(skill.kind),
  2580. size: tsp.value.size({ width, height}),
  2581. };
  2582. frg.ap(tsp.skill.board_size_change(dict));
  2583. break;
  2584. }
  2585. default: {
  2586. console.log("未处理的技能类型",skill.kind, skill);
  2587. frg.ap(skill.kind);
  2588. }
  2589. }
  2590. return frg;
  2591. };
  2592. function renderStat(stat, option) {
  2593. const frg = document.createDocumentFragment();
  2594. if (typeof localTranslating == "undefined") return frg;
  2595. const tspt = localTranslating.skill_parse.stats;
  2596. if (tspt[stat])
  2597. frg.ap(tspt[stat](option));
  2598. else
  2599. {
  2600. console.log("未知状态类型",stat);
  2601. frg.ap(tspt.unknown({ type: stat }));
  2602. }
  2603. return frg;
  2604. }
  2605. function renderAttrs(attrs, option = {}) {
  2606. if (!Array.isArray(attrs))
  2607. attrs = [attrs ?? 0];
  2608. const frg = document.createDocumentFragment();
  2609. if (typeof localTranslating == "undefined") return frg;
  2610. const tsp = localTranslating.skill_parse;
  2611. let contentFrg;
  2612. if (isEqual(attrs, Attributes.all()))
  2613. {
  2614. contentFrg = tsp.attrs.all();
  2615. }
  2616. else
  2617. {
  2618. contentFrg = attrs.map(attr => {
  2619. const icon = document.createElement("icon");
  2620. icon.className = "attr";
  2621. icon.setAttribute("data-attr-icon",attr);
  2622. return tsp.attrs?.[attr]({icon: icon});
  2623. })
  2624. .nodeJoin(tsp.word.slight_pause());
  2625. }
  2626. if (option.affix)
  2627. contentFrg = tsp.word.affix_attr({cotent: contentFrg});
  2628. frg.ap(contentFrg);
  2629. return frg;
  2630. }
  2631. function renderOrbs(attrs, option = {}) {
  2632. if (!Array.isArray(attrs))
  2633. attrs = [attrs ?? 0];
  2634. const frg = document.createDocumentFragment();
  2635. if (typeof localTranslating == "undefined") return frg;
  2636. const tsp = localTranslating.skill_parse;
  2637. let contentFrg;
  2638. if (isEqual(attrs, Attributes.orbs()))
  2639. {
  2640. contentFrg = tsp.orbs.all();
  2641. }
  2642. else if (isEqual(attrs, Attributes.all()))
  2643. {
  2644. contentFrg = renderOrbs('_5color');
  2645. }
  2646. else if (isEqual(attrs, Attributes._6color()))
  2647. {
  2648. contentFrg = tsp.orbs._6color({
  2649. _5color: renderOrbs('_5color'),
  2650. orb_rcv: renderOrbs(5),
  2651. });
  2652. }
  2653. else
  2654. {
  2655. contentFrg = attrs.map(attr => {
  2656. const icon = document.createElement("icon");
  2657. icon.className = "orb";
  2658. if (option.className) icon.className += " " + option.className;
  2659. icon.setAttribute("data-orb-icon",attr);
  2660. let dict = {
  2661. icon: icon,
  2662. }
  2663. return tsp.orbs?.[attr](dict);
  2664. })
  2665. .nodeJoin(tsp.word.slight_pause());
  2666. }
  2667. if (option.affix)
  2668. contentFrg = tsp.word.affix_orb({cotent: contentFrg});
  2669. if (option.any && attrs.length >= 2)
  2670. contentFrg = tsp.orbs.any({cotent: contentFrg});
  2671. frg.ap(contentFrg);
  2672. return frg;
  2673. }
  2674. function renderTypes(types, option = {}) {
  2675. if (!Array.isArray(types))
  2676. types = [types ?? 0];
  2677. const frg = document.createDocumentFragment();
  2678. if (typeof localTranslating == "undefined") return frg;
  2679. const tsp = localTranslating.skill_parse;
  2680. let contentFrg = types.map(type => {
  2681. const icon = document.createElement("icon");
  2682. icon.className = "type-icon";
  2683. icon.setAttribute("data-type-icon",type);
  2684. return tsp.types?.[type]({icon: icon});
  2685. })
  2686. .nodeJoin(tsp.word.slight_pause());
  2687. if (option.affix)
  2688. contentFrg = tsp.word.affix_type({cotent: contentFrg});
  2689. frg.ap(contentFrg);
  2690. return frg;
  2691. }
  2692. function renderAwakenings(awakenings, option = {}) {
  2693. if (!Array.isArray(awakenings))
  2694. awakenings = [awakenings ?? 0];
  2695. const frg = document.createDocumentFragment();
  2696. if (typeof localTranslating == "undefined") return frg;
  2697. const tsp = localTranslating.skill_parse;
  2698. let contentFrg = awakenings.map(awoken => {
  2699. const icon = document.createElement("icon");
  2700. icon.className = "awoken-icon";
  2701. icon.setAttribute("data-awoken-icon",awoken);
  2702. return tsp.awokens?.[awoken]({icon: icon});
  2703. })
  2704. .nodeJoin(tsp.word.slight_pause());
  2705. if (option.affix)
  2706. contentFrg = tsp.word.affix_awakening({cotent: contentFrg});
  2707. frg.ap(contentFrg);
  2708. return frg;
  2709. }
  2710. function renderCondition(cond) {
  2711. const frg = document.createDocumentFragment();
  2712. const tsp = localTranslating.skill_parse;
  2713. if (cond.hp) {
  2714. let dict = {
  2715. hp: renderStat('chp'),
  2716. min: renderValue(v.percent(cond.hp.min * 100), {percent: true}),
  2717. max: renderValue(v.percent(cond.hp.max * 100), {percent: true}),
  2718. };
  2719. if (cond.hp.min === cond.hp.max)
  2720. frg.ap(tsp.cond.hp_equal(dict));
  2721. else if (cond.hp.min === 0)
  2722. frg.ap(tsp.cond.hp_less_or_equal(dict));
  2723. else if (cond.hp.max === 1)
  2724. frg.ap(tsp.cond.hp_greater_or_equal(dict));
  2725. else
  2726. frg.ap(tsp.cond.hp_belong_to_range(dict));
  2727. } else if (cond.useSkill) {
  2728. frg.ap(tsp.cond.use_skill());
  2729. } else if (cond.multiplayer) {
  2730. frg.ap(tsp.cond.multi_player());
  2731. } else if (cond.remainOrbs) {
  2732. let dict = {
  2733. value: renderValue(v.constant(cond.remainOrbs.count), {unit: tsp.unit.orbs}),
  2734. };
  2735. frg.ap(tsp.cond.remain_orbs(dict));
  2736. } else if (cond.combos) {
  2737. const { min } = cond.combos;
  2738. let dict = { min };
  2739. frg.ap(tsp.power.scale_combos(dict));
  2740. } else if (cond.attrs) {
  2741. const { attrs, min} = cond.attrs;
  2742. let dict = {
  2743. min,
  2744. orbs: renderOrbs(attrs, {affix: true})
  2745. };
  2746. frg.ap(tsp.power.scale_attributes(dict));
  2747. } else if (cond.exact) {
  2748. const { type, attrs , value} = cond.exact;
  2749. if (type === 'combo') {
  2750. let dict = { value };
  2751. frg.ap(tsp.cond.exact_combo(dict));
  2752. } else if (type === 'match-length') {
  2753. let dict = {
  2754. orbs: attrs === 'enhanced' ? tsp.cond.exact_match_enhanced() : renderOrbs(attrs, {affix: true})
  2755. };
  2756. if (value) {
  2757. dict.length = tsp.cond.exact_length({value:renderValue(v.constant(value), {unit: tsp.unit.orbs})});
  2758. }
  2759. frg.ap(tsp.cond.exact_match_length(dict));
  2760. }
  2761. } else if (cond.compo) {
  2762. let dict = {};
  2763. switch (cond.compo.type)
  2764. {
  2765. case 'card':{
  2766. dict.ids = cond.compo.ids.map(mid=>{
  2767. const dom = cardN(mid);
  2768. dom.monDom.onclick = changeToIdInSkillDetail;
  2769. return dom;
  2770. }).nodeJoin();
  2771. frg.ap(tsp.cond.compo_type_card(dict));
  2772. break;
  2773. }
  2774. case 'series':{
  2775. dict.ids = cond.compo.ids.map(cid=>{
  2776. const lnk = document.createElement("a");
  2777. lnk.className ="detail-search monster-collabId";
  2778. lnk.setAttribute("data-collabId",cid);
  2779. lnk.onclick = searchCollab;
  2780. lnk.textContent = (cid == 10001 ? Cards[5435] : Cards.find(card=>card.collabId == cid))?.altName?.[0] ?? `No.${cid}`;
  2781. return lnk;
  2782. }).nodeJoin(tsp.word.slight_pause());
  2783. frg.ap(tsp.cond.compo_type_series(dict));
  2784. break;
  2785. }
  2786. case 'evolution':{
  2787. dict.ids = cond.compo.ids.map(type=>{
  2788. const lnk = document.createElement("a");
  2789. lnk.className ="detail-search";
  2790. switch (type)
  2791. {
  2792. case "pixel-evo":{ //像素进化
  2793. lnk.appendChild(tsp.word.evo_type_pixel());
  2794. lnk.onclick = function(){
  2795. showSearch(Cards.filter(card=>card.evoMaterials.includes(3826)));
  2796. };
  2797. break;
  2798. }
  2799. case "reincarnation-evo":{ //转生或超转生
  2800. lnk.appendChild(tsp.word.evo_type_reincarnation());
  2801. lnk.onclick = function(){
  2802. showSearch(Cards.filter(card=>isReincarnated(card)));
  2803. };
  2804. break;
  2805. }
  2806. default:{ //转生或超转生
  2807. return tsp.word.evo_type_unknow({ type });
  2808. }
  2809. }
  2810. return lnk;
  2811. }).nodeJoin(tsp.word.slight_pause());
  2812. frg.ap(tsp.cond.compo_type_evolution(dict));
  2813. break;
  2814. }
  2815. case 'team-total-rarity':{
  2816. dict.rarity = cond.compo.ids;
  2817. frg.ap(tsp.cond.compo_type_team_total_rarity(dict));
  2818. break;
  2819. }
  2820. case 'team-same-rarity':{
  2821. let rarity = cond.compo.ids;
  2822. switch (rarity) {
  2823. case -1:
  2824. dict.rarity = tsp.word.different();
  2825. break;
  2826. case -2:
  2827. dict.rarity = tsp.word.same();
  2828. break;
  2829. default:
  2830. dict.rarity = rarity;
  2831. }
  2832. frg.ap(tsp.cond.compo_type_team_same_rarity(dict));
  2833. break;
  2834. }
  2835. }
  2836. } else if (cond.LShape) {
  2837. let dict = {
  2838. orbs: renderOrbs(cond.LShape.attrs, {affix: true, any: true}),
  2839. };
  2840. frg.ap(tsp.cond.L_shape(dict));
  2841. } else if (cond.heal) {
  2842. let dict = {
  2843. orbs: renderOrbs(5, {affix: true}),
  2844. heal: renderValue(v.constant(cond.heal.min), {unit: tsp.unit.point}),
  2845. stats: renderStat('hp'),
  2846. };
  2847. frg.ap(tsp.cond.heal(dict));
  2848. } else if (cond.stage) {
  2849. let dict = {
  2850. stage: renderStat('cstage'),
  2851. min: renderValue(v.constant(cond.stage.min)),
  2852. max: renderValue(v.constant(cond.stage.max)),
  2853. };
  2854. if (cond.stage.min > 0)
  2855. frg.ap(tsp.cond.stage_greater_or_equal(dict));
  2856. else if (cond.stage.max > 0)
  2857. frg.ap(tsp.cond.stage_less_or_equal(dict));
  2858. } else {
  2859. frg.ap(tsp.cond.unknown());
  2860. }
  2861. return frg;
  2862. }
  2863. function renderPowerUp(powerUp) {
  2864. const frg = document.createDocumentFragment();
  2865. const tsp = localTranslating.skill_parse;
  2866. function renderStats(hp, atk, rcv, option = {}) {
  2867. const mul = option.mul ?? true;
  2868. option.percent = !mul;
  2869. const frg = document.createDocumentFragment();
  2870. const operator = mul ? ' ' : '+';
  2871. let list = [['maxhp', hp], ['atk', atk], ['rcv', rcv]];
  2872. //去除不改变的值
  2873. list = list.filter(([, value]) => value !== (mul ? 1 : 0));
  2874. //&&!(name === 'hp' && value === 0));
  2875. if (list.length === 0) return frg;
  2876. if (list.every(([, value]) => value === list[0][1])) {
  2877. let value = list[0][1];
  2878. //三个值一样
  2879. frg.ap(list.map(([name]) => renderStat(name)).nodeJoin(tsp.word.slight_pause()));
  2880. frg.ap(operator);
  2881. frg.ap(renderValue(v.percent(value * 100), option));
  2882. } else {
  2883. //三个值不一样
  2884. let subDocument = list.map(([name, value]) => {
  2885. let _frg = document.createDocumentFragment();
  2886. _frg.ap(renderStat(name));
  2887. _frg.ap(operator);
  2888. _frg.ap(renderValue(v.percent(value * 100), option));
  2889. return _frg;
  2890. });
  2891. frg.ap(subDocument.nodeJoin(tsp.word.comma()));
  2892. }
  2893. return frg;
  2894. }
  2895. switch (powerUp.kind) {
  2896. case SkillPowerUpKind.Multiplier: {
  2897. let hp = powerUp.hp, atk = powerUp.atk, rcv = powerUp.rcv;
  2898. frg.ap(renderStats(hp, atk, rcv));
  2899. break;
  2900. }
  2901. case SkillPowerUpKind.ScaleAttributes: {
  2902. let attrs = powerUp.attrs, min = powerUp.min, max = powerUp.max, baseAtk = powerUp.baseAtk, baseRcv = powerUp.baseRcv, bonusAtk = powerUp.bonusAtk, bonusRcv = powerUp.bonusRcv;
  2903. let dict = {
  2904. orbs: renderOrbs(attrs, {affix: true}),
  2905. min: min,
  2906. stats: renderStats(1, baseAtk, baseRcv),
  2907. }
  2908. if (max !== min)
  2909. {
  2910. let _dict = {
  2911. max: max,
  2912. bonus: renderStats(0, bonusAtk, bonusRcv, {mul: false}),
  2913. stats_max: renderStats(1, baseAtk + bonusAtk * (max-min), baseRcv + bonusRcv * (max-min)),
  2914. }
  2915. dict.bonus = frg.ap(tsp.power.scale_attributes_bonus(_dict));
  2916. }
  2917. frg.ap(tsp.power.scale_attributes(dict));
  2918. break;
  2919. }
  2920. case SkillPowerUpKind.ScaleCombos: {
  2921. let min = powerUp.min, max = powerUp.max, baseAtk = powerUp.baseAtk, baseRcv = powerUp.baseRcv, bonusAtk = powerUp.bonusAtk, bonusRcv = powerUp.bonusRcv;
  2922. let dict = {
  2923. min: min,
  2924. stats: renderStats(1, baseAtk, baseRcv),
  2925. }
  2926. if (max !== min)
  2927. {
  2928. let _dict = {
  2929. max: max,
  2930. bonus: renderStats(0, bonusAtk, bonusRcv, {mul: false}),
  2931. stats_max: renderStats(1, baseAtk + bonusAtk * (max-min), baseRcv + bonusRcv * (max-min)),
  2932. }
  2933. dict.bonus = frg.ap(tsp.power.scale_combos_bonus(_dict));
  2934. }
  2935. frg.ap(tsp.power.scale_combos(dict));
  2936. break;
  2937. }
  2938. case SkillPowerUpKind.ScaleMatchAttrs: {
  2939. let matches = powerUp.matches, min = powerUp.min, max = powerUp.max, baseAtk = powerUp.baseAtk, baseRcv = powerUp.baseRcv, bonusAtk = powerUp.bonusAtk, bonusRcv = powerUp.bonusRcv;
  2940. let dict = {
  2941. matches: matches.map(orbs=>renderOrbs(orbs)).nodeJoin(tsp.word.slight_pause()),
  2942. min: min,
  2943. stats: renderStats(1, baseAtk, baseRcv),
  2944. }
  2945. if (max !== min)
  2946. {
  2947. let _dict = {
  2948. max: max,
  2949. bonus: renderStats(0, bonusAtk, bonusRcv, {mul: false}),
  2950. stats_max: renderStats(1, baseAtk + bonusAtk * (max-min), baseRcv + bonusRcv * (max-min)),
  2951. }
  2952. dict.bonus = frg.ap(tsp.power.scale_match_attrs_bonus(_dict));
  2953. }
  2954. frg.ap(tsp.power.scale_match_attrs(dict));
  2955. break;
  2956. }
  2957. case SkillPowerUpKind.ScaleMatchLength: {
  2958. let attrs = powerUp.attrs, min = powerUp.min, max = powerUp.max, baseAtk = powerUp.baseAtk, baseRcv = powerUp.baseRcv, bonusAtk = powerUp.bonusAtk, bonusRcv = powerUp.bonusRcv, matchAll = powerUp.matchAll;
  2959. let dict = {
  2960. orbs: renderOrbs(attrs, {affix: true}),
  2961. min: min,
  2962. stats: renderStats(1, baseAtk, baseRcv),
  2963. in_once: matchAll && attrs.length>1 && tsp.word.in_once() || null,
  2964. }
  2965. if (max !== min)
  2966. {
  2967. let _dict = {
  2968. max: max,
  2969. bonus: renderStats(0, bonusAtk, bonusRcv, {mul: false}),
  2970. stats_max: renderStats(1, baseAtk + bonusAtk * (max-min), baseRcv + bonusRcv * (max-min)),
  2971. }
  2972. dict.bonus = frg.ap(tsp.power.scale_match_length_bonus(_dict));
  2973. }
  2974. frg.ap(tsp.power.scale_match_length(dict));
  2975. break;
  2976. }
  2977. case SkillPowerUpKind.ScaleCross: {
  2978. let crosses = powerUp.crosses;
  2979. /*if (crosses.length >= 2 && crosses.every(cross => cross.atk === crosses[0].atk)) {
  2980. //所有值一样
  2981. let cross = crosses[0];
  2982. let dict = {
  2983. orbs: renderOrbs(crosses.map(cross => cross.attr), {affix: true, any: true}),
  2984. stats: renderStats(1, cross.atk, cross.rcv),
  2985. }
  2986. frg.ap(cross.single ? tsp.power.scale_cross_single(dict) : tsp.power.scale_cross(dict));
  2987. } else {*/
  2988. let subDocument = crosses.map(cross=>{
  2989. let dict = {
  2990. orbs: renderOrbs(cross.attr, {affix: true, any: true}),
  2991. stats: renderStats(1, cross.atk, cross.rcv),
  2992. each_time: cross.single ? null : tsp.word.each_time(),
  2993. }
  2994. return tsp.power.scale_cross(dict);
  2995. });
  2996. frg.ap(subDocument.nodeJoin(tsp.word.comma()));
  2997. //}
  2998. break;
  2999. }
  3000. case SkillPowerUpKind.ScaleRemainOrbs: {
  3001. let min = powerUp.min, max = powerUp.max, baseAtk = powerUp.baseAtk, baseRcv = powerUp.baseRcv, bonusAtk = powerUp.bonusAtk, bonusRcv = powerUp.bonusRcv;
  3002. let dict = {
  3003. max: max,
  3004. stats: renderStats(1, baseAtk, baseRcv),
  3005. }
  3006. if (max !== min)
  3007. {
  3008. let _dict = {
  3009. min: min,
  3010. bonus: renderStats(0, bonusAtk, bonusRcv, {mul: false}),
  3011. stats_max: renderStats(1, baseAtk + bonusAtk * (max-min), baseRcv + bonusRcv * (max-min)),
  3012. }
  3013. dict.bonus = frg.ap(tsp.power.scale_remain_orbs_bonus(_dict));
  3014. }
  3015. frg.ap(tsp.power.scale_remain_orbs(dict));
  3016. break;
  3017. }
  3018. case SkillPowerUpKind.ScaleStateKind: {
  3019. let awakenings = powerUp.awakenings, attrs = powerUp.attrs, types = powerUp.types, value = powerUp.value;
  3020. let dict = {
  3021. stats: renderStats(value.hp, value.atk, value.rcv, {mul: false, percent: true}),
  3022. awakenings: awakenings?.length && renderAwakenings(awakenings, {affix: true}) || null,
  3023. attrs: attrs?.length && renderAttrs(attrs, {affix: true}) || null,
  3024. types: types?.length && renderTypes(types, {affix: true}) || null,
  3025. }
  3026. frg.ap(tsp.power.scale_state_kind(dict));
  3027. break;
  3028. }
  3029. default:
  3030. frg.ap(tsp.power.unknown({type: powerUp.kind}));
  3031. }
  3032. return frg;
  3033. }
  3034. function renderValue(_value, option = {}) {
  3035. const frg = document.createDocumentFragment();
  3036. if (typeof localTranslating == "undefined") return frg;
  3037. const tsp = localTranslating.skill_parse
  3038. const tspv = tsp.value;
  3039. const od = option.decimalDigits, os = option.plusSign;
  3040. let dict;
  3041. switch (_value.kind) {
  3042. case SkillValueKind.Percent: {
  3043. dict = {
  3044. value: option.percent ? (_value.value * 100).keepCounts(od,os) : _value.value.keepCounts(od,os),
  3045. };
  3046. frg.ap(
  3047. option.percent ?
  3048. tspv.mul_percent(dict) :
  3049. tspv.mul_times(dict)
  3050. );
  3051. break;
  3052. }
  3053. case SkillValueKind.Constant: {
  3054. dict = {
  3055. value: _value.value.keepCounts(od,os),
  3056. unit: option.unit ? option.unit() : null,
  3057. };
  3058. frg.ap(tspv.const(dict));
  3059. break;
  3060. }
  3061. case SkillValueKind.ConstantTo: {
  3062. dict = {
  3063. value: _value.value.keepCounts(od,os)
  3064. };
  3065. frg.ap(tspv.const_to(dict));
  3066. break;
  3067. }
  3068. case SkillValueKind.xMaxHP: {
  3069. dict = {
  3070. value: option.percent ? (_value.value * 100).keepCounts(od,os) : _value.value.keepCounts(od,os),
  3071. stats: renderStat('maxhp'),
  3072. };
  3073. frg.ap(
  3074. option.percent ?
  3075. tspv.mul_of_percent(dict) :
  3076. tspv.mul_of_times(dict)
  3077. );
  3078. break;
  3079. }
  3080. case SkillValueKind.xHP: {
  3081. dict = {
  3082. value: option.percent ? (_value.value * 100).keepCounts(od,os) : _value.value.keepCounts(od,os),
  3083. stats: renderStat('hp'),
  3084. };
  3085. frg.ap(
  3086. option.percent ?
  3087. tspv.mul_of_percent(dict) :
  3088. tspv.mul_of_times(dict)
  3089. );
  3090. break;
  3091. }
  3092. case SkillValueKind.xCHP: {
  3093. dict = {
  3094. value: option.percent ? (_value.value * 100).keepCounts(od,os) : _value.value.keepCounts(od,os),
  3095. stats: renderStat('chp'),
  3096. };
  3097. frg.ap(
  3098. option.percent ?
  3099. tspv.mul_of_percent(dict) :
  3100. tspv.mul_of_times(dict)
  3101. );
  3102. break;
  3103. }
  3104. case SkillValueKind.xATK: {
  3105. dict = {
  3106. value: option.percent ? (_value.value * 100).keepCounts(od,os) : _value.value.keepCounts(od,os),
  3107. stats: renderStat('atk'),
  3108. };
  3109. frg.ap(
  3110. option.percent ?
  3111. tspv.mul_of_percent(dict) :
  3112. tspv.mul_of_times(dict)
  3113. );
  3114. break;
  3115. }
  3116. case SkillValueKind.xRCV: {
  3117. dict = {
  3118. value: option.percent ? (_value.value * 100).keepCounts(od,os) : _value.value.keepCounts(od,os),
  3119. stats: renderStat('rcv'),
  3120. };
  3121. frg.ap(
  3122. option.percent ?
  3123. tspv.mul_of_percent(dict) :
  3124. tspv.mul_of_times(dict)
  3125. );
  3126. break;
  3127. }
  3128. case SkillValueKind.xTeamHP: {
  3129. let value = _value.value;
  3130. dict = {
  3131. value: option.percent ? (value * 100).keepCounts(od,os) : value.keepCounts(od,os),
  3132. stats: renderStat('teamhp'),
  3133. };
  3134. frg.ap(
  3135. option.percent ?
  3136. tspv.mul_of_percent(dict) :
  3137. tspv.mul_of_times(dict)
  3138. );
  3139. break;
  3140. }
  3141. case SkillValueKind.xTeamRCV: {
  3142. dict = {
  3143. value: option.percent ? (_value.value * 100).keepCounts(od,os) : _value.value.keepCounts(od,os),
  3144. stats: renderStat('teamrcv'),
  3145. };
  3146. frg.ap(
  3147. option.percent ?
  3148. tspv.mul_of_percent(dict) :
  3149. tspv.mul_of_times(dict)
  3150. );
  3151. break;
  3152. }
  3153. case SkillValueKind.xTeamATK: {
  3154. let attrs = _value.attrs, value = _value.value;
  3155. dict = {
  3156. value: option.percent ? (value * 100).keepCounts(od,os) : value.keepCounts(od,os),
  3157. stats: renderStat('teamatk', {attrs: renderAttrs(attrs, {affix: true})}),
  3158. };
  3159. frg.ap(
  3160. option.percent ?
  3161. tspv.mul_of_percent(dict) :
  3162. tspv.mul_of_times(dict)
  3163. );
  3164. break;
  3165. }
  3166. case SkillValueKind.HPScale: {
  3167. let min = _value.min, max = _value.max;
  3168. dict = {
  3169. min: tspv.mul_of_times({value: min.keepCounts(od,os), stats:renderStat('atk')}),
  3170. max: tspv.mul_of_times({value: max.keepCounts(od,os), stats:renderStat('atk')}),
  3171. hp: renderStat('hp'),
  3172. };
  3173. frg.ap(tspv.hp_scale(dict));
  3174. break;
  3175. }
  3176. case SkillValueKind.RandomATK: {
  3177. let min = _value.min, max = _value.max;
  3178. dict = {
  3179. min: min.keepCounts(od,os),
  3180. atk: renderStat('atk'),
  3181. };
  3182. if (max != min)
  3183. {
  3184. dict.max = tsp.word.range_hyphen().ap(max.keepCounts(od,os));
  3185. }
  3186. frg.ap(tspv.random_atk(dict));
  3187. break;
  3188. }
  3189. case SkillValueKind.xAwakenings: {
  3190. let value = _value.value, awakenings = _value.awakenings;
  3191. let dict = {
  3192. value: renderValue(value,{percent : true}),
  3193. awakenings: renderAwakenings(awakenings, {affix: true}),
  3194. }
  3195. frg.ap(tsp.value.x_awakenings(dict));
  3196. break;
  3197. }
  3198. default: {
  3199. console.log("未知数值类型",_value.kind, _value);
  3200. frg.ap(tspv.unknown({ type: _value.kind }));
  3201. }
  3202. }
  3203. return frg;
  3204. }

智龙迷城队伍图制作工具