This commit is contained in:
parent
18cb652aa1
commit
3a6ed3419b
|
@ -1,7 +1,10 @@
|
||||||
1.6.1
|
1.6.1
|
||||||
bug修复
|
bug修复
|
||||||
本轮不无懈按钮
|
本轮不无懈按钮
|
||||||
选将数、牌堆选项
|
编辑牌堆功能
|
||||||
皮肤、珠联璧合提示
|
皮肤、珠联璧合提示
|
||||||
3v3主公技
|
选将人数、高亮颜色选项
|
||||||
高亮颜色选项
|
收藏录像
|
||||||
|
boss武将包
|
||||||
|
标记数量显示
|
||||||
|
精简版
|
||||||
|
|
|
@ -525,6 +525,8 @@ character.mountain={
|
||||||
filter:function(event,player){
|
filter:function(event,player){
|
||||||
return player.storage.tuntian.length>0;
|
return player.storage.tuntian.length>0;
|
||||||
},
|
},
|
||||||
|
delay:false,
|
||||||
|
direct:true,
|
||||||
content:function(){
|
content:function(){
|
||||||
"step 0"
|
"step 0"
|
||||||
player.chooseCardButton('急袭',player.storage.tuntian);
|
player.chooseCardButton('急袭',player.storage.tuntian);
|
||||||
|
@ -532,18 +534,13 @@ character.mountain={
|
||||||
if(result.bool){
|
if(result.bool){
|
||||||
var card=result.buttons[0].link;
|
var card=result.buttons[0].link;
|
||||||
event.card=card;
|
event.card=card;
|
||||||
player.storage.tuntian.remove(card);
|
|
||||||
game.addVideo('storage',player,['tuntian',get.cardsInfo(player.storage.tuntian),'cards']);
|
|
||||||
if(!player.storage.tuntian.length){
|
|
||||||
player.unmarkSkill('tuntian');
|
|
||||||
}
|
|
||||||
player.chooseTarget(function(noname,player,target){
|
player.chooseTarget(function(noname,player,target){
|
||||||
var temp=card.name;
|
var temp=card.name;
|
||||||
card.name='shunshou';
|
card.name='shunshou';
|
||||||
var result=player.canUse(card,target);
|
var result=player.canUse(card,target);
|
||||||
card.name=temp;
|
card.name=temp;
|
||||||
return result;
|
return result;
|
||||||
},true).ai=function(target){
|
}).ai=function(target){
|
||||||
return -ai.get.attitude(player,target);
|
return -ai.get.attitude(player,target);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -551,8 +548,15 @@ character.mountain={
|
||||||
event.finish();
|
event.finish();
|
||||||
}
|
}
|
||||||
"step 2"
|
"step 2"
|
||||||
if(result.bool){
|
if(result.bool&&result.targets&&result.targets.length){
|
||||||
player.useCard({name:'shunshou'},[event.card],result.targets[0])
|
var card=event.card;
|
||||||
|
player.storage.tuntian.remove(card);
|
||||||
|
game.addVideo('storage',player,['tuntian',get.cardsInfo(player.storage.tuntian),'cards']);
|
||||||
|
if(!player.storage.tuntian.length){
|
||||||
|
player.unmarkSkill('tuntian');
|
||||||
|
}
|
||||||
|
player.logSkill('jixi',result.targets);
|
||||||
|
player.useCard({name:'shunshou'},[event.card],result.targets[0]);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ai:{
|
ai:{
|
||||||
|
|
|
@ -16230,6 +16230,7 @@
|
||||||
updatehl:function(){
|
updatehl:function(){
|
||||||
if(!game.me) return;
|
if(!game.me) return;
|
||||||
if(!lib.config.low_performance) return;
|
if(!lib.config.low_performance) return;
|
||||||
|
if(!ui.handcards1Container||!ui.handcards2Container) return;
|
||||||
var hs1=[],hs2=[];
|
var hs1=[],hs2=[];
|
||||||
for(var i=0;i<ui.handcards1Container.firstChild.childElementCount;i++){
|
for(var i=0;i<ui.handcards1Container.firstChild.childElementCount;i++){
|
||||||
if(!ui.handcards1Container.firstChild.childNodes[i].classList.contains('removing')){
|
if(!ui.handcards1Container.firstChild.childNodes[i].classList.contains('removing')){
|
||||||
|
|
|
@ -206,3 +206,17 @@
|
||||||
top: 66px;
|
top: 66px;
|
||||||
left: 5px;
|
left: 5px;
|
||||||
}
|
}
|
||||||
|
.dialog .buttons>.button.character.squarebutton{
|
||||||
|
height:90px;
|
||||||
|
}
|
||||||
|
.dialog .buttons>.button.character.squarebutton>.hp.text{
|
||||||
|
/*left:22px;*/
|
||||||
|
right: 4px;
|
||||||
|
text-align: right;
|
||||||
|
bottom: 4px;
|
||||||
|
top: auto;
|
||||||
|
left: auto;
|
||||||
|
}
|
||||||
|
.dialog .buttons>.button.character.squarebutton>.name{
|
||||||
|
top:8px;
|
||||||
|
}
|
||||||
|
|
|
@ -3541,6 +3541,9 @@ mode.chess={
|
||||||
dialog.add('挑战魔王');
|
dialog.add('挑战魔王');
|
||||||
dialog.add(bosses);
|
dialog.add(bosses);
|
||||||
}
|
}
|
||||||
|
for(var i=0;i<bosses.childNodes.length;i++){
|
||||||
|
bosses.childNodes[i].classList.add('squarebutton');
|
||||||
|
}
|
||||||
ui.control.style.transition='all 0s';
|
ui.control.style.transition='all 0s';
|
||||||
if(lib.config.layout=='mobile'){
|
if(lib.config.layout=='mobile'){
|
||||||
ui.control.style.top='calc(100% - 70px)';
|
ui.control.style.top='calc(100% - 70px)';
|
||||||
|
|
Loading…
Reference in New Issue