2023-04-09 05:35:35 +00:00
|
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-12-20 04:51:54 +00:00
|
|
|
---@param victim ServerPlayer
|
|
|
|
local function getWinner(victim)
|
|
|
|
local room = victim.room
|
|
|
|
local winner = ""
|
|
|
|
local alive = room.alive_players
|
|
|
|
|
|
|
|
if victim.role == "lord" then
|
|
|
|
if #alive == 1 and alive[1].role == "renegade" then
|
2023-03-20 06:53:56 +00:00
|
|
|
winner = "renegade"
|
2022-12-20 04:51:54 +00:00
|
|
|
else
|
|
|
|
winner = "rebel"
|
|
|
|
end
|
|
|
|
elseif victim.role ~= "loyalist" then
|
|
|
|
local lord_win = true
|
|
|
|
for _, p in ipairs(alive) do
|
|
|
|
if p.role == "rebel" or p.role == "renegade" then
|
|
|
|
lord_win = false
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if lord_win then
|
|
|
|
winner = "lord+loyalist"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return winner
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param killer ServerPlayer
|
|
|
|
local function rewardAndPunish(killer, victim)
|
|
|
|
if killer.dead then return end
|
|
|
|
if victim.role == "rebel" then
|
|
|
|
killer:drawCards(3, "kill")
|
|
|
|
elseif victim.role == "loyalist" and killer.role == "lord" then
|
|
|
|
killer:throwAllCards("he")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-04-01 12:51:01 +00:00
|
|
|
GameRule = fk.CreateTriggerSkill{
|
2022-04-30 07:27:56 +00:00
|
|
|
name = "game_rule",
|
2023-04-22 06:10:06 +00:00
|
|
|
events = {
|
2023-04-22 07:52:26 +00:00
|
|
|
fk.GameStart,
|
2022-12-20 04:51:54 +00:00
|
|
|
fk.AskForPeaches, fk.AskForPeachesDone,
|
|
|
|
fk.GameOverJudge, fk.BuryVictim,
|
2022-04-30 07:27:56 +00:00
|
|
|
},
|
|
|
|
priority = 0,
|
2022-04-01 12:51:01 +00:00
|
|
|
|
2023-04-22 06:10:06 +00:00
|
|
|
can_trigger = function(self, event, target, player, data)
|
2022-04-30 07:27:56 +00:00
|
|
|
return (target == player) or (target == nil)
|
|
|
|
end,
|
2022-04-01 12:51:01 +00:00
|
|
|
|
2023-04-22 06:10:06 +00:00
|
|
|
on_trigger = function(self, event, target, player, data)
|
2023-04-08 12:45:55 +00:00
|
|
|
local room = player.room
|
|
|
|
if room:getTag("SkipGameRule") then
|
|
|
|
room:setTag("SkipGameRule", false)
|
2022-04-30 07:27:56 +00:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2023-01-29 10:11:41 +00:00
|
|
|
if event == fk.GameStart then
|
2023-04-08 12:45:55 +00:00
|
|
|
room:setTag("FirstRound", true)
|
|
|
|
room:setTag("RoundCount", 0)
|
2022-04-30 07:27:56 +00:00
|
|
|
return false
|
|
|
|
end
|
2022-04-02 13:39:44 +00:00
|
|
|
|
2022-04-30 07:27:56 +00:00
|
|
|
switch(event, {
|
2022-12-20 04:51:54 +00:00
|
|
|
[fk.AskForPeaches] = function()
|
2023-04-04 08:25:37 +00:00
|
|
|
local dyingPlayer = room:getPlayerById(data.who)
|
|
|
|
while dyingPlayer.hp < 1 do
|
|
|
|
local pattern = "peach"
|
|
|
|
if player == dyingPlayer then
|
|
|
|
pattern = pattern .. ",analeptic"
|
|
|
|
end
|
2023-03-14 12:48:08 +00:00
|
|
|
|
2023-04-04 08:25:37 +00:00
|
|
|
local peach_use = room:askForUseCard(player, "peach", pattern)
|
|
|
|
if not peach_use then break end
|
|
|
|
peach_use.tos = { {dyingPlayer.id} }
|
|
|
|
if peach_use.card.trueName == "analeptic" then
|
|
|
|
peach_use.extra_data = peach_use.extra_data or {}
|
|
|
|
peach_use.extra_data.analepticRecover = true
|
2022-12-20 04:51:54 +00:00
|
|
|
end
|
2023-04-04 08:25:37 +00:00
|
|
|
room:useCard(peach_use)
|
2022-12-20 04:51:54 +00:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
[fk.AskForPeachesDone] = function()
|
2023-04-04 08:25:37 +00:00
|
|
|
if player.hp < 1 and not data.ignoreDeath then
|
2022-12-20 04:51:54 +00:00
|
|
|
---@type DeathStruct
|
|
|
|
local deathData = {
|
|
|
|
who = player.id,
|
|
|
|
damage = data.damage,
|
|
|
|
}
|
|
|
|
room:killPlayer(deathData)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
[fk.GameOverJudge] = function()
|
|
|
|
local winner = getWinner(player)
|
|
|
|
if winner ~= "" then
|
|
|
|
room:gameOver(winner)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
[fk.BuryVictim] = function()
|
|
|
|
player:bury()
|
|
|
|
if room.tag["SkipNormalDeathProcess"] then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
local damage = data.damage
|
|
|
|
if damage and damage.from then
|
2023-02-15 11:54:35 +00:00
|
|
|
local killer = damage.from
|
2022-12-20 04:51:54 +00:00
|
|
|
rewardAndPunish(killer, player);
|
|
|
|
end
|
|
|
|
end,
|
2022-04-30 07:27:56 +00:00
|
|
|
default = function()
|
|
|
|
print("game_rule: Event=" .. event)
|
|
|
|
room:askForSkillInvoke(player, "rule")
|
2022-04-02 07:11:13 +00:00
|
|
|
end,
|
2022-04-30 07:27:56 +00:00
|
|
|
})
|
|
|
|
return false
|
|
|
|
end,
|
2022-04-02 07:11:13 +00:00
|
|
|
|
2022-04-01 12:51:01 +00:00
|
|
|
}
|