level 7
最后那个触发技能没必要
也不需要触发视为技...
因为时机是出牌阶段
2013年03月09日 21点03分
5
level 7
ExpwuxiuCard = sgs.CreateSkillCard{
name = "ExpwuxiuCard",
target_fixed = true,
will_throw = false,
on_use = function(self,room,source,targets)
local players = room:getOtherPlayers(source)
room:setPlayerMark(source,"lala",1)
for _,player in sgs.qlist(players) do
player:throwAllEquips()
end
end,
} ExpwuxiuVS = sgs.CreateViewAsSkill{
name = "ExpwuxiuVS",
n = 0,
view_as = function(self, cards)
local card = ExpwuxiuCard:clone()
return card
end,
enabled_at_play = function(self, player_PLayer)
return player_PLayer:getMark("lala") == 0
end,
}
testLuna:addSkill(ExpwuxiuVS)
2013年03月09日 21点03分
6