修复【过载】描述

This commit is contained in:
157 2024-05-06 13:11:01 +08:00
parent 387c59b0ee
commit 535284a943
1 changed files with 4 additions and 6 deletions

View File

@ -6837,7 +6837,7 @@ game.import("character", function () {
content() {
var num = (get.is.altered("guozai") ? 3 : 4) - player.countCards("h");
player.draw(num);
player.addSkill("guozai2");
player.addTempSkill("guozai2", "phaseUseAfter");
player.storage.guozai2 += num;
game.addVideo("storage", player, ["guozai2", player.storage.guozai2]);
},
@ -6851,14 +6851,13 @@ game.import("character", function () {
guozai2: {
mark: true,
intro: {
content: "结束阶段需弃置&张牌",
content: "当前阶段结束时需弃置&张牌",
},
trigger: { player: "phaseUseEnd" },
forced: true,
content() {
player.chooseToDiscard("he", true, player.storage.guozai2);
player.storage.guozai2 = 0;
player.removeSkill("guozai2");
},
},
guozaix: {
@ -6873,7 +6872,7 @@ game.import("character", function () {
content() {
var num = 4 - player.countCards("h");
player.draw(num);
player.addSkill("guozaix2");
player.addTempSkill("guozaix2", "phaseUseAfter");
player.storage.guozaix2 += num;
game.addVideo("storage", player, ["guozaix2", player.storage.guozaix2]);
},
@ -6887,14 +6886,13 @@ game.import("character", function () {
guozaix2: {
mark: true,
intro: {
content: "结束阶段需弃置&张牌",
content: "当前阶段结束时需弃置&张牌",
},
trigger: { player: "phaseUseEnd" },
forced: true,
content() {
player.chooseToDiscard("he", true, player.storage.guozaix2);
player.storage.guozaix2 = 0;
player.removeSkill("guozaix2");
},
},
hanshuang: {