給粉絲設計的技能,將其中的天罰改成你想要的技能名稱就行
skill={
? ? audio:"ext:江湖往事:2",
? ? enable:"phaseUse",
? ? filterCard:true,
? ? usable:1,
? ? selectCard:2,
? ? filterTarget:function(card,player,target){
? ? ? ? if(target==player) return false;
? ? ? ? return true;
? ? },
? ? content:function(){
? ? ? ?
? ? ? ? "step 0"
? ? ? ? target.chooseControl('封牌','封技能');
? ? ? ? "step 1"
? ? ? ? player.addSkill('天罰_3');
? ? ? ? if(result.control=='封牌'){
? ? ? ? ? ??
? ? ? ? target.addSkill('天罰_2');
? ? ? ? }
? ? ? ? else if(result.control=='封技能'){
? ? ? ? ? ?
? ? ? ? ? ? target.addSkill('fengyin');
? ? ? ? }??
? ? ? ??
? ? },
? ? subSkill:{
? ? ? ? "2":{
? ? ? ? ? ? mark:true,
? ? ? ? ? ? mod:{
? ? ? ? ? ? ? ? cardEnabled:function(card){
? ? ? ? ? ? return get.type(card)!='basic'&&get.type(card)!='trick';
? ? ? ? },
? ? ? ? ? ? ? ? cardRespondable:function(card){
? ? ? ? ? ? return get.type(card)!='basic'&&get.type(card)!='trick';
? ? ? ? },
? ? ? ? ? ? ? ? cardSavable:function(){
? ? ? ? ? ? return false;
? ? ? ? },
? ? ? ? ? ? },
? ? ? ? ? ? intro:{
? ? ? ? ? ? ? ? content:"不能使用或打出基本牌和錦囊牌",
? ? ? ? ? ? },
? ? ? ? ? ? sub:true,
? ? ? ? },
? ? ? ? "3":{
? ? ? ? ? ? trigger:{
? ? ? ? ? ? ? ? player:["phaseBegin","dieBegin"],
? ? ? ? ? ? },
? ? ? ? ? ? silent:true,
? ? ? ? ? ? content:function(){
? ? ? ? ? ? ? ? for(var i=0;i<game.players.length;i++){
? ? ? ? ? ? ? ? ? ? ?if(game.players[i].hasSkill('天罰_2')||game.players[i].hasSkill('fengyin')){
? ? ? ? ? ? ? ? ? ? game.players[i].removeSkill('天罰_2');
? ? ? ? ? ? ? ? ? ? ? ? ?game.players[i].removeSkill('fengyin');
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ?
? ? ? ? ? ? player.removeSkill('天罰_3');
? ? ? ? ? ? },
? ? ? ? ? ? sub:true,
? ? ? ? ? ? forced:true,
? ? ? ? ? ? popup:false,
? ? ? ? },
? ? },
}