This commit is contained in:
parent
0eea508126
commit
16ff5b4036
|
@ -857,20 +857,26 @@ game.import('card',function(lib,game,ui,get,ai,_status){
|
||||||
list.push(get.cardPile('huogong','cardPile'));
|
list.push(get.cardPile('huogong','cardPile'));
|
||||||
list.push(get.cardPile('nanman','cardPile'));
|
list.push(get.cardPile('nanman','cardPile'));
|
||||||
list.push(get.cardPile('huoshaolianying','cardPile'));
|
list.push(get.cardPile('huoshaolianying','cardPile'));
|
||||||
list=[list.randomGet()];
|
for(var i=0;i<list.length;i++){
|
||||||
if(list.length){
|
if(!list[i]) list.splice(i--,1);
|
||||||
list.push(get.cardPile('sha','cardPile'));
|
|
||||||
}
|
}
|
||||||
else{
|
list=[list.randomGet()];
|
||||||
var sha=get.cardPile('sha','cardPile');
|
var sha=get.cardPile('sha','cardPile');
|
||||||
if(sha){
|
if(sha){
|
||||||
|
if(list.length){
|
||||||
|
list.push(sha);
|
||||||
|
}
|
||||||
|
else{
|
||||||
sha.remove();
|
sha.remove();
|
||||||
list.push(sha);
|
list.push(sha);
|
||||||
list.push(get.cardPile('sha','cardPile'));
|
var sha2=get.cardPile('sha','cardPile');
|
||||||
|
if(sha2){
|
||||||
|
list.push(sha2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(list.length){
|
if(list.length){
|
||||||
player.gain(list,'gain2','log');
|
target.gain(list,'gain2','log');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ai:{
|
ai:{
|
||||||
|
|
Loading…
Reference in New Issue