This commit is contained in:
parent
6d8b3aac56
commit
540105f182
|
@ -347,10 +347,10 @@ character.gujian={
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
xiuhua:{
|
xiuhua:{
|
||||||
trigger:{global:'loseEnd'},
|
trigger:{global:['loseEnd','discardAfter']},
|
||||||
filter:function(event,player){
|
filter:function(event,player){
|
||||||
if(event.player==player) return false;
|
if(event.player==player) return false;
|
||||||
if(event.parent.name!='equip'&&event.parent.name!='discard') return false;
|
if(event.name=='lose'&&event.parent.name!='equip') return false;
|
||||||
for(var i=0;i<event.cards.length;i++){
|
for(var i=0;i<event.cards.length;i++){
|
||||||
if(get.type(event.cards[i])=='equip'&&get.position(event.cards[i])=='d'){
|
if(get.type(event.cards[i])=='equip'&&get.position(event.cards[i])=='d'){
|
||||||
return true;
|
return true;
|
||||||
|
|
13
game/game.js
13
game/game.js
|
@ -31384,6 +31384,9 @@
|
||||||
|
|
||||||
var goupdate=function(files,update){
|
var goupdate=function(files,update){
|
||||||
lib.version=update.version;
|
lib.version=update.version;
|
||||||
|
if(!update.dev){
|
||||||
|
dev=true;
|
||||||
|
}
|
||||||
lib.init.req('game/source.js',function(){
|
lib.init.req('game/source.js',function(){
|
||||||
try{
|
try{
|
||||||
eval(this.responseText);
|
eval(this.responseText);
|
||||||
|
@ -31454,7 +31457,9 @@
|
||||||
},function(){
|
},function(){
|
||||||
setTimeout(finish,500);
|
setTimeout(finish,500);
|
||||||
},null,dev);
|
},null,dev);
|
||||||
});
|
},function(){
|
||||||
|
alert('更新地址有误');
|
||||||
|
},true);
|
||||||
};
|
};
|
||||||
|
|
||||||
lib.init.req('game/update.js',function(){
|
lib.init.req('game/update.js',function(){
|
||||||
|
@ -31749,9 +31754,9 @@
|
||||||
button3.onclick=function(){
|
button3.onclick=function(){
|
||||||
game.checkForUpdate(null,true);
|
game.checkForUpdate(null,true);
|
||||||
};
|
};
|
||||||
if(lib.config.dev){
|
// if(lib.config.dev){
|
||||||
li1.lastChild.appendChild(button3);
|
// li1.lastChild.appendChild(button3);
|
||||||
}
|
// }
|
||||||
|
|
||||||
(function(){
|
(function(){
|
||||||
var updatep1=li1.querySelector('p');
|
var updatep1=li1.querySelector('p');
|
||||||
|
|
|
@ -14,7 +14,7 @@ window.noname_update={
|
||||||
'card/sp.js',
|
'card/sp.js',
|
||||||
'card/yunchou.js',
|
'card/yunchou.js',
|
||||||
// 'character/*',
|
// 'character/*',
|
||||||
// 'character/sp.js',
|
'character/gujian.js',
|
||||||
// 'mode/boss.js',
|
// 'mode/boss.js',
|
||||||
// 'mode/versus.js',
|
// 'mode/versus.js',
|
||||||
// 'mode/guozhan.js',
|
// 'mode/guozhan.js',
|
||||||
|
|
Loading…
Reference in New Issue