',
+ intro: '自定义将池内容',
+ onclick: function () {
+ const dialog = ui.create.dialog("目前自定义将池包含的武将:");
+ dialog.add([lib.devil_characters.all_devil_list, 'character']);
+ dialog.buttons.forEach((button) => {
if (lib.config.custom_banned_characters.has(button.link)) {
- lib.config.custom_banned_characters.delete(button.link);
- button.classList.remove("custom_banned");
- }
- else {
- lib.config.custom_banned_characters.add(button.link);
button.classList.add("custom_banned");
}
- game.saveConfig('custom_banned_characters', lib.config.custom_banned_characters);
- }
- })
+ button.onclick = () => {
+ if (lib.config.custom_banned_characters.has(button.link)) {
+ lib.config.custom_banned_characters.delete(button.link);
+ button.classList.remove("custom_banned");
+ }
+ else {
+ lib.config.custom_banned_characters.add(button.link);
+ button.classList.add("custom_banned");
+ }
+ game.saveConfig('custom_banned_characters', lib.config.custom_banned_characters);
- ui.update();
- }
- },
- warning: {
- name: `本扩展可能与一些其他扩展冲突,如有冲突,请禁用本扩展或其他扩展!
- 目前已知冲突:活动武将和活动武将配件(导致关卡内人物变化)
-
`,
- clear: true,
- nopointer: true,
- },
- update: {
- name: `扩展版本:${version}▶▶▶
`,
- clear: true,
- intro: "点击查看此版本的更新内容",
- onclick: function () {
- if (this.updateContent === undefined) {
- const more = ui.create.div('.update-content', '' + '
' +
- '说明一:
对扩展结构进行整个重构,代码封装更清晰。
' +
- '说明二:
增加了新关卡:本扩展阴间乱斗,感受下地狱难度吧!
' +
- '说明三:
增加了阴间将池武将:武关羽、新杀谋司马懿、柏灵筠、孙綝、经典刘备、经典曹操、经典孙权、经典孙策、经典神赵云、经典吴懿、陈珪、星曹仁、十周年神华佗、十周年刘晔、手杀谋曹丕。
' +
- '说明四:
更新了新武将:山河图兀突骨、山河图乐进、山河图李典、灵杉玉树。
' +
- '说明五:
一些武将平衡性调整,更还原游戏真实情况。
'+
- '说明六:
修复了张菖蒲〖严教〗无法发动,山河图张飞无限重生的bug。
'
- );
- this.parentNode.insertBefore(more, this.nextSibling);
- this.updateContent = more;
- this.innerHTML = '▼▼▼
';
+ }
+ })
+
+ ui.update();
}
- else {
- this.parentNode.removeChild(this.updateContent);
- delete this.updateContent;
- this.innerHTML = `扩展版本:${version}▶▶▶
`;
- };
- }
- },
- thanks: {
- name: "鸣谢",
- init: "1",
- intro: "点击查看鸣谢名单",
- item: {
- "1": "鸣谢名单",
- "2": "无名杀本体作者们,无名杀代码群群内大佬们,扩展包阳光包作者们,扩展包合纵抗秦作者们,扩展包假装无敌作者们"
+ },
+ warning: {
+ name: `本扩展可能与一些其他扩展冲突,如有冲突,请禁用本扩展或其他扩展!
+ 目前已知冲突:活动武将和活动武将配件(导致关卡内人物变化)
+
`,
+ clear: true,
+ nopointer: true,
+ },
+ update: {
+ name: `扩展版本:${version}▶▶▶
`,
+ clear: true,
+ intro: "点击查看此版本的更新内容",
+ onclick: function () {
+ if (this.updateContent === undefined) {
+ const more = ui.create.div('.update-content', '' + '
' +
+ showContent.join("")
+ );
+ this.parentNode.insertBefore(more, this.nextSibling);
+ this.updateContent = more;
+ this.innerHTML = '▼▼▼
';
+ }
+ else {
+ this.parentNode.removeChild(this.updateContent);
+ delete this.updateContent;
+ this.innerHTML = `扩展版本:${version}▶▶▶
`;
+ };
+ }
+ },
+ thanks: {
+ name: "鸣谢",
+ init: "1",
+ intro: "点击查看鸣谢名单",
+ item: {
+ "1": "鸣谢名单",
+ "2": "无名杀本体作者们,无名杀代码群群内大佬们,扩展包阳光包作者们,扩展包合纵抗秦作者们,扩展包假装无敌作者们"
+ }
+ },
+ translate: {
+ // config
+ "update": "更新情况",
+ "thanks": "鸣谢",
+ "warning": "警告",
}
- },
- translate: {
- // config
- "update": "更新情况",
- "thanks": "鸣谢",
- "warning": "警告",
- }
-
+ }
}
diff --git "a/game/resources/app/extension/\345\244\247\346\210\230\344\270\203\351\230\264/update.json" "b/game/resources/app/extension/\345\244\247\346\210\230\344\270\203\351\230\264/update.json"
new file mode 100644
index 0000000..f360056
--- /dev/null
+++ "b/game/resources/app/extension/\345\244\247\346\210\230\344\270\203\351\230\264/update.json"
@@ -0,0 +1,8 @@
+{
+ "version": "8.2.0",
+ "content": [
+ "更新了新武将:山河图兀突骨、山河图乐进、山河图李典、灵杉玉树。",
+ "修复了【秦弩】翻译问题,山河图乐进〖着铠〗〖舞斧〗无法发动的bug。",
+ "修改了更新日志的写法和样式。"
+ ]
+}