族钟繇原画

This commit is contained in:
mengxinzxz 2024-04-21 01:02:16 +08:00
parent d7a57a37ca
commit dbe0847053
2 changed files with 13 additions and 4 deletions

View File

@ -230,9 +230,18 @@ game.import("character", function () {
event.result = await player.chooseTarget(get.prompt("clanjieli"), "观看一名角色的牌名字数最多的手牌" + str, (card, player, target) => {
return target.countCards("h");
}).set('ai', target => {
const player = get.event("player");
return get.effect(target, { name: "draw" }, player, player);
}).forResult();
const player = get.event("player"), num = get.event('num');
let map = {};
for (const i of target.getCards("h")) {
if (!map[get.cardNameLength(i)]) {
map[get.cardNameLength(i)] = 0;
}
map[get.cardNameLength(i)]++;
}
const num2 = Object.keys(map).sort((a, b) => map[b] - map[a])[0];
if (num >= num2) return target.countCards('h') * 5 * get.sgn(get.sgn(get.attitude(player, target)) - 0.5);
return -target.countCards('h');
}).set('num', num).forResult();
},
async content(event, trigger, player) {
const target = event.targets[0];

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB