This commit is contained in:
libccy 2017-06-03 19:45:39 +08:00
parent b990852f33
commit b16ebb1d17
2 changed files with 8 additions and 5 deletions

View File

@ -16,7 +16,7 @@ game.import('character',function(lib,game,ui,get,ai,_status){
gw_laduoweide:['male','wei',4,['gwxiaoshou']],
gw_dagong:['male','qun',4,['tianbian']],
// gw_bulanwang:['male','qun',4,['jielve']],
gw_bulanwang:['male','qun',4,['bolang']],
// gw_kuite:['male','qun',3,[]],
// gw_fuertaisite:['male','qun',3,[]],
// gw_hengsaite:['male','wei',4,['jinsheng']],
@ -1464,6 +1464,8 @@ game.import('character',function(lib,game,ui,get,ai,_status){
gw_zhangyujushou:'章鱼巨兽',
gw_zhuoertan:'卓尔坦',
bolang:'搏浪',
bolang_info:'准备阶段你可以观看牌堆顶的6张牌然后将其中至多3张移入弃牌堆每当你造成一次伤害你可以从弃牌堆中获得一张以此法移入弃牌堆的牌',
lingji:'灵计',
lingji_info:'出牌阶段限一次,你可以摸两张牌并弃置两张牌,若弃置的牌花色相同,你获得一张随机铜卡;若弃置的牌点数相同,你获得一张随机银卡',
gwjinyan:'金焰',

View File

@ -36275,7 +36275,7 @@
if(!noclick){
lib.setIntro(node);
}
node.storage={uncheck:[]};
node.storage={uncheck:[],vanishtag:[]};
if(info!='noclick'){
node.addEventListener(lib.config.touchscreen?'touchend':'click',ui.click.card);
if(lib.config.touchscreen){
@ -41171,9 +41171,10 @@
lib.onwash[i]();
}
for(i=0;i<ui.discardPile.childNodes.length;i++){
if(get.info(ui.discardPile.childNodes[i]).vanish||
ui.discardPile.childNodes[i].storage.vanish) continue;
cards.push(ui.discardPile.childNodes[i]);
var currentcard=ui.discardPile.childNodes[i];
currentcard.storage.vanishtag=[];
if(get.info(currentcard).vanish||currentcard.storage.vanish) continue;
cards.push(currentcard);
}
cards.randomSort();
for(var i=0;i<cards.length;i++){