This commit is contained in:
parent
fd5a810b7b
commit
89b7345571
|
@ -288,6 +288,8 @@ window.noname_character_rank={
|
||||||
'hs_mojinbaozi',
|
'hs_mojinbaozi',
|
||||||
],
|
],
|
||||||
bp:[
|
bp:[
|
||||||
|
'wangyun',
|
||||||
|
'xinxianying',
|
||||||
'pal_xiaoman',
|
'pal_xiaoman',
|
||||||
'pal_jiangyunfan',
|
'pal_jiangyunfan',
|
||||||
'pal_longyou',
|
'pal_longyou',
|
||||||
|
|
|
@ -171,7 +171,9 @@ game.import('character',function(lib,game,ui,get,ai,_status){
|
||||||
filter:function(event,player){
|
filter:function(event,player){
|
||||||
if(!player.countCards('h')) return false;
|
if(!player.countCards('h')) return false;
|
||||||
if(player.getStat('skill').zhongjian&&!player.hasSkill('zhongjian2')) return false;
|
if(player.getStat('skill').zhongjian&&!player.hasSkill('zhongjian2')) return false;
|
||||||
return true;
|
return game.hasPlayer(function(current){
|
||||||
|
return current!=player&¤t.countCards('h')>current.hp;
|
||||||
|
});
|
||||||
},
|
},
|
||||||
filterCard:true,
|
filterCard:true,
|
||||||
check:function(){
|
check:function(){
|
||||||
|
@ -180,7 +182,7 @@ game.import('character',function(lib,game,ui,get,ai,_status){
|
||||||
discard:false,
|
discard:false,
|
||||||
lose:false,
|
lose:false,
|
||||||
filterTarget:function(card,player,target){
|
filterTarget:function(card,player,target){
|
||||||
return target.countCards('h')>target.hp;
|
return target!=player&&target.countCards('h')>target.hp;
|
||||||
},
|
},
|
||||||
content:function(){
|
content:function(){
|
||||||
'step 0'
|
'step 0'
|
||||||
|
@ -255,7 +257,7 @@ game.import('character',function(lib,game,ui,get,ai,_status){
|
||||||
if(player.isHealthy()){
|
if(player.isHealthy()){
|
||||||
event.type=0;
|
event.type=0;
|
||||||
player.chooseBool(get.prompt('caishi'),'手牌上限+1,然后本回合你的牌不能对其他角色使用',function(){
|
player.chooseBool(get.prompt('caishi'),'手牌上限+1,然后本回合你的牌不能对其他角色使用',function(){
|
||||||
return false;
|
return player.skipList.contains('phaseUse');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
|
Loading…
Reference in New Issue