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

智龙迷城队伍图制作工具