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 102 kB

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

智龙迷城队伍图制作工具