commit
2c827f1298
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -6745,10 +6745,16 @@ game.import("character", function () {
|
||||||
if (result.bool) {
|
if (result.bool) {
|
||||||
targets[1].give(result.cards, player);
|
targets[1].give(result.cards, player);
|
||||||
}
|
}
|
||||||
if (targets.length < 3) event.goto(5);
|
if (targets.length < 3) {
|
||||||
|
event.goto(5);
|
||||||
|
} else {
|
||||||
|
targets.splice(0, 2);
|
||||||
|
}
|
||||||
"step 4";
|
"step 4";
|
||||||
var num = targets[2].countCards("e");
|
var target = targets.shift();
|
||||||
if (num > 0) targets[2].chooseToDiscard("e", true, num);
|
var num = target.countCards("e");
|
||||||
|
if (num > 0) target.chooseToDiscard("e", true, num);
|
||||||
|
if (targets.length > 0) event.redo();
|
||||||
"step 5";
|
"step 5";
|
||||||
game.delayx();
|
game.delayx();
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue