2015-05-08 08:07:38 +00:00
|
|
|
|
'use strict';
|
|
|
|
|
mode.chess={
|
|
|
|
|
canvasUpdates2:[],
|
2015-10-27 07:56:42 +00:00
|
|
|
|
hiddenCharacters:[],
|
2016-03-23 02:34:26 +00:00
|
|
|
|
start:function(){
|
|
|
|
|
"step 0"
|
|
|
|
|
_status.mode=get.config('chess_mode');
|
2016-08-28 00:30:25 +00:00
|
|
|
|
if(lib.storage.test){
|
|
|
|
|
_status.mode='combat';
|
|
|
|
|
}
|
2016-03-23 02:34:26 +00:00
|
|
|
|
if(_status.mode=='combat'){
|
|
|
|
|
_status.first_less=true;
|
|
|
|
|
}
|
|
|
|
|
"step 1"
|
|
|
|
|
for(var i in lib.skill){
|
|
|
|
|
if(lib.skill[i].changeSeat){
|
|
|
|
|
lib.skill[i]={};
|
|
|
|
|
if(lib.translate[i+'_info']){
|
|
|
|
|
lib.translate[i+'_info']='此模式下不可用';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-03-27 15:31:20 +00:00
|
|
|
|
lib.init.css(lib.assetURL+'layout/mode','chess');
|
2016-03-23 02:34:26 +00:00
|
|
|
|
ui.chesssheet=document.createElement('style');
|
|
|
|
|
document.head.appendChild(ui.chesssheet);
|
|
|
|
|
var playback=localStorage.getItem(lib.configprefix+'playback');
|
|
|
|
|
lib.treasurelist=[];
|
|
|
|
|
if(get.config('chess_character')||playback||_status.mode=='leader'){
|
|
|
|
|
for(var i in lib.characterPack.mode_chess){
|
|
|
|
|
if(i.indexOf('treasure_')==0){
|
|
|
|
|
lib.treasurelist.push(i);
|
|
|
|
|
}
|
|
|
|
|
if(!playback&&i.indexOf('leader_')==0&&_status.mode!='leader') continue;
|
|
|
|
|
lib.character[i]=lib.characterPack.mode_chess[i];
|
|
|
|
|
if(!lib.character[i][4]){
|
|
|
|
|
lib.character[i][4]=[];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-12 14:50:54 +00:00
|
|
|
|
if(get.config('chess_card')){
|
|
|
|
|
lib.card.list=lib.card.list.concat(lib.chess_cardlist);
|
|
|
|
|
}
|
2016-03-23 02:34:26 +00:00
|
|
|
|
ui.create.cards();
|
|
|
|
|
game.finishCards();
|
2017-02-09 01:29:32 +00:00
|
|
|
|
game.addGlobalSkill('autoswap');
|
2016-03-23 02:34:26 +00:00
|
|
|
|
ui.chessContainer=ui.create.div('#chess-container',ui.arena);
|
|
|
|
|
lib.setScroll(ui.chessContainer);
|
|
|
|
|
ui.chess=ui.create.div('#chess',ui.chessContainer);
|
|
|
|
|
ui.canvas2=document.createElement('canvas');
|
|
|
|
|
ui.canvas2.id='canvas2';
|
|
|
|
|
ui.chess.appendChild(ui.canvas2);
|
|
|
|
|
ui.ctx2=ui.canvas2.getContext('2d');
|
|
|
|
|
game.me=ui.create.player();
|
|
|
|
|
if(playback){
|
|
|
|
|
for(var i in lib.characterPack){
|
|
|
|
|
for(var j in lib.characterPack[i]){
|
|
|
|
|
lib.character[j]=lib.character[j]||lib.characterPack[i][j];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
game.pause();
|
|
|
|
|
ui.system.style.display='none';
|
|
|
|
|
_status.playback=playback;
|
|
|
|
|
localStorage.removeItem(lib.configprefix+'playback');
|
|
|
|
|
var store=lib.db.transaction(['video'],'readwrite').objectStore('video');
|
|
|
|
|
store.get(parseInt(playback)).onsuccess=function(e){
|
|
|
|
|
if(e.target.result){
|
|
|
|
|
event.video=e.target.result.video;
|
|
|
|
|
game.resume();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
alert('播放失败:找不到录像');
|
|
|
|
|
game.reload();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
switch(_status.mode){
|
|
|
|
|
case 'leader':{
|
|
|
|
|
game.leaderView();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'combat':{
|
|
|
|
|
if(lib.storage.test){
|
|
|
|
|
lib.config.game_speed='vfast';
|
|
|
|
|
_status.auto=true;
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
ui.updatehl();
|
|
|
|
|
},500);
|
|
|
|
|
ui.auto.classList.add('glow');
|
|
|
|
|
}
|
|
|
|
|
game.chooseCharacter();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default:{
|
|
|
|
|
game.chooseCharacter();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
"step 2"
|
|
|
|
|
ui.arena.classList.add('chess');
|
|
|
|
|
var mylistmap,enemylistmap;
|
|
|
|
|
if(event.video){
|
|
|
|
|
var videocontent;
|
|
|
|
|
for(var ii=0;ii<event.video.length;ii++){
|
|
|
|
|
if(event.video[ii].type=='init'){
|
|
|
|
|
videocontent=event.video[ii].content;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_status.mylist=[];
|
|
|
|
|
_status.enemylist=[];
|
|
|
|
|
mylistmap=[];
|
|
|
|
|
enemylistmap=[];
|
|
|
|
|
for(var i=0;i<videocontent.length;i++){
|
|
|
|
|
if(videocontent[i].lord){
|
|
|
|
|
_status.lord=videocontent[i].name;
|
|
|
|
|
}
|
|
|
|
|
if(videocontent[i].identity=='friend'){
|
|
|
|
|
_status.mylist.push(videocontent[i].name);
|
|
|
|
|
mylistmap.push(videocontent[i].position);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
_status.enemylist.push(videocontent[i].name);
|
|
|
|
|
enemylistmap.push(videocontent[i].position);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
game.playerMap=lib.posmap;
|
|
|
|
|
}
|
|
|
|
|
var num=Math.round((_status.mylist.length+_status.enemylist.length)/2);
|
|
|
|
|
var friend,enemy;
|
|
|
|
|
var side;
|
|
|
|
|
if(_status.mode=='leader'){
|
|
|
|
|
side=true;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
side=Math.random()<0.5;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-15 16:45:42 +00:00
|
|
|
|
switch(num){
|
|
|
|
|
case 1:ui.chessheight=4;break;
|
|
|
|
|
case 2:ui.chessheight=5;break;
|
|
|
|
|
case 3:ui.chessheight=5;break;
|
|
|
|
|
case 4:ui.chessheight=6;break;
|
|
|
|
|
case 5:ui.chessheight=6;break;
|
|
|
|
|
case 6:ui.chessheight=7;break;
|
|
|
|
|
case 7:ui.chessheight=7;break;
|
|
|
|
|
case 8:ui.chessheight=8;break;
|
|
|
|
|
default:ui.chessheight=8;
|
2016-03-23 02:34:26 +00:00
|
|
|
|
}
|
2016-08-15 16:45:42 +00:00
|
|
|
|
ui.chesswidth=Math.round(ui.chessheight*1.5);
|
|
|
|
|
|
2016-03-23 02:34:26 +00:00
|
|
|
|
if(num==1) ui.chesswidth++;
|
|
|
|
|
ui.chess.style.height=148*ui.chessheight+'px';
|
|
|
|
|
ui.chess.style.width=148*ui.chesswidth+'px';
|
|
|
|
|
if(!lib.config.touchscreen){
|
|
|
|
|
ui.chess.addEventListener('mousedown',function(e){
|
|
|
|
|
if(Array.isArray(e.path)){
|
|
|
|
|
for(var i=0;i<e.path.length;i++){
|
|
|
|
|
var itemtype=get.itemtype(e.path[i]);
|
|
|
|
|
if(itemtype=='button'||itemtype=='card'||itemtype=='player'){
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this._chessdrag=[e,this.parentNode.scrollLeft,this.parentNode.scrollTop];
|
|
|
|
|
});
|
|
|
|
|
ui.chess.addEventListener('mouseleave',function(){
|
|
|
|
|
this._chessdrag=null;
|
|
|
|
|
});
|
|
|
|
|
ui.chess.addEventListener('mouseup',function(){
|
|
|
|
|
if(this._chessdrag){
|
|
|
|
|
this._chessdrag=null;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
ui.chess.addEventListener('mousemove',function(e){
|
|
|
|
|
if(this._chessdrag){
|
|
|
|
|
this.parentNode.scrollLeft=this._chessdrag[1]-e.x+this._chessdrag[0].x;
|
|
|
|
|
this.parentNode.scrollTop=this._chessdrag[2]-e.y+this._chessdrag[0].y;
|
|
|
|
|
_status.clicked=true;
|
|
|
|
|
}
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
});
|
|
|
|
|
ui.chessContainer.addEventListener('mousewheel',function(){
|
|
|
|
|
if(_status.currentChessFocus){
|
|
|
|
|
clearInterval(_status.currentChessFocus);
|
|
|
|
|
delete _status.currentChessFocus;
|
|
|
|
|
}
|
2017-01-16 15:49:45 +00:00
|
|
|
|
},{passive:true});
|
2016-03-23 02:34:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui.chessscroll1=ui.create.div('.chessscroll.left',ui.chessContainer);
|
|
|
|
|
ui.chessscroll2=ui.create.div('.chessscroll.right',ui.chessContainer);
|
|
|
|
|
var chessscroll=function(){
|
|
|
|
|
if(lib.config.touchscreen) return;
|
|
|
|
|
var direction=this.direction;
|
|
|
|
|
var speed=parseInt(get.config('chessscroll_speed'));
|
|
|
|
|
if(!speed) return;
|
|
|
|
|
var interval=setInterval(function(){
|
|
|
|
|
ui.chessContainer.scrollLeft+=speed*direction;
|
|
|
|
|
},16);
|
|
|
|
|
_status.chessscrolling=interval;
|
|
|
|
|
};
|
|
|
|
|
var leavescroll=function(){
|
|
|
|
|
if(_status.chessscrolling){
|
|
|
|
|
clearInterval(_status.chessscrolling);
|
|
|
|
|
delete _status.chessscrolling;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
ui.chessscroll1.direction=-1;
|
|
|
|
|
ui.chessscroll1.addEventListener('mouseenter',chessscroll);
|
|
|
|
|
ui.chessscroll1.addEventListener('mouseleave',leavescroll);
|
|
|
|
|
|
|
|
|
|
ui.chessscroll2.direction=1;
|
|
|
|
|
ui.chessscroll2.addEventListener('mouseenter',chessscroll);
|
|
|
|
|
ui.chessscroll2.addEventListener('mouseleave',leavescroll);
|
|
|
|
|
|
|
|
|
|
for(var i=0;i<ui.chesswidth;i++){
|
|
|
|
|
for(var j=0;j<ui.chessheight;j++){
|
|
|
|
|
var pos='[data-position="'+(i+j*ui.chesswidth)+'"]';
|
|
|
|
|
ui.chesssheet.sheet.insertRule('#arena.chess #chess>.player'+pos+
|
|
|
|
|
'{left:'+(14+i*148)+'px;top:'+(14+j*148)+'px}',0);
|
|
|
|
|
ui.chesssheet.sheet.insertRule('#arena.chess #chess>.card'+pos+
|
|
|
|
|
'{left:'+(22+i*148)+'px;top:'+(22+j*148)+'px}',0);
|
|
|
|
|
ui.chesssheet.sheet.insertRule('#arena.chess #chess>.popup'+pos+
|
|
|
|
|
'{left:'+(19+i*148)+'px;top:'+(142+j*148)+'px}',0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var grids=[];
|
|
|
|
|
var gridnum=ui.chessheight*ui.chesswidth;
|
|
|
|
|
for(var i=0;i<gridnum;i++){
|
|
|
|
|
grids.push(i);
|
|
|
|
|
}
|
|
|
|
|
event.obs=[];
|
|
|
|
|
if(!event.video){
|
2016-08-15 16:45:42 +00:00
|
|
|
|
var nco=parseFloat(get.config('chess_obstacle'));
|
|
|
|
|
if(nco>0){
|
|
|
|
|
var ng=Math.floor(gridnum*nco);
|
|
|
|
|
for(var i=0;i<ng;i++){
|
|
|
|
|
var cg=grids.randomRemove();
|
2016-03-23 02:34:26 +00:00
|
|
|
|
game.addObstacle(cg.toString(),false);
|
|
|
|
|
event.obs.push(cg.toString());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_status.enemyCount=_status.enemylist.length;
|
|
|
|
|
_status.friendCount=_status.mylist.length;
|
|
|
|
|
while(_status.mylist.length){
|
|
|
|
|
friend=ui.create.player().animate('start');
|
2016-08-12 08:26:31 +00:00
|
|
|
|
friend.getId();
|
2016-03-23 02:34:26 +00:00
|
|
|
|
if(!event.friendZhu){
|
|
|
|
|
event.friendZhu=friend;
|
|
|
|
|
}
|
|
|
|
|
else if(!event.friendViceZhu){
|
|
|
|
|
event.friendViceZhu=friend;
|
|
|
|
|
}
|
|
|
|
|
friend.init(_status.mylist.shift());
|
|
|
|
|
friend.side=side;
|
|
|
|
|
friend.setIdentity('friend');
|
|
|
|
|
friend.identity='friend';
|
|
|
|
|
friend.node.identity.dataset.color=get.translation(side+'Color');
|
|
|
|
|
game.players.push(friend);
|
|
|
|
|
ui.chess.appendChild(friend);
|
|
|
|
|
if(event.video){
|
|
|
|
|
friend.dataset.position=mylistmap.shift();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
friend.dataset.position=grids.randomRemove();
|
|
|
|
|
if(_status.enterArena&&game.data.arena.acted.contains(friend.name)){
|
|
|
|
|
friend.hp--;
|
|
|
|
|
friend.update();
|
|
|
|
|
}
|
|
|
|
|
if(_status.enterArena){
|
|
|
|
|
friend.addSkill('arenaAdd');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
lib.posmap[friend.dataset.position]=friend;
|
|
|
|
|
}
|
|
|
|
|
while(_status.enemylist.length){
|
|
|
|
|
enemy=ui.create.player().animate('start');
|
2016-08-12 08:26:31 +00:00
|
|
|
|
enemy.getId();
|
2016-03-23 02:34:26 +00:00
|
|
|
|
enemy.init(_status.enemylist.shift());
|
|
|
|
|
enemy.side=!side;
|
|
|
|
|
enemy.setIdentity('enemy');
|
|
|
|
|
enemy.identity='enemy';
|
|
|
|
|
enemy.node.identity.dataset.color=get.translation(!side+'Color');
|
|
|
|
|
game.players.push(enemy);
|
|
|
|
|
ui.chess.appendChild(enemy);
|
|
|
|
|
if(event.video){
|
|
|
|
|
enemy.dataset.position=enemylistmap.shift();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
enemy.dataset.position=grids.randomRemove();
|
|
|
|
|
}
|
|
|
|
|
lib.posmap[enemy.dataset.position]=enemy;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-15 17:06:18 +00:00
|
|
|
|
if(lib.config.show_handcardbutton){
|
|
|
|
|
lib.setPopped(ui.create.system('手牌',null,true),function(){
|
|
|
|
|
var uiintro=ui.create.dialog('hidden');
|
|
|
|
|
var added=false;
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i].side==game.me.side&&game.players[i]!=game.me){
|
|
|
|
|
added=true;
|
|
|
|
|
uiintro.add(get.translation(game.players[i]));
|
|
|
|
|
var cards=game.players[i].get('h');
|
|
|
|
|
if(cards.length){
|
|
|
|
|
uiintro.addSmall(cards,true);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
uiintro.add('(无)');
|
|
|
|
|
}
|
2016-03-23 02:34:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-15 17:06:18 +00:00
|
|
|
|
if(!added){
|
|
|
|
|
uiintro.add('无队友');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return uiintro;
|
|
|
|
|
},220);
|
|
|
|
|
}
|
2016-03-23 02:34:26 +00:00
|
|
|
|
|
|
|
|
|
if(!event.video&&_status.mode=='combat'&&!_status.vsboss&&(_status.replacelist.length||get.config('additional_player'))){
|
|
|
|
|
_status.enemyDied=0;
|
|
|
|
|
_status.friendDied=0;
|
|
|
|
|
ui.enemyDied=ui.create.system('杀敌: '+get.cnNumber(0),null,true);
|
|
|
|
|
ui.friendDied=ui.create.system('阵亡: '+get.cnNumber(0),null,true);
|
|
|
|
|
if(!get.config('additional_player')){
|
|
|
|
|
lib.setPopped(ui.friendDied,function(){
|
|
|
|
|
if(_status.replacelist.length){
|
|
|
|
|
var uiintro=ui.create.dialog('hidden');
|
|
|
|
|
|
|
|
|
|
uiintro.add('未上场');
|
|
|
|
|
uiintro.add([_status.replacelist,'character']);
|
|
|
|
|
|
|
|
|
|
return uiintro;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(!event.video&&_status.mode=='combat'&&!get.config('single_control')&&!_status.boss){
|
|
|
|
|
ui.single_swap=ui.create.system('换人',function(){
|
|
|
|
|
var bool=false;
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i].side==game.me.side&&game.players[i]!=game.me){
|
|
|
|
|
bool=true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(bool){
|
|
|
|
|
if(ui.auto.classList.contains('hidden')){
|
|
|
|
|
game.me.popup('请稍后换人');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(_status.event.isMine()){
|
|
|
|
|
ui.click.auto();
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
ui.click.auto();
|
|
|
|
|
},500);
|
|
|
|
|
}
|
|
|
|
|
var player=game.me;
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
player=player.next;
|
|
|
|
|
if(player.side==game.me.side){
|
|
|
|
|
game.modeSwapPlayer(player);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},true);
|
|
|
|
|
}
|
|
|
|
|
if(!event.video&&_status.mode=='combat'&&!_status.vsboss&&get.config('additional_player')){
|
|
|
|
|
var finishGameBr=document.createElement('br');
|
|
|
|
|
finishGameBr.classList.add('finish_game');
|
|
|
|
|
ui.finishGame=ui.create.system('结束游戏',function(){
|
|
|
|
|
ui.finishGame.remove();
|
|
|
|
|
if(_status.friendDied<_status.enemyDied){
|
|
|
|
|
game.forceOver(true);
|
|
|
|
|
}
|
|
|
|
|
else if(_status.friendDied>_status.enemyDied){
|
|
|
|
|
game.forceOver(false);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
game.forceOver();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
ui.finishGame.classList.add('finish_game');
|
|
|
|
|
ui.finishGame.parentNode.insertBefore(finishGameBr,ui.finishGame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui.create.me();
|
|
|
|
|
ui.create.fakeme();
|
|
|
|
|
|
|
|
|
|
if(!event.video&&_status.mode=='combat'&&get.config('zhu')&&!_status.vsboss&&game.players.length>2){
|
|
|
|
|
game.friendZhu=event.friendZhu;
|
|
|
|
|
game.friendZhu.hp++;
|
|
|
|
|
game.friendZhu.maxHp++;
|
|
|
|
|
game.friendZhu.update();
|
|
|
|
|
game.friendZhu.node.identity.firstChild.innerHTML='将';
|
|
|
|
|
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i].side!=game.me.side){
|
|
|
|
|
game.enemyZhu=game.players[i];
|
|
|
|
|
game.players[i].hp++;
|
|
|
|
|
game.players[i].maxHp++;
|
|
|
|
|
game.players[i].update();
|
|
|
|
|
game.players[i].node.identity.firstChild.innerHTML='帅';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(get.config('main_zhu')&&event.friendViceZhu){
|
|
|
|
|
game.friendViceZhu=event.friendViceZhu;
|
|
|
|
|
game.friendViceZhu.node.identity.firstChild.innerHTML='仕';
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i].side!=game.me.side&&game.players[i]!=game.enemyZhu){
|
|
|
|
|
game.enemyViceZhu=game.players[i];
|
|
|
|
|
game.players[i].node.identity.firstChild.innerHTML='士';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui.chessinfo=ui.create.div('.fakeme.player',ui.me,function(e){
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
});
|
|
|
|
|
lib.setScroll(ui.chessinfo);
|
|
|
|
|
|
|
|
|
|
game.arrangePlayers();
|
|
|
|
|
"step 3"
|
|
|
|
|
ui.control.style.display='';
|
|
|
|
|
var p;
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(_status.lord){
|
|
|
|
|
if(game.players[i].name==_status.lord){
|
|
|
|
|
p=game.players[i];
|
|
|
|
|
p.addSkill('tongshuai');
|
|
|
|
|
p.addSkill('leader_zhaoxiang');
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if(game.players[i].side){
|
|
|
|
|
p=game.players[i];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(event.video){
|
|
|
|
|
game.playVideoContent(event.video);
|
|
|
|
|
game.setChessInfo(p);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var players=get.players(lib.sort.position);
|
|
|
|
|
var info=[];
|
|
|
|
|
for(var i=0;i<players.length;i++){
|
|
|
|
|
info.push({
|
|
|
|
|
name:players[i].name,
|
|
|
|
|
identity:players[i].identity,
|
|
|
|
|
position:players[i].dataset.position,
|
|
|
|
|
lord:players[i].name==_status.lord
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
_status.videoInited=true;
|
|
|
|
|
game.addVideo('init',null,info);
|
|
|
|
|
if(game.friendZhu){
|
|
|
|
|
game.addVideo('identityText',game.friendZhu,'将');
|
|
|
|
|
game.addVideo('identityText',game.enemyZhu,'帅');
|
|
|
|
|
if(game.friendViceZhu){
|
|
|
|
|
game.addVideo('identityText',game.friendViceZhu,'仕');
|
|
|
|
|
game.addVideo('identityText',game.enemyViceZhu,'士');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(event.obs){
|
|
|
|
|
game.addVideo('initobs',null,event.obs);
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-15 16:45:42 +00:00
|
|
|
|
event.trigger('gameStart');
|
|
|
|
|
game.gameDraw(p);
|
|
|
|
|
game.me.classList.add('current_action');
|
|
|
|
|
if(_status.mode=='leader'){
|
|
|
|
|
game.phaseLoopOrdered(p);
|
|
|
|
|
}
|
|
|
|
|
else if(get.config('seat_order')=='指定'){
|
|
|
|
|
game.phaseLoopOrdered(p);
|
2016-03-23 02:34:26 +00:00
|
|
|
|
}
|
|
|
|
|
else{
|
2016-08-15 16:45:42 +00:00
|
|
|
|
game.phaseLoop(p);
|
2016-03-23 02:34:26 +00:00
|
|
|
|
}
|
2016-08-15 16:45:42 +00:00
|
|
|
|
game.setChessInfo(p);
|
2016-03-23 02:34:26 +00:00
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
element:{
|
|
|
|
|
card:{
|
|
|
|
|
moveTo:function(player,method){
|
|
|
|
|
this.fixed=true;
|
|
|
|
|
if(this.parentNode==ui.arena){
|
|
|
|
|
var rect=player.getBoundingClientRect();
|
|
|
|
|
this.style.left=(rect.left+8)+'px';
|
|
|
|
|
this.style.top=(rect.top+8)+'px';
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
this.style.left='';
|
|
|
|
|
this.style.top='';
|
|
|
|
|
this.dataset.position=player.dataset.position;
|
|
|
|
|
}
|
|
|
|
|
if(method=='flip'){
|
|
|
|
|
this.style.transition='all 0.5s';
|
2015-11-05 02:34:35 +00:00
|
|
|
|
this.style.transform='rotate'+(Math.random()<0.5?'X':'Y')+'(180deg) perspective(1000px)';
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
else if(method=='rotate'){
|
|
|
|
|
this.style.transition='all 0.5s';
|
2015-11-05 02:34:35 +00:00
|
|
|
|
this.style.transform='rotate(180deg)';
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
2015-11-04 01:59:00 +00:00
|
|
|
|
else{
|
|
|
|
|
this.style.transition='all 0.5s';
|
2015-11-05 02:34:35 +00:00
|
|
|
|
this.style.transform='';
|
2015-11-04 01:59:00 +00:00
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
return this;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
player:{
|
2015-05-08 13:37:34 +00:00
|
|
|
|
createRangeShadow:function(num,move){
|
|
|
|
|
num++;
|
|
|
|
|
var shadows=this.parentNode.getElementsByClassName('playergrid');
|
|
|
|
|
while(shadows.length){
|
|
|
|
|
shadows[0].remove();
|
|
|
|
|
}
|
2015-11-09 03:15:16 +00:00
|
|
|
|
var grids=[];
|
2015-05-08 13:37:34 +00:00
|
|
|
|
for(var i=1-num;i<num;i++){
|
|
|
|
|
for(var j=1-num+Math.abs(i);j<num-Math.abs(i);j++){
|
|
|
|
|
if(this.movable(i,j)){
|
|
|
|
|
var grid=ui.create.playergrid(this,i,j);
|
2015-11-13 09:12:47 +00:00
|
|
|
|
if(grid){
|
|
|
|
|
grids.push(grid);
|
|
|
|
|
if(typeof move=='function'){
|
|
|
|
|
grid.listen(move);
|
|
|
|
|
}
|
|
|
|
|
else if(move){
|
|
|
|
|
grid.listen(ui.click.playergrid);
|
|
|
|
|
ui.movegrids.push(grid);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
grid.classList.add('temp');
|
|
|
|
|
}
|
2015-05-08 13:37:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-11-09 03:15:16 +00:00
|
|
|
|
return grids;
|
2015-05-08 13:37:34 +00:00
|
|
|
|
},
|
2015-05-10 05:34:37 +00:00
|
|
|
|
chooseToMove:function(num,prompt){
|
2015-05-08 08:07:38 +00:00
|
|
|
|
var next=game.createEvent('chooseToMove');
|
|
|
|
|
next.num=num||1;
|
|
|
|
|
next.player=this;
|
2016-08-13 17:24:05 +00:00
|
|
|
|
next.setContent('chooseToMove');
|
2015-05-10 05:34:37 +00:00
|
|
|
|
next.prompt=prompt;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
return next;
|
|
|
|
|
},
|
|
|
|
|
move:function(x,y){
|
|
|
|
|
var xy=this.getXY();
|
|
|
|
|
return this.moveTo(x+xy[0],y+xy[1]);
|
|
|
|
|
},
|
|
|
|
|
moveTo:function(x,y){
|
2015-11-04 01:59:00 +00:00
|
|
|
|
game.addVideo('moveTo',this,[x,y]);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
if(x>=ui.chesswidth){
|
|
|
|
|
x=ui.chesswidth-1;
|
|
|
|
|
}
|
|
|
|
|
if(y>=ui.chessheight){
|
|
|
|
|
y=ui.chessheight-1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var pos=y*ui.chesswidth+x;
|
|
|
|
|
if(!lib.posmap[pos]){
|
|
|
|
|
delete lib.posmap[this.dataset.position];
|
|
|
|
|
this.dataset.position=pos;
|
|
|
|
|
lib.posmap[pos]=this;
|
|
|
|
|
this.chessFocus();
|
|
|
|
|
}
|
2015-11-13 01:43:16 +00:00
|
|
|
|
|
2016-08-15 16:45:42 +00:00
|
|
|
|
if(get.mode()=='tafang'&&!_status.video){
|
2015-11-13 01:43:16 +00:00
|
|
|
|
if(_status.tafangend.contains(this.dataset.position)){
|
2015-11-13 09:12:47 +00:00
|
|
|
|
if(_status.enemies.contains(this)){
|
|
|
|
|
game.over(false);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
this.delete();
|
|
|
|
|
delete lib.posmap[this];
|
|
|
|
|
game.players.remove(this);
|
|
|
|
|
_status.friends.remove(this);
|
|
|
|
|
this.classList.add('dead');
|
|
|
|
|
if(this==game.me){
|
2016-08-15 16:45:42 +00:00
|
|
|
|
if(ui.confirm){
|
|
|
|
|
ui.confirm.close();
|
|
|
|
|
}
|
2015-11-13 09:12:47 +00:00
|
|
|
|
if(_status.friends.length==0){
|
|
|
|
|
ui.fakeme.hide();
|
|
|
|
|
this.node.handcards1.delete();
|
|
|
|
|
this.node.handcards2.delete();
|
|
|
|
|
game.me=ui.create.player();
|
2016-08-15 16:45:42 +00:00
|
|
|
|
game.me.side=false;
|
|
|
|
|
game.addVideo('removeTafangPlayer');
|
2015-11-13 09:12:47 +00:00
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
game.modeSwapPlayer(_status.friends[0]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<ui.phasequeue.length;i++){
|
|
|
|
|
if(ui.phasequeue[i].link==this){
|
|
|
|
|
ui.phasequeue[i].remove();
|
|
|
|
|
ui.phasequeue.splice(i,1);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
game.addVideo('deleteChessPlayer',this);
|
|
|
|
|
}
|
2015-11-13 01:43:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
return this;
|
|
|
|
|
},
|
2015-11-09 03:15:16 +00:00
|
|
|
|
canMoveTowards:function(target){
|
|
|
|
|
var fxy=this.getXY();
|
|
|
|
|
var txy=target.getXY();
|
|
|
|
|
var dx=txy[0]-fxy[0];
|
|
|
|
|
var dy=txy[1]-fxy[1];
|
|
|
|
|
if(dx<0&&this.movable(-1,0)) return true;
|
|
|
|
|
if(dx>0&&this.movable(1,0)) return true;
|
|
|
|
|
if(dy<0&&this.movable(0,-1)) return true;
|
|
|
|
|
if(dy>0&&this.movable(0,1)) return true;
|
|
|
|
|
return false;
|
|
|
|
|
},
|
2017-01-25 04:59:12 +00:00
|
|
|
|
moveTowards:function(target,forbid){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
var fxy=this.getXY();
|
2015-11-13 01:43:16 +00:00
|
|
|
|
var txy;
|
|
|
|
|
if(Array.isArray(target)){
|
|
|
|
|
txy=target;
|
|
|
|
|
}
|
|
|
|
|
else if(typeof target=='string'){
|
|
|
|
|
var pos=parseInt(target);
|
|
|
|
|
txy=[pos%ui.chesswidth,Math.floor(pos/ui.chesswidth)];
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
txy=target.getXY();
|
|
|
|
|
}
|
2015-11-09 03:15:16 +00:00
|
|
|
|
var dx=txy[0]-fxy[0];
|
|
|
|
|
var dy=txy[1]-fxy[1];
|
2017-01-25 04:59:12 +00:00
|
|
|
|
forbid=forbid||[];
|
2015-11-09 03:15:16 +00:00
|
|
|
|
if(Math.abs(dx)>Math.abs(dy)){
|
|
|
|
|
if(dx<0){
|
2017-01-25 04:59:12 +00:00
|
|
|
|
if(!forbid.contains('moveLeft')&&this.movable(-1,0)){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
this.moveLeft();
|
2017-01-25 04:59:12 +00:00
|
|
|
|
return 'moveLeft';
|
2015-11-09 03:15:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(dx>0){
|
2017-01-25 04:59:12 +00:00
|
|
|
|
if(!forbid.contains('moveRight')&&this.movable(1,0)){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
this.moveRight();
|
2017-01-25 04:59:12 +00:00
|
|
|
|
return 'moveRight';
|
2015-11-09 03:15:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(dy<0){
|
2017-01-25 04:59:12 +00:00
|
|
|
|
if(!forbid.contains('moveUp')&&this.movable(0,-1)){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
this.moveUp();
|
2017-01-25 04:59:12 +00:00
|
|
|
|
return 'moveUp';
|
2015-11-09 03:15:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(dy>0){
|
2017-01-25 04:59:12 +00:00
|
|
|
|
if(!forbid.contains('moveDown')&&this.movable(0,1)){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
this.moveDown();
|
2017-01-25 04:59:12 +00:00
|
|
|
|
return 'moveDown';
|
2015-11-09 03:15:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if(dy<0){
|
2017-01-25 04:59:12 +00:00
|
|
|
|
if(!forbid.contains('moveUp')&&this.movable(0,-1)){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
this.moveUp();
|
2017-01-25 04:59:12 +00:00
|
|
|
|
return 'moveUp';
|
2015-11-09 03:15:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(dy>0){
|
2017-01-25 04:59:12 +00:00
|
|
|
|
if(!forbid.contains('moveDown')&&this.movable(0,1)){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
this.moveDown();
|
2017-01-25 04:59:12 +00:00
|
|
|
|
return 'moveDown';
|
2015-11-09 03:15:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(dx<0){
|
2017-01-25 04:59:12 +00:00
|
|
|
|
if(!forbid.contains('moveLeft')&&this.movable(-1,0)){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
this.moveLeft();
|
2017-01-25 04:59:12 +00:00
|
|
|
|
return 'moveLeft';
|
2015-11-09 03:15:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(dx>0){
|
2017-01-25 04:59:12 +00:00
|
|
|
|
if(!forbid.contains('moveRight')&&this.movable(1,0)){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
this.moveRight();
|
2017-01-25 04:59:12 +00:00
|
|
|
|
return 'moveRight';
|
2015-11-09 03:15:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
chessFocus:function(){
|
2015-11-04 01:59:00 +00:00
|
|
|
|
game.addVideo('chessFocus',this);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
if(ui.chess._chessdrag) return;
|
2015-05-09 02:56:55 +00:00
|
|
|
|
if(_status.chessscrolling) return;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
var player=this;
|
|
|
|
|
var dx=0,dy=0;
|
|
|
|
|
|
|
|
|
|
if(player.offsetLeft-ui.chessContainer.scrollLeft<14){
|
|
|
|
|
dx=player.offsetLeft-ui.chessContainer.scrollLeft-14;
|
|
|
|
|
}
|
|
|
|
|
else if(player.offsetLeft-ui.chessContainer.scrollLeft>ui.chessContainer.offsetWidth-134){
|
|
|
|
|
dx=player.offsetLeft-ui.chessContainer.scrollLeft-ui.chessContainer.offsetWidth+134;
|
|
|
|
|
}
|
|
|
|
|
if(player.offsetTop-ui.chessContainer.scrollTop<14){
|
|
|
|
|
dy=player.offsetTop-ui.chessContainer.scrollTop-14;
|
|
|
|
|
}
|
|
|
|
|
else if(player.offsetTop+ui.chess.offsetTop-ui.chessContainer.scrollTop>ui.chessContainer.offsetHeight-134){
|
|
|
|
|
dy=player.offsetTop+ui.chess.offsetTop-ui.chessContainer.scrollTop-ui.chessContainer.offsetHeight+134;
|
|
|
|
|
}
|
|
|
|
|
if(_status.currentChessFocus){
|
|
|
|
|
clearInterval(_status.currentChessFocus);
|
|
|
|
|
}
|
|
|
|
|
var count=12;
|
|
|
|
|
var ddx=Math.floor(dx/12);
|
|
|
|
|
var ddy=Math.floor(dy/12);
|
|
|
|
|
if(dx||dy){
|
|
|
|
|
_status.currentChessFocus=setInterval(function(){
|
|
|
|
|
if(count--){
|
|
|
|
|
ui.chessContainer.scrollLeft+=ddx;
|
|
|
|
|
ui.chessContainer.scrollTop+=ddy;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
ui.chessContainer.scrollLeft+=dx%12;
|
|
|
|
|
ui.chessContainer.scrollTop+=dy%12;
|
|
|
|
|
clearInterval(_status.currentChessFocus);
|
|
|
|
|
delete _status.currentChessFocus;
|
|
|
|
|
}
|
|
|
|
|
},16);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getXY:function(){
|
|
|
|
|
var pos=parseInt(this.dataset.position);
|
|
|
|
|
var x=pos%ui.chesswidth;
|
|
|
|
|
var y=Math.floor(pos/ui.chesswidth);
|
|
|
|
|
return [x,y];
|
|
|
|
|
},
|
|
|
|
|
getDataPos:function(x,y){
|
|
|
|
|
var xy=this.getXY();
|
|
|
|
|
if(typeof x!='number') x=0;
|
|
|
|
|
if(typeof y!='number') y=0;
|
|
|
|
|
x+=xy[0];
|
|
|
|
|
y+=xy[1];
|
|
|
|
|
return x+y*ui.chesswidth;
|
|
|
|
|
},
|
|
|
|
|
getNeighbour:function(x,y){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
var xy=this.getXY();
|
|
|
|
|
if(xy[0]+x<0) return null;
|
|
|
|
|
if(xy[1]+y<0) return null;
|
|
|
|
|
if(xy[0]+x>=ui.chesswidth) return null;
|
|
|
|
|
if(xy[1]+y>=ui.chessheight) return null;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
return lib.posmap[this.getDataPos(x,y)]||null;
|
|
|
|
|
},
|
2017-01-12 14:50:54 +00:00
|
|
|
|
getNeighbours:function(){
|
|
|
|
|
var players=[];
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.isChessNeighbour(game.players[i],this)){
|
|
|
|
|
players.push(game.players[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return players;
|
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
movable:function(x,y){
|
|
|
|
|
var xy=this.getXY();
|
|
|
|
|
if(xy[0]+x<0) return false;
|
|
|
|
|
if(xy[1]+y<0) return false;
|
|
|
|
|
if(xy[0]+x>=ui.chesswidth) return false;
|
|
|
|
|
if(xy[1]+y>=ui.chessheight) return false;
|
|
|
|
|
return !this.getNeighbour(x,y);
|
|
|
|
|
},
|
|
|
|
|
moveRight:function(){
|
|
|
|
|
if(this.movable(1,0)){
|
|
|
|
|
this.move(1,0);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
moveLeft:function(){
|
|
|
|
|
if(this.movable(-1,0)){
|
|
|
|
|
this.move(-1,0);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
moveUp:function(){
|
|
|
|
|
if(this.movable(0,-1)){
|
|
|
|
|
this.move(0,-1);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
moveDown:function(){
|
|
|
|
|
if(this.movable(0,1)){
|
|
|
|
|
this.move(0,1);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
2015-05-08 13:37:34 +00:00
|
|
|
|
dieAfter:function(source){
|
2015-05-08 08:07:38 +00:00
|
|
|
|
var player=this;
|
2015-11-13 01:43:16 +00:00
|
|
|
|
if(_status.friends){
|
|
|
|
|
_status.friends.remove(this);
|
|
|
|
|
}
|
|
|
|
|
if(_status.enemies){
|
|
|
|
|
_status.enemies.remove(this);
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
if(ui.friendDied&&player.side==game.me.side){
|
|
|
|
|
ui.friendDied.innerHTML='阵亡: '+get.cnNumber(++_status.friendDied,true);
|
|
|
|
|
}
|
|
|
|
|
if(ui.enemyDied&&player.side!=game.me.side){
|
|
|
|
|
ui.enemyDied.innerHTML='杀敌: '+get.cnNumber(++_status.enemyDied,true);
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
delete lib.posmap[player.dataset.position];
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
player.delete();
|
|
|
|
|
},500);
|
|
|
|
|
for(var i=0;i<ui.phasequeue.length;i++){
|
|
|
|
|
if(ui.phasequeue[i].link==player){
|
2015-05-08 13:37:34 +00:00
|
|
|
|
ui.phasequeue[i].remove();
|
|
|
|
|
ui.phasequeue.splice(i,1);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
if(player==game.friendZhu){
|
|
|
|
|
if(game.friendViceZhu&&game.friendViceZhu.isAlive()){
|
|
|
|
|
game.friendZhu=game.friendViceZhu;
|
|
|
|
|
delete game.friendViceZhu;
|
|
|
|
|
game.friendZhu.node.identity.lastChild.innerHTML='将';
|
|
|
|
|
game.addVideo('identityText',game.friendZhu,'将');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
game.over(false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(player==game.enemyZhu){
|
|
|
|
|
if(game.enemyViceZhu&&game.enemyViceZhu.isAlive()){
|
|
|
|
|
game.enemyZhu=game.enemyViceZhu;
|
|
|
|
|
delete game.enemyViceZhu;
|
|
|
|
|
game.enemyZhu.node.identity.lastChild.innerHTML='帅';
|
|
|
|
|
game.addVideo('identityText',game.enemyZhu,'帅');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
game.over(true);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(player==game.me){
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i].side==player.side){
|
|
|
|
|
game.modeSwapPlayer(game.players[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
var notend=false;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
for(var i=1;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i].side!=game.players[0].side){
|
2016-01-12 13:18:47 +00:00
|
|
|
|
if(source&&game.players.contains(source)){
|
|
|
|
|
if(_status.mode=='combat'){
|
|
|
|
|
if(source.side!=player.side){
|
|
|
|
|
source.draw(get.config('reward'));
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
switch(get.config('punish')){
|
|
|
|
|
case '弃牌':
|
|
|
|
|
var he=source.get('he');
|
|
|
|
|
if(he.length){
|
|
|
|
|
source.discard(he);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case '摸牌':
|
|
|
|
|
source.draw(get.config('reward'));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(source.side!=player.side){
|
|
|
|
|
source.draw();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(_status.mode!='combat'||_status.vsboss){
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
notend=true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(_status.mode=='combat'&&!_status.vsboss){
|
2016-01-24 08:34:21 +00:00
|
|
|
|
if(game.players.length==1&&get.config('additional_player')&&
|
|
|
|
|
_status.additionallist.length&&source==game.players[0]){
|
|
|
|
|
source.draw(get.config('reward'));
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
if(player.side==game.me.side){
|
|
|
|
|
if(get.config('additional_player')&&_status.additionallist.length){
|
|
|
|
|
game.replaceChessPlayer();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else if(_status.replacelist.length){
|
2016-01-24 08:34:21 +00:00
|
|
|
|
if(game.players.length==1&&source==game.players[0]){
|
|
|
|
|
source.draw(get.config('reward'));
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
game.replaceChessPlayer(_status.replacelist.randomRemove());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else if(get.config('noreplace_end')){
|
|
|
|
|
game.over(player.side!=game.me.side);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else if(notend){
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if(get.config('additional_player')&&_status.additionallist.length){
|
|
|
|
|
game.replaceChessPlayer(null,true);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else if(_status.enemyreplacelist.length){
|
2016-01-24 08:34:21 +00:00
|
|
|
|
if(game.players.length==1&&source==game.players[0]){
|
|
|
|
|
source.draw(get.config('reward'));
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
game.replaceChessPlayer(_status.enemyreplacelist.randomRemove(),true);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else if(get.config('noreplace_end')){
|
|
|
|
|
game.over(player.side!=game.me.side);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else if(notend){
|
|
|
|
|
return;
|
2015-05-08 13:37:34 +00:00
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
game.over(game.me.side==game.players[0].side);
|
|
|
|
|
},
|
2016-04-23 09:34:40 +00:00
|
|
|
|
$draw_old:function(num){
|
2015-11-04 01:59:00 +00:00
|
|
|
|
var cards;
|
|
|
|
|
if(get.itemtype(num)=='cards'){
|
|
|
|
|
cards=num;
|
|
|
|
|
}
|
|
|
|
|
else if(get.itemtype(num)=='card'){
|
|
|
|
|
cards=[num];
|
|
|
|
|
}
|
|
|
|
|
if(cards){
|
|
|
|
|
game.addVideo('chessgainmod',this,get.cardsInfo(num));
|
|
|
|
|
}
|
|
|
|
|
else if(!num||typeof num=='number'){
|
|
|
|
|
game.addVideo('chessgainmod',this,num);
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-14 05:07:39 +00:00
|
|
|
|
return this.$gainmod(num);
|
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
$gainmod:function(num){
|
|
|
|
|
var cards,node;
|
|
|
|
|
if(get.itemtype(num)=='cards'){
|
|
|
|
|
cards=num;
|
|
|
|
|
num=cards.length;
|
|
|
|
|
}
|
|
|
|
|
else if(get.itemtype(num)=='card'){
|
|
|
|
|
cards=[num];
|
|
|
|
|
num=1;
|
|
|
|
|
}
|
|
|
|
|
if(cards){
|
|
|
|
|
cards=cards.slice(0);
|
|
|
|
|
node=cards.shift().copy('thrown','hidden');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
node=ui.create.div('.card.thrown.hidden');
|
|
|
|
|
}
|
|
|
|
|
node.fixed=true;
|
2016-04-24 03:07:16 +00:00
|
|
|
|
this.$randomMove(node,130,0);
|
2015-11-05 02:34:35 +00:00
|
|
|
|
var ot=node.style.transform;
|
2015-11-15 05:54:58 +00:00
|
|
|
|
if(node.style.transform&&node.style.transform!='none'){
|
|
|
|
|
node.style.transform+=' scale(0.6)';
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
node.style.transform='scale(0.6)';
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
node.dataset.position=this.dataset.position;
|
|
|
|
|
this.parentNode.appendChild(node);
|
|
|
|
|
ui.refresh(node);
|
|
|
|
|
node.show();
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform=ot;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
setTimeout(function(){
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='';
|
2015-05-08 08:07:38 +00:00
|
|
|
|
node.delete();
|
|
|
|
|
},500);
|
|
|
|
|
var that=this;
|
|
|
|
|
if(num&&num>1){
|
|
|
|
|
if(cards){
|
2015-11-04 01:59:00 +00:00
|
|
|
|
that.$gain(cards,null,false)
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
else{
|
2015-11-04 01:59:00 +00:00
|
|
|
|
that.$gain(num-1,null,false)
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2016-04-24 03:07:16 +00:00
|
|
|
|
$throw:function(card,time,init){
|
2015-11-04 01:59:00 +00:00
|
|
|
|
if(init!==false){
|
|
|
|
|
if(get.itemtype(card)!='cards'){
|
|
|
|
|
if(get.itemtype(card)=='card'){
|
|
|
|
|
card=[card];
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
game.addVideo('throw',this,[get.cardsInfo(card),time]);
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
this.chessFocus();
|
|
|
|
|
if(get.itemtype(card)=='cards'){
|
|
|
|
|
for(var i=0;i<card.length;i++){
|
2015-11-04 01:59:00 +00:00
|
|
|
|
this.$throw(card[i],time,false);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if(card==undefined||card.length==0) return;
|
|
|
|
|
var node=card.copy('thrown','hidden');
|
|
|
|
|
node.dataset.position=this.dataset.position;
|
|
|
|
|
this.parentNode.appendChild(node);
|
|
|
|
|
ui.refresh(node);
|
|
|
|
|
node.show();
|
2016-04-24 03:07:16 +00:00
|
|
|
|
this.$randomMove(node,130,0);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
if(time!=undefined){
|
|
|
|
|
node.fixed=true;
|
|
|
|
|
setTimeout(function(){node.delete()},time);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
$givemod:function(card,player){
|
|
|
|
|
this.chessFocus();
|
|
|
|
|
var from=this;
|
|
|
|
|
if(get.itemtype(card)=='cards'){
|
|
|
|
|
for(var i=0;i<card.length;i++){
|
|
|
|
|
from.$givemod(card[i],player);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(typeof card=='number'&&card>=0){
|
|
|
|
|
for(var i=0;i<card;i++){
|
|
|
|
|
from.$givemod('',player);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
var node;
|
|
|
|
|
if(get.itemtype(card)=='card'){
|
|
|
|
|
node=card.copy('card','thrown',false);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
node=ui.create.div('.card.thrown');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
node.dataset.position=this.dataset.position;
|
|
|
|
|
node.fixed=true;
|
|
|
|
|
node.hide();
|
|
|
|
|
|
|
|
|
|
this.parentNode.appendChild(node);
|
|
|
|
|
ui.refresh(node);
|
|
|
|
|
node.show();
|
|
|
|
|
|
2016-04-24 03:07:16 +00:00
|
|
|
|
this.$randomMove(node,130,0);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
node.removeAttribute('style');
|
|
|
|
|
node.dataset.position=player.dataset.position;
|
|
|
|
|
node.delete();
|
|
|
|
|
},700);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
$throwxy:function(card,left,top,transform){
|
2015-11-23 10:59:44 +00:00
|
|
|
|
var node=card.copy('thrown','thrownhighlight');
|
2015-05-08 08:07:38 +00:00
|
|
|
|
var rect=this.getBoundingClientRect();
|
|
|
|
|
node.style.left=(rect.left+8)+'px';
|
|
|
|
|
node.style.top=(rect.top+8)+'px';
|
|
|
|
|
node.hide();
|
|
|
|
|
node.style.transitionProperty='left,top,opacity';
|
|
|
|
|
if(transform){
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='rotate('+(Math.random()*16-8)+'deg)';
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
ui.arena.appendChild(node);
|
|
|
|
|
ui.refresh(node);
|
|
|
|
|
node.show();
|
|
|
|
|
node.style.left=left;
|
|
|
|
|
node.style.top=top;
|
|
|
|
|
return node;
|
|
|
|
|
},
|
|
|
|
|
$phaseJudge:function(card){
|
2015-11-04 01:59:00 +00:00
|
|
|
|
game.addVideo('phaseJudge',this,get.cardInfo(card));
|
2015-05-08 08:07:38 +00:00
|
|
|
|
var clone=card.copy('thrown',this.parentNode).animate('judgestart');
|
|
|
|
|
var player=this;
|
|
|
|
|
clone.style.opacity=0.6;
|
|
|
|
|
clone.style.left=(Math.random()*100-50+ui.chessContainer.scrollLeft+ui.chessContainer.offsetWidth/2-52)+'px';
|
|
|
|
|
clone.style.top=(Math.random()*80-40+ui.chessContainer.scrollTop+ui.chessContainer.offsetHeight/2-52-ui.chessContainer.offsetTop)+'px';
|
|
|
|
|
game.delay();
|
|
|
|
|
game.linexy([
|
|
|
|
|
clone.offsetLeft+clone.offsetWidth/2,
|
|
|
|
|
clone.offsetTop+clone.offsetHeight/2,
|
|
|
|
|
player.offsetLeft+player.offsetWidth/2,
|
|
|
|
|
player.offsetTop+player.offsetHeight/2
|
|
|
|
|
],{opacity:0.5,dashed:true},true);
|
2016-04-24 03:07:16 +00:00
|
|
|
|
},
|
|
|
|
|
$randomMove:function(node,length,rand){
|
|
|
|
|
if(!this.node.chessthrown){
|
|
|
|
|
this.node.chessthrown=[];
|
|
|
|
|
}
|
|
|
|
|
var thrown=this.node.chessthrown;
|
|
|
|
|
for(var i=0;i<thrown.length;i++){
|
|
|
|
|
if(thrown[i].parentNode!=this.parentNode||
|
|
|
|
|
thrown[i].classList.contains('removing')){
|
|
|
|
|
thrown.splice(i--,1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
thrown.push(node);
|
|
|
|
|
|
|
|
|
|
var rect=this.getBoundingClientRect();
|
|
|
|
|
var amax,amin;
|
|
|
|
|
if(rect.left<=80){
|
|
|
|
|
if(rect.top<=80){
|
|
|
|
|
amin=-90;
|
|
|
|
|
amax=0;
|
|
|
|
|
}
|
|
|
|
|
else if(rect.top+rect.height+80>=ui.chessContainer.offsetHeight){
|
|
|
|
|
amin=0;
|
|
|
|
|
amax=90;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
amin=-90;
|
|
|
|
|
amax=90;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(rect.left+rect.width+80>=ui.chessContainer.offsetWidth){
|
|
|
|
|
if(rect.top<=80){
|
|
|
|
|
amin=180;
|
|
|
|
|
amax=270;
|
|
|
|
|
}
|
|
|
|
|
else if(rect.top+rect.height+80>=ui.chessContainer.offsetHeight){
|
|
|
|
|
amin=90;
|
|
|
|
|
amax=180;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
amin=90;
|
|
|
|
|
amax=270;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(rect.top<=80){
|
|
|
|
|
amin=180;
|
|
|
|
|
amax=360;
|
|
|
|
|
}
|
|
|
|
|
else if(rect.top+rect.height+80>=ui.chessContainer.offsetHeight){
|
|
|
|
|
amin=0;
|
|
|
|
|
amax=180;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
var dx=ui.chessContainer.offsetWidth/2-(rect.left+rect.width/2);
|
|
|
|
|
var dy=-ui.chessContainer.offsetHeight/2+(rect.top+rect.height/2);
|
|
|
|
|
var ang=Math.abs(Math.atan(dy/dx))*180/Math.PI;
|
|
|
|
|
if(dx<0){
|
|
|
|
|
if(dy>0){
|
|
|
|
|
ang=180-ang;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
ang+=180;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(dy<0){
|
|
|
|
|
ang=360-ang;
|
|
|
|
|
}
|
|
|
|
|
amin=ang-180;
|
|
|
|
|
amax=ang+180;
|
|
|
|
|
}
|
|
|
|
|
var da=(amax-amin)/(thrown.length*2);
|
|
|
|
|
if(da>30&&thrown.length>1){
|
|
|
|
|
amin+=(da-30)*thrown.length;
|
|
|
|
|
da=30;
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<thrown.length;i++){
|
|
|
|
|
var lengthi=length+Math.random()*rand;
|
|
|
|
|
var ang=amin+da*(2*i+1);
|
|
|
|
|
ang*=Math.PI/180;
|
|
|
|
|
var tx=lengthi*Math.cos(ang);
|
|
|
|
|
var ty=-lengthi*Math.sin(ang);
|
2016-06-18 02:39:56 +00:00
|
|
|
|
if(Math.abs(tx)<0.1){
|
|
|
|
|
tx=0;
|
|
|
|
|
}
|
|
|
|
|
if(Math.abs(ty)<0.1){
|
|
|
|
|
ty=0;
|
|
|
|
|
}
|
2016-04-24 03:07:16 +00:00
|
|
|
|
thrown[i].style.transform='translate('+tx+'px,'+ty+'px)';
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
},
|
2016-08-14 12:20:46 +00:00
|
|
|
|
content:{
|
2016-01-12 13:18:47 +00:00
|
|
|
|
replaceChessPlayer:function(){
|
|
|
|
|
'step 0'
|
|
|
|
|
if(get.config('additional_player')){
|
|
|
|
|
if(!event.enemy&&!_status.auto){
|
|
|
|
|
event.dialog=ui.create.dialog('选择替补角色',[_status.additionallist.randomGets(parseInt(get.config('choice_number'))),'character']);
|
|
|
|
|
event.filterButton=function(){return true;};
|
|
|
|
|
event.player=game.me;
|
|
|
|
|
event.forced=true;
|
2016-01-24 08:34:21 +00:00
|
|
|
|
event.forceDie=true;
|
2016-01-12 13:18:47 +00:00
|
|
|
|
event.custom.replace.confirm=function(){
|
|
|
|
|
event.playername=ui.selected.buttons[0].link;
|
|
|
|
|
event.dialog.close();
|
|
|
|
|
_status.additionallist.remove(event.playername);
|
|
|
|
|
if(ui.confirm) ui.confirm.close();
|
|
|
|
|
game.resume();
|
|
|
|
|
}
|
|
|
|
|
game.check();
|
|
|
|
|
game.pause();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.playername=_status.additionallist.randomRemove();
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-05-28 09:00:48 +00:00
|
|
|
|
else if(!event.enemy&&get.config('seat_order')=='指定'&&!_status.auto&&_status.replacelist.length){
|
2016-01-12 13:18:47 +00:00
|
|
|
|
_status.replacelist.add(event.playername);
|
|
|
|
|
event.dialog=ui.create.dialog('选择替补角色',[_status.replacelist,'character']);
|
|
|
|
|
event.filterButton=function(){return true;};
|
|
|
|
|
event.player=game.me;
|
|
|
|
|
event.forced=true;
|
2016-01-24 08:34:21 +00:00
|
|
|
|
event.forceDie=true;
|
2016-01-12 13:18:47 +00:00
|
|
|
|
event.custom.replace.confirm=function(){
|
|
|
|
|
event.playername=ui.selected.buttons[0].link;
|
|
|
|
|
event.dialog.close();
|
|
|
|
|
_status.replacelist.remove(event.playername);
|
|
|
|
|
if(ui.confirm) ui.confirm.close();
|
|
|
|
|
game.resume();
|
|
|
|
|
}
|
|
|
|
|
game.check();
|
|
|
|
|
game.pause();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
game.delay();
|
|
|
|
|
}
|
2016-01-24 08:34:21 +00:00
|
|
|
|
if(game.me.isDead()){
|
|
|
|
|
event.swapNow=true;
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
'step 1'
|
2016-08-18 10:51:06 +00:00
|
|
|
|
game.uncheck();
|
2016-01-12 13:18:47 +00:00
|
|
|
|
var player=game.addChessPlayer(event.playername,event.enemy);
|
|
|
|
|
game.log(player,'加入游戏');
|
|
|
|
|
player.chessFocus();
|
|
|
|
|
player.playerfocus(1000);
|
|
|
|
|
game.delay(2);
|
2016-01-24 08:34:21 +00:00
|
|
|
|
if(event.swapNow&&player.side==game.me.side){
|
|
|
|
|
game.modeSwapPlayer(player);
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
chooseToMove:function(){
|
|
|
|
|
"step 0"
|
2015-10-04 15:18:34 +00:00
|
|
|
|
if(!player.movable(0,1)&&!player.movable(0,-1)&&
|
|
|
|
|
!player.movable(1,0)&&!player.movable(-1,0)){
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
event.switchToAuto=function(){
|
|
|
|
|
if(ui.movegrids){
|
|
|
|
|
while(ui.movegrids.length){
|
|
|
|
|
ui.movegrids.shift().delete();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
var list=[];
|
|
|
|
|
var randomMove=['moveUp','moveDown','moveLeft','moveRight'];
|
2017-01-25 04:59:12 +00:00
|
|
|
|
var getMove=function(move){
|
|
|
|
|
switch(move){
|
|
|
|
|
case 'moveUp':return 'moveDown';
|
|
|
|
|
case 'moveDown':return 'moveUp';
|
|
|
|
|
case 'moveLeft':return 'moveRight';
|
|
|
|
|
case 'moveRight':return 'moveLeft';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
var dontMove=null;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
for(var iwhile=0;iwhile<num;iwhile++){
|
2016-08-15 16:45:42 +00:00
|
|
|
|
if(get.mode()=='tafang'&&_status.enemies.contains(player)){
|
2015-11-13 01:43:16 +00:00
|
|
|
|
var targets2=[];
|
|
|
|
|
for(var i=0;i<ui.chesswidth;i++){
|
|
|
|
|
var tafangdes=ui.chesswidth*(ui.chessheight-1)+i;
|
|
|
|
|
if(!lib.posmap[tafangdes]){
|
|
|
|
|
targets2.push(tafangdes);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
targets2.sort(function(a,b){
|
|
|
|
|
return Math.abs(a%ui.chesswidth-player.getXY()[0])-Math.abs(b%ui.chesswidth-player.getXY()[0]);
|
|
|
|
|
});
|
|
|
|
|
var tafangmoved=false;
|
|
|
|
|
for(var i=0;i<targets2.length;i++){
|
|
|
|
|
if(player.moveTowards(targets2[i].toString())){
|
|
|
|
|
tafangmoved=true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(tafangmoved){
|
|
|
|
|
event.moved=true;
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
2017-01-25 04:59:12 +00:00
|
|
|
|
else{
|
|
|
|
|
var targets=[];
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i].side!=player.side){
|
|
|
|
|
targets.push(game.players[i]);
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
2017-01-25 04:59:12 +00:00
|
|
|
|
targets.sort(function(a,b){
|
|
|
|
|
return get.distance(player,a)-get.distance(player,b);
|
|
|
|
|
});
|
|
|
|
|
while(targets.length){
|
|
|
|
|
var target=targets.shift();
|
|
|
|
|
var moveTowards=player.moveTowards(target,[dontMove]);
|
|
|
|
|
if(moveTowards){
|
|
|
|
|
dontMove=getMove(moveTowards);
|
|
|
|
|
randomMove.remove(dontMove);
|
|
|
|
|
event.moved=true;break;
|
|
|
|
|
}
|
|
|
|
|
if(targets.length==0){
|
|
|
|
|
if(randomMove.length){
|
|
|
|
|
var list=randomMove.slice(0);
|
|
|
|
|
while(true){
|
|
|
|
|
var thismove=list.randomRemove();
|
|
|
|
|
if(player[thismove]()){
|
|
|
|
|
event.moved=true;
|
|
|
|
|
dontMove=getMove(thismove);
|
|
|
|
|
randomMove.remove(dontMove);
|
|
|
|
|
break;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
2017-01-25 04:59:12 +00:00
|
|
|
|
if(list.length==0) return;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-25 04:59:12 +00:00
|
|
|
|
else{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-25 04:59:12 +00:00
|
|
|
|
if(lib.skill._chessmove.ai.result.player(player)<=0) break;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
if(event.isMine()){
|
2015-05-10 05:34:37 +00:00
|
|
|
|
if(event.prompt){
|
|
|
|
|
event.dialog=ui.create.dialog(event.prompt);
|
|
|
|
|
}
|
|
|
|
|
var resume=function(){
|
2015-05-08 13:37:34 +00:00
|
|
|
|
if(ui.movegrids){
|
|
|
|
|
while(ui.movegrids.length){
|
|
|
|
|
ui.movegrids.shift().delete();
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-10 05:34:37 +00:00
|
|
|
|
event.result={bool:false};
|
2015-05-08 13:37:34 +00:00
|
|
|
|
game.resume();
|
2015-05-10 05:34:37 +00:00
|
|
|
|
};
|
|
|
|
|
if(event.phasing){
|
|
|
|
|
event.custom.replace.confirm=resume;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.control=ui.create.control('取消',resume);
|
|
|
|
|
}
|
2015-05-08 13:37:34 +00:00
|
|
|
|
game.pause();
|
2015-11-09 03:15:16 +00:00
|
|
|
|
_status.imchoosing=true;
|
2015-05-08 13:37:34 +00:00
|
|
|
|
ui.movegrids=[];
|
|
|
|
|
player.createRangeShadow(num,true);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
for(var i=0;i<ui.movegrids.length;i++){
|
|
|
|
|
var grid=ui.movegrids[i];
|
|
|
|
|
if(game.isChessNeighbour(grid,player)) continue;
|
|
|
|
|
for(var j=0;j<ui.movegrids.length;j++){
|
|
|
|
|
if(game.isChessNeighbour(grid,ui.movegrids[j])) break;
|
|
|
|
|
}
|
|
|
|
|
if(j==ui.movegrids.length) grid.remove();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.switchToAuto();
|
|
|
|
|
}
|
|
|
|
|
"step 1"
|
2015-11-09 03:15:16 +00:00
|
|
|
|
_status.imchoosing=false;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
if(event.moved){
|
|
|
|
|
game.delay();
|
2015-05-10 05:34:37 +00:00
|
|
|
|
event.result={
|
|
|
|
|
bool:true,
|
|
|
|
|
move:player.dataset.position
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(!event.result){
|
|
|
|
|
event.result={
|
|
|
|
|
bool:false
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
2015-05-08 13:37:34 +00:00
|
|
|
|
if(event.control){
|
|
|
|
|
event.control.close();
|
|
|
|
|
}
|
2015-05-10 05:34:37 +00:00
|
|
|
|
if(event.dialog){
|
|
|
|
|
event.dialog.close();
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
game:{
|
|
|
|
|
minskin:true,
|
|
|
|
|
singleHandcard:true,
|
2016-04-23 09:34:40 +00:00
|
|
|
|
chess:true,
|
2015-11-09 03:15:16 +00:00
|
|
|
|
treasures:[],
|
|
|
|
|
obstacles:[],
|
2015-11-04 01:59:00 +00:00
|
|
|
|
getVideoName:function(){
|
2015-12-15 05:13:47 +00:00
|
|
|
|
var str='战棋'+get.translation(_status.mode)+' - '+_status.friendCount+'v'+_status.enemyCount;
|
2015-11-14 05:29:22 +00:00
|
|
|
|
var name=[get.translation(game.me.name),str];
|
2015-11-04 01:59:00 +00:00
|
|
|
|
return name;
|
|
|
|
|
},
|
|
|
|
|
addChessPlayer:function(name,enemy,num,pos){
|
2015-10-27 07:56:42 +00:00
|
|
|
|
if(typeof num!='number'){
|
|
|
|
|
num=4;
|
|
|
|
|
}
|
2015-11-09 03:15:16 +00:00
|
|
|
|
var player=ui.create.player();
|
2016-08-12 08:26:31 +00:00
|
|
|
|
player.getId();
|
2015-11-09 03:15:16 +00:00
|
|
|
|
if(enemy=='treasure'){
|
|
|
|
|
player.animate('judgestart');
|
|
|
|
|
player.side=null;
|
|
|
|
|
player.identity='neutral';
|
|
|
|
|
player.setIdentity();
|
|
|
|
|
player.node.identity.dataset.color='zhong';
|
|
|
|
|
player.classList.add('treasure');
|
|
|
|
|
player.life=6+Math.floor(Math.random()*6);
|
2015-11-12 01:12:03 +00:00
|
|
|
|
game.treasures.add(player);
|
2015-10-27 07:56:42 +00:00
|
|
|
|
}
|
|
|
|
|
else{
|
2015-11-09 03:15:16 +00:00
|
|
|
|
player.animate('start');
|
|
|
|
|
if(enemy){
|
2016-08-15 16:45:42 +00:00
|
|
|
|
if(get.mode()=='tafang'){
|
|
|
|
|
player.side=true;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
player.side=!game.me.side;
|
|
|
|
|
}
|
2015-11-09 03:15:16 +00:00
|
|
|
|
player.setIdentity('enemy');
|
|
|
|
|
player.identity='enemy';
|
|
|
|
|
}
|
|
|
|
|
else{
|
2016-08-15 16:45:42 +00:00
|
|
|
|
if(get.mode()=='tafang'){
|
|
|
|
|
player.side=false;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
player.side=game.me.side;
|
|
|
|
|
}
|
2015-11-09 03:15:16 +00:00
|
|
|
|
player.setIdentity('friend');
|
|
|
|
|
player.identity='friend';
|
|
|
|
|
}
|
|
|
|
|
player.node.identity.dataset.color=get.translation(player.side+'Color');
|
|
|
|
|
game.players.push(player);
|
2015-11-12 01:12:03 +00:00
|
|
|
|
// if(lib.config.animation){
|
|
|
|
|
// setTimeout(function(){
|
|
|
|
|
// player.$rare2();
|
|
|
|
|
// },300);
|
|
|
|
|
// }
|
2015-10-27 07:56:42 +00:00
|
|
|
|
}
|
|
|
|
|
ui.chess.appendChild(player);
|
2015-11-12 01:12:03 +00:00
|
|
|
|
if(_status.video||(pos&&!lib.posmap[pos])){
|
2015-11-04 01:59:00 +00:00
|
|
|
|
player.dataset.position=pos;
|
|
|
|
|
}
|
|
|
|
|
else{
|
2015-11-12 01:12:03 +00:00
|
|
|
|
var grids=[];
|
|
|
|
|
var gridnum=ui.chessheight*ui.chesswidth;
|
|
|
|
|
for(var i=0;i<gridnum;i++){
|
|
|
|
|
grids.push(i);
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
grids.remove(parseInt(game.players[i].dataset.position));
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<game.obstacles.length;i++){
|
|
|
|
|
grids.remove(parseInt(game.obstacles[i].dataset.position));
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
grids.remove(parseInt(game.treasures[i].dataset.position));
|
|
|
|
|
}
|
2015-11-04 01:59:00 +00:00
|
|
|
|
player.dataset.position=grids.randomGet();
|
|
|
|
|
}
|
2015-10-27 07:56:42 +00:00
|
|
|
|
lib.posmap[player.dataset.position]=player;
|
2015-11-04 01:59:00 +00:00
|
|
|
|
game.addVideo('addChessPlayer',null,[name,enemy,num,player.dataset.position]);
|
2015-11-09 03:15:16 +00:00
|
|
|
|
player.init(name);
|
2015-11-13 01:43:16 +00:00
|
|
|
|
if(num&&!_status.video){
|
2015-10-27 07:56:42 +00:00
|
|
|
|
player.directgain(get.cards(num));
|
|
|
|
|
}
|
|
|
|
|
game.arrangePlayers();
|
2015-11-09 03:15:16 +00:00
|
|
|
|
player.chessFocus();
|
2015-11-12 01:12:03 +00:00
|
|
|
|
if(game.me&&game.me.name){
|
|
|
|
|
game.setChessInfo();
|
|
|
|
|
}
|
|
|
|
|
else if(game.players.length){
|
|
|
|
|
game.setChessInfo(game.players[0]);
|
|
|
|
|
}
|
2015-11-04 01:59:00 +00:00
|
|
|
|
|
2015-10-27 07:56:42 +00:00
|
|
|
|
return player;
|
|
|
|
|
},
|
2016-01-12 13:18:47 +00:00
|
|
|
|
replaceChessPlayer:function(name,enemy){
|
|
|
|
|
var next=game.createEvent('replaceChessPlayer');
|
|
|
|
|
next.playername=name;
|
|
|
|
|
next.enemy=enemy;
|
2016-08-13 17:24:05 +00:00
|
|
|
|
next.setContent('replaceChessPlayer');
|
2016-01-12 13:18:47 +00:00
|
|
|
|
},
|
2015-11-09 03:15:16 +00:00
|
|
|
|
removeTreasure:function(player){
|
|
|
|
|
game.addVideo('removeTreasure',null,player.dataset.position);
|
|
|
|
|
player.delete();
|
|
|
|
|
delete lib.posmap[player.dataset.position];
|
|
|
|
|
game.treasures.remove(player);
|
|
|
|
|
},
|
|
|
|
|
addObstacle:function(x,y){
|
|
|
|
|
if(y!==false){
|
|
|
|
|
game.addVideo('addObstacle',null,[x,y]);
|
|
|
|
|
}
|
|
|
|
|
var pos;
|
|
|
|
|
if(typeof x=='string'){
|
|
|
|
|
pos=x;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if(x>=ui.chesswidth){
|
|
|
|
|
x=ui.chesswidth-1;
|
|
|
|
|
}
|
|
|
|
|
if(y>=ui.chessheight){
|
|
|
|
|
y=ui.chessheight-1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pos=y*ui.chesswidth+x;
|
|
|
|
|
}
|
|
|
|
|
if(!lib.posmap[pos]){
|
|
|
|
|
var grid=ui.create.div('.player.minskin.obstacle',ui.chess).animate('start');
|
|
|
|
|
grid.dataset.position=pos;
|
|
|
|
|
grid.listen(ui.click.obstacle);
|
|
|
|
|
lib.posmap[pos]=grid;
|
|
|
|
|
game.obstacles.push(grid);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
removeObstacle:function(pos){
|
|
|
|
|
var node=lib.posmap[pos];
|
|
|
|
|
if(node&&game.obstacles.contains(node)){
|
|
|
|
|
game.addVideo('removeObstacle',null,pos);
|
|
|
|
|
game.obstacles.remove(node);
|
|
|
|
|
delete lib.posmap[pos];
|
|
|
|
|
node.delete();
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-10-20 17:44:00 +00:00
|
|
|
|
addOverDialog:function(dialog,result){
|
2016-01-12 13:18:47 +00:00
|
|
|
|
if(ui.finishGame){
|
|
|
|
|
ui.finishGame.remove();
|
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
dialog.classList.add('center');
|
2015-12-15 05:13:47 +00:00
|
|
|
|
if(_status.mode!='leader') return;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(result=='战斗胜利'){
|
|
|
|
|
_status.victory=true;
|
|
|
|
|
if(!_status.enterArena){
|
|
|
|
|
var div=ui.create.div();
|
|
|
|
|
div.innerHTML='获得'+game.reward+'金';
|
|
|
|
|
dialog.add(div);
|
|
|
|
|
if(_status.challenge&&_status.challengeMoney<=game.data.dust){
|
|
|
|
|
var div2=ui.create.div();
|
|
|
|
|
div2.style.display='block';
|
|
|
|
|
div2.innerHTML='招降所需招募令:'+_status.challengeMoney+'/'+game.data.dust;
|
|
|
|
|
dialog.add(div2);
|
|
|
|
|
}
|
|
|
|
|
game.changeMoney(game.reward);
|
|
|
|
|
game.saveData();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(_status.zhaoxiang){
|
|
|
|
|
var div=ui.create.div();
|
|
|
|
|
div.innerHTML='招降'+get.translation(_status.zhaoxiang)+'成功';
|
|
|
|
|
dialog.add(div);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
controlOver:function(){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
ui.create.control('返回',game.reload);
|
2015-12-15 05:13:47 +00:00
|
|
|
|
if(_status.mode!='leader') return;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(_status.enterArena){
|
2015-10-27 07:56:42 +00:00
|
|
|
|
game.data.arena.acted.length=0;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(_status.victory){
|
|
|
|
|
game.data.arena.win++;
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
2015-10-27 07:56:42 +00:00
|
|
|
|
if(_status.arenaAdd&&_status.arenaAdd.contains(game.players[i].name)){
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if(game.data.arena.dead.contains(game.players[i].name)){
|
|
|
|
|
game.data.arena.dead.remove(game.players[i].name);
|
|
|
|
|
game.data.arena.acted.push(game.players[i].name);
|
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-27 07:56:42 +00:00
|
|
|
|
game.saveData();
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if(_status.challenge&&(_status.zhaoxiang||_status.victory)){
|
|
|
|
|
game.data.challenge=game.getLeaderList();
|
|
|
|
|
game.saveData();
|
|
|
|
|
}
|
|
|
|
|
if(_status.challenge&&!_status.zhaoxiang&&_status.victory){
|
|
|
|
|
var money=_status.challengeMoney;
|
|
|
|
|
if(game.data.dust>=money){
|
|
|
|
|
ui.create.control('招降'+get.translation(_status.challenge),function(){
|
|
|
|
|
game.data.character.add(_status.challenge);
|
|
|
|
|
game.data.challenge=game.getLeaderList();
|
|
|
|
|
game.changeDust(-money);
|
|
|
|
|
game.reload();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-10-08 06:16:37 +00:00
|
|
|
|
phaseLoopOrdered:function(player){
|
|
|
|
|
var next=game.createEvent('phaseLoop');
|
|
|
|
|
next.player=player;
|
2016-08-13 16:56:12 +00:00
|
|
|
|
next.setContent(function(){
|
2015-10-08 06:16:37 +00:00
|
|
|
|
"step 0"
|
2017-02-12 01:47:39 +00:00
|
|
|
|
if(!game.hasPlayer(function(current){
|
|
|
|
|
return current.side==player.side&&!current.classList.contains('acted');
|
|
|
|
|
})){
|
2015-10-08 06:16:37 +00:00
|
|
|
|
var num1=0;
|
|
|
|
|
var next=null;
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i].side==player.side){
|
|
|
|
|
game.players[i].classList.remove('acted');
|
|
|
|
|
num1++;
|
|
|
|
|
}
|
|
|
|
|
else if(!next){
|
|
|
|
|
next=game.players[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
var num2=game.players.length-num1;
|
2015-10-27 07:56:42 +00:00
|
|
|
|
if(num2>num1){
|
2015-10-08 06:16:37 +00:00
|
|
|
|
if(next.side==game.me.side){
|
|
|
|
|
next=game.me;
|
|
|
|
|
}
|
|
|
|
|
var str;
|
|
|
|
|
if(num2-num1>1){
|
|
|
|
|
str='选择至多'+get.cnNumber(num2-num1)+'个已方角色各摸一张牌'
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
str='选择一个已方角色摸一张牌'
|
|
|
|
|
}
|
|
|
|
|
var nevt=next.chooseTarget(str,function(card,player,target){
|
|
|
|
|
return target.side==next.side;
|
|
|
|
|
},[1,num2-num1]);
|
|
|
|
|
nevt.ai=function(target){
|
|
|
|
|
return Math.max(1,10-target.num('h'));
|
|
|
|
|
};
|
2017-02-12 01:47:39 +00:00
|
|
|
|
nevt.includeOut=true;
|
2015-10-08 06:16:37 +00:00
|
|
|
|
nevt.chessForceAll=true;
|
|
|
|
|
}
|
|
|
|
|
else{
|
2017-02-12 01:47:39 +00:00
|
|
|
|
game.delay();
|
2015-10-08 06:16:37 +00:00
|
|
|
|
event.goto(2);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.goto(2);
|
|
|
|
|
}
|
|
|
|
|
"step 1"
|
|
|
|
|
if(result.bool){
|
|
|
|
|
game.asyncDraw(result.targets);
|
|
|
|
|
}
|
|
|
|
|
"step 2"
|
|
|
|
|
if(player.side==game.me.side){
|
|
|
|
|
player=game.me;
|
|
|
|
|
}
|
2015-11-04 01:59:00 +00:00
|
|
|
|
if(player.isDead()){
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i].side==player.side){
|
|
|
|
|
player=game.players[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-12 01:47:39 +00:00
|
|
|
|
var players=game.filterPlayer(function(current){
|
|
|
|
|
return player.side==current.side&&!current.classList.contains('acted');
|
|
|
|
|
});
|
2015-10-08 06:16:37 +00:00
|
|
|
|
if(players.length>1){
|
|
|
|
|
var nevt=player.chooseTarget('选择下一个行动的角色',function(card,player,target){
|
|
|
|
|
return target.side==player.side&&!target.classList.contains('acted');
|
|
|
|
|
},true);
|
|
|
|
|
nevt.chessForceAll=true;
|
2017-02-12 01:47:39 +00:00
|
|
|
|
nevt.includeOut=true;
|
2015-10-08 06:16:37 +00:00
|
|
|
|
nevt.ai=function(target){
|
|
|
|
|
var nj=target.num('j');
|
|
|
|
|
if(nj){
|
|
|
|
|
return -nj;
|
|
|
|
|
}
|
|
|
|
|
return Math.max(0,10-target.hp);
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-12 01:47:39 +00:00
|
|
|
|
else if(players.length){
|
2015-10-08 06:16:37 +00:00
|
|
|
|
event.decided=players[0];
|
|
|
|
|
}
|
2017-02-12 01:47:39 +00:00
|
|
|
|
else{
|
|
|
|
|
event.player=game.findPlayer(function(current){
|
|
|
|
|
return current.side!=player.side;
|
|
|
|
|
});
|
|
|
|
|
event.goto(0);
|
|
|
|
|
}
|
2015-10-08 06:16:37 +00:00
|
|
|
|
"step 3"
|
|
|
|
|
if(event.decided){
|
|
|
|
|
event.decided.phase();
|
|
|
|
|
event.justacted=event.decided;
|
|
|
|
|
delete event.decided;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
var current=result.targets[0];
|
|
|
|
|
current.phase();
|
|
|
|
|
event.justacted=current;
|
|
|
|
|
}
|
|
|
|
|
"step 4"
|
|
|
|
|
event.justacted.classList.add('acted');
|
|
|
|
|
event.goto(0);
|
2015-10-20 17:44:00 +00:00
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i].side!=event.justacted.side){
|
|
|
|
|
event.player=game.players[i];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-11-09 03:15:16 +00:00
|
|
|
|
if(Math.random()<parseFloat(get.config('chess_treasure'))){
|
|
|
|
|
var list=[];
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
list.push(game.treasures[i].name);
|
|
|
|
|
}
|
|
|
|
|
if(list.length<lib.treasurelist.length){
|
|
|
|
|
var name=Array.prototype.randomGet.apply(lib.treasurelist,list);
|
|
|
|
|
var treasure=game.addChessPlayer(name,'treasure',0);
|
|
|
|
|
treasure.playerfocus(1500);
|
2015-11-23 10:59:44 +00:00
|
|
|
|
if(lib.config.animation&&!lib.config.low_performance){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
setTimeout(function(){
|
|
|
|
|
treasure.$rare2();
|
|
|
|
|
},500);
|
|
|
|
|
}
|
|
|
|
|
game.delay(3);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
game.treasures[i].life--;
|
|
|
|
|
if(game.treasures[i].life<=0){
|
|
|
|
|
game.removeTreasure(game.treasures[i--]);
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-13 16:56:12 +00:00
|
|
|
|
});
|
2015-10-08 06:16:37 +00:00
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
isChessNeighbour:function(a,b){
|
|
|
|
|
if(a&&a.dataset){
|
|
|
|
|
a=a.dataset.position;
|
|
|
|
|
}
|
|
|
|
|
if(b&&b.dataset){
|
|
|
|
|
b=b.dataset.position;
|
|
|
|
|
}
|
|
|
|
|
var ax=a%ui.chesswidth;
|
|
|
|
|
var ay=Math.floor(a/ui.chesswidth);
|
|
|
|
|
|
|
|
|
|
var bx=b%ui.chesswidth;
|
|
|
|
|
var by=Math.floor(b/ui.chesswidth);
|
|
|
|
|
|
|
|
|
|
if(ax==bx&&Math.abs(ay-by)==1) return true;
|
|
|
|
|
if(ay==by&&Math.abs(ax-bx)==1) return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
draw2:function(func){
|
|
|
|
|
lib.canvasUpdates2.push(func);
|
|
|
|
|
if(!lib.status.canvas2){
|
|
|
|
|
lib.status.canvas2=true;
|
|
|
|
|
game.update(game.updateCanvas2);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
updateCanvas2:function(time){
|
|
|
|
|
if(lib.canvasUpdates2.length===0){
|
|
|
|
|
lib.status.canvas2=false;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
ui.canvas2.width=ui.chess.offsetWidth;
|
|
|
|
|
ui.canvas2.height=ui.chess.offsetHeight;
|
|
|
|
|
ui.canvas2.style.left=0;
|
|
|
|
|
ui.canvas2.style.top=0;
|
|
|
|
|
var ctx=ui.ctx2;
|
|
|
|
|
ctx.shadowBlur=5;
|
|
|
|
|
ctx.shadowColor='rgba(0,0,0,0.3)';
|
|
|
|
|
ctx.fillStyle='white';
|
|
|
|
|
ctx.strokeStyle='white';
|
|
|
|
|
ctx.lineWidth=3;
|
|
|
|
|
ctx.save();
|
|
|
|
|
for(var i=0;i<lib.canvasUpdates2.length;i++){
|
|
|
|
|
ctx.restore();
|
|
|
|
|
ctx.save();
|
|
|
|
|
var update=lib.canvasUpdates2[i];
|
|
|
|
|
if(!update.starttime){
|
|
|
|
|
update.starttime=time;
|
|
|
|
|
}
|
|
|
|
|
if(update(time-update.starttime,ctx)===false){
|
|
|
|
|
lib.canvasUpdates2.splice(i--,1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-05-08 13:37:34 +00:00
|
|
|
|
setChessInfo:function(p){
|
2015-05-10 05:34:37 +00:00
|
|
|
|
if(!p){
|
|
|
|
|
if(ui.phasequeue&&ui.phasequeue.length){
|
|
|
|
|
p=ui.phasequeue[0].link;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
p=game.me;
|
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
ui.chessinfo.innerHTML='';
|
|
|
|
|
ui.phasequeue=[];
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
var node=ui.create.div('.avatar',ui.chessinfo);
|
|
|
|
|
node.style.backgroundImage=p.node.avatar.style.backgroundImage;
|
|
|
|
|
node.link=p;
|
2016-04-23 09:34:40 +00:00
|
|
|
|
node.listen(ui.click.chessInfo);
|
2015-10-20 17:44:00 +00:00
|
|
|
|
p.instance=node;
|
|
|
|
|
if(_status.currentPhase==p){
|
|
|
|
|
node.classList.add('glow2');
|
|
|
|
|
}
|
|
|
|
|
ui.phasequeue.push(node);
|
|
|
|
|
p=p.next;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
initLeaderSave:function(save){
|
|
|
|
|
game.save(save,{
|
|
|
|
|
money:300,
|
|
|
|
|
dust:0,
|
|
|
|
|
legend:0,
|
|
|
|
|
character:[]
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
leaderView:function(){
|
|
|
|
|
var next=game.createEvent('leaderView',false);
|
2016-08-13 16:56:12 +00:00
|
|
|
|
next.setContent(function(){
|
2015-10-20 17:44:00 +00:00
|
|
|
|
'step 0'
|
|
|
|
|
var save=get.config('chess_leader_save');
|
|
|
|
|
if(!save){
|
|
|
|
|
save='save1';
|
|
|
|
|
}
|
|
|
|
|
if(!lib.storage[save]){
|
|
|
|
|
game.initLeaderSave(save);
|
|
|
|
|
}
|
|
|
|
|
game.data=lib.storage[save];
|
|
|
|
|
ui.wuxie.hide();
|
|
|
|
|
ui.auto.hide();
|
|
|
|
|
ui.money=ui.create.div(ui.window);
|
|
|
|
|
ui.money.innerHTML='<span>⚑</span><span>'+game.data.dust+'</span>'+
|
|
|
|
|
'<span>㉤</span><span>'+game.data.money+'</span>';
|
|
|
|
|
ui.money.style.top='auto';
|
|
|
|
|
ui.money.style.left='auto';
|
|
|
|
|
ui.money.style.right='20px';
|
|
|
|
|
ui.money.style.bottom='15px';
|
|
|
|
|
ui.money.childNodes[0].style.color='rgb(111, 198, 255)';
|
|
|
|
|
ui.money.childNodes[1].style.fontFamily='huangcao';
|
|
|
|
|
ui.money.childNodes[1].style.marginRight='10px';
|
|
|
|
|
ui.money.childNodes[2].style.color='#FFE600';
|
|
|
|
|
ui.money.childNodes[3].style.fontFamily='huangcao';
|
|
|
|
|
ui.money.style.letterSpacing='4px';
|
2015-12-30 04:00:49 +00:00
|
|
|
|
for(var i in lib.rank){
|
|
|
|
|
if(Array.isArray(lib.rank[i])){
|
|
|
|
|
for(var j=0;j<lib.rank[i].length;j++){
|
|
|
|
|
if(!lib.character[lib.rank[i][j]]){
|
|
|
|
|
lib.rank[i].splice(j--,1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for(var i in lib.rank.rarity){
|
|
|
|
|
if(Array.isArray(lib.rank.rarity[i])){
|
|
|
|
|
for(var j=0;j<lib.rank.rarity[i].length;j++){
|
|
|
|
|
if(!lib.character[lib.rank.rarity[i][j]]){
|
|
|
|
|
lib.rank.rarity[i].splice(j--,1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
'step 1'
|
2015-10-30 09:13:19 +00:00
|
|
|
|
lib.rank.all=lib.rank.s.
|
|
|
|
|
concat(lib.rank.ap).
|
|
|
|
|
concat(lib.rank.a).
|
|
|
|
|
concat(lib.rank.am).
|
|
|
|
|
concat(lib.rank.bp).
|
|
|
|
|
concat(lib.rank.b).
|
|
|
|
|
concat(lib.rank.bm).
|
|
|
|
|
concat(lib.rank.c).
|
|
|
|
|
concat(lib.rank.d);
|
2015-12-15 05:13:47 +00:00
|
|
|
|
lib.rank.rarity.common=[];
|
2015-10-30 09:13:19 +00:00
|
|
|
|
for(var i=0;i<lib.rank.all.length;i++){
|
2015-12-15 05:13:47 +00:00
|
|
|
|
if(!lib.rank.rarity.legend.contains(lib.rank.all[i])&&
|
|
|
|
|
!lib.rank.rarity.epic.contains(lib.rank.all[i])&&
|
|
|
|
|
!lib.rank.rarity.rare.contains(lib.rank.all[i])){
|
|
|
|
|
lib.rank.rarity.common.push(lib.rank.all[i]);
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
delete window.characterRank;
|
|
|
|
|
|
|
|
|
|
ui.control.style.transition='all 0s';
|
2017-02-07 05:33:23 +00:00
|
|
|
|
if(get.is.phoneLayout()){
|
2015-10-31 16:18:20 +00:00
|
|
|
|
ui.control.style.top='calc(100% - 80px)';
|
|
|
|
|
}
|
2017-01-20 12:10:37 +00:00
|
|
|
|
else{
|
|
|
|
|
ui.control.style.top='calc(100% - 70px)';
|
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
var cardNode=function(i,name,load){
|
|
|
|
|
var node=ui.create.player(ui.window);
|
|
|
|
|
node.style.transition='all 0.7s';
|
|
|
|
|
node.style.opacity=0;
|
2015-11-09 17:04:18 +00:00
|
|
|
|
node.style.zIndex=4;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
|
|
|
|
|
var kaibao=false;
|
|
|
|
|
if(!name||typeof i=='string'){
|
|
|
|
|
if(!name){
|
|
|
|
|
name=game.getLeaderCharacter();
|
|
|
|
|
event.cardnodes.push(node);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
node.classList.add('minskin')
|
|
|
|
|
}
|
|
|
|
|
kaibao=true;
|
|
|
|
|
node.style.left='calc(50% - 75px)';
|
|
|
|
|
node.style.top='calc(50% - 90px)';
|
|
|
|
|
ui.refresh(node);
|
|
|
|
|
}
|
|
|
|
|
else if(!load){
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='perspective(1200px) rotateY(180deg) translate(0,-200px)';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
node.name=name;
|
|
|
|
|
if(!load){
|
|
|
|
|
switch(i){
|
|
|
|
|
case 0:{
|
|
|
|
|
node.style.left='calc(50% - 75px)';
|
|
|
|
|
node.style.top='calc(25% - 90px)';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 1:{
|
|
|
|
|
node.style.left='calc(30% - 90px)';
|
|
|
|
|
node.style.top='calc(75% - 90px)';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 2:{
|
|
|
|
|
node.style.left='calc(70% - 60px)';
|
|
|
|
|
node.style.top='calc(75% - 90px)';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case '51':{
|
|
|
|
|
node.style.left='calc(50% - 60px)';
|
|
|
|
|
node.style.top='calc(25% - 75px)';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case '52':{
|
|
|
|
|
node.style.left='calc(35% - 55px)';
|
|
|
|
|
node.style.top='calc(75% - 25px)';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case '53':{
|
|
|
|
|
node.style.left='calc(65% - 65px)';
|
|
|
|
|
node.style.top='calc(75% - 25px)';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case '54':{
|
|
|
|
|
node.style.left='calc(25% - 75px)';
|
|
|
|
|
node.style.top='calc(50% - 70px)';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case '55':{
|
|
|
|
|
node.style.left='calc(75% - 45px)';
|
|
|
|
|
node.style.top='calc(50% - 70px)';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(!kaibao){
|
|
|
|
|
node.style.top='calc(50% - 180px)';
|
|
|
|
|
ui.refresh(node);
|
|
|
|
|
}
|
|
|
|
|
node.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
node.node.count.remove();
|
|
|
|
|
node.node.marks.remove();
|
|
|
|
|
var rarity=game.getRarity(name);
|
|
|
|
|
if(rarity!='common'){
|
|
|
|
|
node.rarity=rarity;
|
|
|
|
|
node.node.intro.style.left='14px';
|
|
|
|
|
if(node.classList.contains('minskin')){
|
|
|
|
|
node.node.intro.style.top='84px';
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
node.node.intro.style.top='145px';
|
|
|
|
|
}
|
|
|
|
|
node.node.intro.style.fontSize='20px';
|
|
|
|
|
node.node.intro.style.fontFamily='huangcao';
|
|
|
|
|
switch(rarity){
|
|
|
|
|
case 'rare':node.node.intro.dataset.nature='waterm';break;
|
|
|
|
|
case 'epic':node.node.intro.dataset.nature='thunderm';break;
|
|
|
|
|
case 'legend':node.node.intro.dataset.nature='metalm';break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(kaibao){
|
|
|
|
|
node.node.avatar.style.display='none';
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='perspective(1200px) rotateY(180deg) translateX(0)';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(typeof i=='string'){
|
|
|
|
|
node.listen(event.turnCard2);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
node.listen(turnCard);
|
|
|
|
|
if(!game.data.character.contains(name)){
|
|
|
|
|
game.data.character.push(name);
|
|
|
|
|
if(game.data.challenge.contains(name)){
|
|
|
|
|
game.data.challenge=game.getLeaderList();
|
|
|
|
|
game.saveData();
|
|
|
|
|
}
|
|
|
|
|
var button=ui.create.button(name,'character');
|
|
|
|
|
button.classList.add('glow2');
|
|
|
|
|
dialog1.content.lastChild.insertBefore(button,dialog1.content.lastChild.firstChild);
|
|
|
|
|
dialog1.buttons.push(button);
|
|
|
|
|
fixButton(button);
|
|
|
|
|
button.area='character';
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
switch(rarity){
|
|
|
|
|
case 'common':game.data.dust+=10;break;
|
|
|
|
|
case 'rare':game.data.dust+=30;break;
|
|
|
|
|
case 'epic':game.data.dust+=150;break;
|
|
|
|
|
case 'legend':game.data.dust+=600;break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
return node;
|
|
|
|
|
};
|
|
|
|
|
event.cardNode=cardNode;
|
|
|
|
|
if(game.data.arena){
|
|
|
|
|
ui.money.style.display='none';
|
|
|
|
|
_status.enterArena=true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
var groupSort=function(name){
|
|
|
|
|
if(lib.character[name][1]=='wei') return 0;
|
|
|
|
|
if(lib.character[name][1]=='shu') return 1;
|
|
|
|
|
if(lib.character[name][1]=='wu') return 2;
|
|
|
|
|
if(lib.character[name][1]=='qun') return 3;
|
|
|
|
|
};
|
|
|
|
|
game.data.character.sort(function(a,b){
|
|
|
|
|
var del=groupSort(a)-groupSort(b);
|
|
|
|
|
if(del!=0) return del;
|
|
|
|
|
var aa=a,bb=b;
|
|
|
|
|
if(a.indexOf('_')!=-1){
|
|
|
|
|
a=a.slice(a.indexOf('_')+1);
|
|
|
|
|
}
|
|
|
|
|
if(b.indexOf('_')!=-1){
|
|
|
|
|
b=b.slice(b.indexOf('_')+1);
|
|
|
|
|
}
|
|
|
|
|
if(a!=b){
|
|
|
|
|
return a>b?1:-1;
|
|
|
|
|
}
|
|
|
|
|
return aa>bb?1:-1;
|
|
|
|
|
});
|
|
|
|
|
if(game.data.character.length==0||!game.data.challenge){
|
2015-12-15 05:13:47 +00:00
|
|
|
|
game.data.character=lib.rank.rarity.common.randomGets(3);
|
2015-10-20 17:44:00 +00:00
|
|
|
|
game.data.challenge=game.getLeaderList();
|
|
|
|
|
game.saveData();
|
|
|
|
|
}
|
|
|
|
|
var fixButton=function(button){
|
|
|
|
|
var rarity=game.getRarity(button.link);
|
|
|
|
|
if(rarity!='common'){
|
|
|
|
|
var intro=button.node.intro;
|
|
|
|
|
intro.classList.add('showintro');
|
|
|
|
|
intro.style.fontFamily='huangcao';
|
|
|
|
|
intro.style.fontSize='20px';
|
2015-11-25 10:25:18 +00:00
|
|
|
|
intro.style.top='82px';
|
|
|
|
|
intro.style.left='2px';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
switch(rarity){
|
|
|
|
|
case 'rare':intro.dataset.nature='waterm';break;
|
|
|
|
|
case 'epic':intro.dataset.nature='thunderm';break;
|
|
|
|
|
case 'legend':intro.dataset.nature='metalm';break;
|
|
|
|
|
}
|
|
|
|
|
intro.innerHTML=get.translation(rarity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
game.leaderLord=['leader_caocao','leader_liubei','leader_sunquan'];
|
2015-12-16 06:49:43 +00:00
|
|
|
|
var dialog1=ui.create.dialog('选择君主','hidden');
|
2015-10-20 17:44:00 +00:00
|
|
|
|
event.dialog1=dialog1;
|
|
|
|
|
dialog1.classList.add('fullheight');
|
|
|
|
|
dialog1.classList.add('halfleft');
|
2015-12-16 06:49:43 +00:00
|
|
|
|
dialog1.classList.add('fixed');
|
2015-10-20 17:44:00 +00:00
|
|
|
|
dialog1.add([game.leaderLord,'character']);
|
|
|
|
|
var i;
|
|
|
|
|
for(i=0;i<dialog1.buttons.length;i++){
|
|
|
|
|
dialog1.buttons[i].area='lord';
|
|
|
|
|
}
|
|
|
|
|
var j=i;
|
|
|
|
|
dialog1.add('选择武将');
|
|
|
|
|
var getCapt=function(str){
|
|
|
|
|
if(str.indexOf('_')==-1){
|
|
|
|
|
return str[0];
|
|
|
|
|
}
|
|
|
|
|
return str[str.indexOf('_')+1];
|
|
|
|
|
}
|
|
|
|
|
var clickCapt=function(e){
|
|
|
|
|
if(_status.dragged) return;
|
|
|
|
|
if(this.classList.contains('thundertext')){
|
|
|
|
|
dialog1.currentcapt=null;
|
|
|
|
|
dialog1.currentcaptnode=null;
|
|
|
|
|
this.classList.remove('thundertext');
|
|
|
|
|
for(var i=0;i<dialog1.buttons.length;i++){
|
|
|
|
|
dialog1.buttons[i].style.display='';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if(dialog1.currentcaptnode){
|
|
|
|
|
dialog1.currentcaptnode.classList.remove('thundertext');
|
|
|
|
|
}
|
|
|
|
|
dialog1.currentcapt=this.link;
|
|
|
|
|
dialog1.currentcaptnode=this;
|
|
|
|
|
this.classList.add('thundertext');
|
|
|
|
|
for(var i=0;i<dialog1.buttons.length;i++){
|
|
|
|
|
if(dialog1.buttons[i].area!='character') continue;
|
|
|
|
|
if(getCapt(dialog1.buttons[i].link)!=dialog1.currentcapt){
|
|
|
|
|
dialog1.buttons[i].style.display='none';
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
dialog1.buttons[i].style.display='';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
};
|
|
|
|
|
var captnode=ui.create.div('.caption');
|
|
|
|
|
var initcapt=function(){
|
|
|
|
|
var namecapt=[];
|
|
|
|
|
for(var i=0;i<game.data.character.length;i++){
|
|
|
|
|
var ii=game.data.character[i];
|
|
|
|
|
if(namecapt.indexOf(getCapt(ii))==-1){
|
|
|
|
|
namecapt.push(getCapt(ii));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
namecapt.sort(function(a,b){
|
|
|
|
|
return a>b?1:-1;
|
|
|
|
|
});
|
|
|
|
|
captnode.innerHTML='';
|
|
|
|
|
for(i=0;i<namecapt.length;i++){
|
|
|
|
|
var span=document.createElement('span');
|
|
|
|
|
span.innerHTML=' '+namecapt[i].toUpperCase()+' ';
|
|
|
|
|
span.link=namecapt[i];
|
|
|
|
|
span.addEventListener(lib.config.touchscreen?'touchend':'click',clickCapt);
|
|
|
|
|
captnode.appendChild(span);
|
|
|
|
|
}
|
|
|
|
|
if(game.data.character.length<=15){
|
|
|
|
|
captnode.style.display='none';
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
captnode.style.display='';
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
initcapt();
|
|
|
|
|
dialog1.captnode=captnode;
|
|
|
|
|
dialog1.add(captnode);
|
|
|
|
|
dialog1.add([game.data.character,'character']);
|
|
|
|
|
for(i=j;i<dialog1.buttons.length;i++){
|
|
|
|
|
dialog1.buttons[i].area='character';
|
|
|
|
|
fixButton(dialog1.buttons[i]);
|
|
|
|
|
}
|
2015-12-16 06:49:43 +00:00
|
|
|
|
dialog1.open();
|
|
|
|
|
|
|
|
|
|
var dialog2=ui.create.dialog('战斗难度','hidden');
|
2015-10-20 17:44:00 +00:00
|
|
|
|
event.dialog2=dialog2;
|
|
|
|
|
dialog2.classList.add('fullheight');
|
|
|
|
|
dialog2.classList.add('halfright');
|
2015-12-16 06:49:43 +00:00
|
|
|
|
dialog2.classList.add('fixed');
|
2015-10-20 17:44:00 +00:00
|
|
|
|
dialog2.add([[
|
|
|
|
|
['','','leader_easy'],
|
|
|
|
|
['','','leader_medium'],
|
|
|
|
|
['','','leader_hard']
|
|
|
|
|
],'vcard']);
|
|
|
|
|
for(i=0;i<dialog2.buttons.length;i++){
|
2015-10-29 17:36:14 +00:00
|
|
|
|
dialog2.buttons[i].node.name.style.fontFamily='xinwei';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
dialog2.buttons[i].node.name.style.fontSize='30px';
|
|
|
|
|
dialog2.buttons[i].node.name.style.left='4px';
|
|
|
|
|
dialog2.buttons[i].node.name.dataset.color='unknownm';
|
|
|
|
|
dialog2.buttons[i]._nopup=true;
|
|
|
|
|
dialog2.buttons[i].area='difficulty';
|
|
|
|
|
}
|
|
|
|
|
dialog2.add('敌方人数');
|
|
|
|
|
dialog2.addSmall([[
|
|
|
|
|
['','','leader_2'],
|
|
|
|
|
['','','leader_3'],
|
|
|
|
|
['','','leader_5'],
|
|
|
|
|
['','','leader_8'],
|
|
|
|
|
],'vcard']);
|
|
|
|
|
for(;i<dialog2.buttons.length;i++){
|
|
|
|
|
dialog2.buttons[i].style.background='rgba(0,0,0,0.2)';
|
|
|
|
|
dialog2.buttons[i].style.boxShadow='rgba(0, 0, 0, 0.3) 0 0 0 1px';
|
2015-10-29 17:36:14 +00:00
|
|
|
|
dialog2.buttons[i].node.background.style.fontFamily='xinwei';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
dialog2.buttons[i]._nopup=true;
|
|
|
|
|
dialog2.buttons[i].area='number';
|
|
|
|
|
}
|
|
|
|
|
dialog2.add('挑战武将');
|
|
|
|
|
dialog2.add([game.data.challenge,'character']);
|
|
|
|
|
for(;i<dialog2.buttons.length;i++){
|
|
|
|
|
dialog2.buttons[i].area='challenge';
|
|
|
|
|
fixButton(dialog2.buttons[i])
|
|
|
|
|
}
|
2015-12-16 06:49:43 +00:00
|
|
|
|
dialog2.open();
|
2015-10-20 17:44:00 +00:00
|
|
|
|
|
|
|
|
|
var selected={
|
|
|
|
|
lord:[],
|
|
|
|
|
character:[],
|
|
|
|
|
difficulty:[],
|
|
|
|
|
number:[],
|
|
|
|
|
challenge:[]
|
|
|
|
|
}
|
|
|
|
|
var clearSelected=function(){
|
|
|
|
|
for(var i=0;i<dialog1.buttons.length;i++){
|
|
|
|
|
dialog1.buttons[i].classList.remove('unselectable');
|
|
|
|
|
dialog1.buttons[i].classList.remove('selected');
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<dialog2.buttons.length;i++){
|
|
|
|
|
dialog2.buttons[i].classList.remove('unselectable');
|
|
|
|
|
dialog2.buttons[i].classList.remove('selected');
|
|
|
|
|
}
|
|
|
|
|
for(var j in selected){
|
|
|
|
|
selected[j].length=0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
event.enterArena=ui.create.control('竞技场','nozoom',function(){
|
|
|
|
|
if(game.data.money<150&&!game.data._arena) return;
|
|
|
|
|
if(_status.zhaomu||_status.qianfan||_status.kaibao) return;
|
|
|
|
|
if(!game.data._arena) game.changeMoney(-150);
|
|
|
|
|
_status.enterArena=true;
|
|
|
|
|
game.resume();
|
|
|
|
|
});
|
|
|
|
|
var turnCard=function(){
|
|
|
|
|
if(this.turned) return;
|
|
|
|
|
_status.chessclicked=true;
|
|
|
|
|
this.turned=true;
|
|
|
|
|
var node=this;
|
|
|
|
|
node.style.transition='all ease-in 0.3s';
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='perspective(1200px) rotateY(270deg) translateX(150px)';
|
|
|
|
|
var onEnd=function(){
|
2015-10-20 17:44:00 +00:00
|
|
|
|
game.minskin=false;
|
|
|
|
|
node.init(node.name);
|
|
|
|
|
game.minskin=true;
|
|
|
|
|
node.node.avatar.style.display='';
|
|
|
|
|
if(node.rarity){
|
|
|
|
|
node.node.intro.innerHTML=get.translation(node.rarity);
|
|
|
|
|
node.node.intro.classList.add('showintro');
|
|
|
|
|
}
|
|
|
|
|
node.classList.add('playerflip');
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='none';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
node.style.transition='';
|
2015-11-23 10:59:44 +00:00
|
|
|
|
if(lib.config.animation&&!lib.config.low_performance){
|
2015-11-01 07:54:42 +00:00
|
|
|
|
setTimeout(function(){
|
|
|
|
|
switch(game.getRarity(node.name)){
|
|
|
|
|
case 'rare':node.$rare();break;
|
|
|
|
|
case 'epic':node.$epic();break;
|
|
|
|
|
case 'legend':node.$legend();break;
|
|
|
|
|
}
|
|
|
|
|
},150);
|
|
|
|
|
}
|
2015-11-05 02:34:35 +00:00
|
|
|
|
};
|
2017-02-11 01:33:02 +00:00
|
|
|
|
node.listenTransition(onEnd);
|
2015-10-20 17:44:00 +00:00
|
|
|
|
};
|
|
|
|
|
var zhaomu2=function(){
|
|
|
|
|
if(_status.qianfan||_status.kaibao) return;
|
|
|
|
|
if(game.data.money<100) return;
|
|
|
|
|
_status.chessclicked=true;
|
|
|
|
|
ui.arena.classList.add('leaderhide');
|
|
|
|
|
ui.arena.classList.add('leadercontrol');
|
|
|
|
|
ui.money.hide();
|
|
|
|
|
_status.kaibao=true;
|
|
|
|
|
event.cardnodes=[];
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
event.cardnodes.push(cardNode(0));
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
event.cardnodes.push(cardNode(1));
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
event.cardnodes.push(cardNode(2));
|
|
|
|
|
ui.money.childNodes[1].innerHTML=game.data.dust;
|
|
|
|
|
game.changeMoney(-100);
|
|
|
|
|
if(game.data.character.length>3){
|
|
|
|
|
event.removeCharacter.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
if(game.data.money<150&&!game.data._arena){
|
|
|
|
|
event.enterArena.style.opacity=0.5;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.enterArena.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
if(game.data.money<100){
|
|
|
|
|
event.addCharacter.style.opacity=0.5;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.addCharacter.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
initcapt();
|
|
|
|
|
},200);
|
|
|
|
|
},200);
|
|
|
|
|
},500);
|
|
|
|
|
};
|
|
|
|
|
var zhaomu=function(){
|
|
|
|
|
if(_status.qianfan||_status.kaibao) return;
|
|
|
|
|
if(game.data.money<100) return;
|
|
|
|
|
_status.chessclicked=true;
|
|
|
|
|
_status.zhaomu=true;
|
|
|
|
|
event.removeCharacter.style.opacity=0.5;
|
|
|
|
|
event.fight.style.opacity=0.5;
|
|
|
|
|
clearSelected();
|
|
|
|
|
for(var i=0;i<dialog1.buttons.length;i++){
|
|
|
|
|
dialog1.buttons[i].classList.add('unselectable');
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<dialog2.buttons.length;i++){
|
|
|
|
|
dialog2.buttons[i].classList.add('unselectable');
|
|
|
|
|
}
|
|
|
|
|
this.replace('确认招募',zhaomu2);
|
|
|
|
|
};
|
|
|
|
|
event.addCharacter=ui.create.control('招募','nozoom',zhaomu2);
|
|
|
|
|
if(game.data.money<150&&!game.data._arena){
|
|
|
|
|
event.enterArena.style.opacity=0.5;
|
|
|
|
|
}
|
|
|
|
|
if(game.data.money<100){
|
|
|
|
|
event.addCharacter.style.opacity=0.5;
|
|
|
|
|
}
|
|
|
|
|
var qianfan=function(){
|
|
|
|
|
if(_status.zhaomu||_status.kaibao) return;
|
|
|
|
|
if(game.data.character.length<=3) return;
|
|
|
|
|
_status.chessclicked=true;
|
|
|
|
|
_status.qianfan=true;
|
|
|
|
|
event.enterArena.style.opacity=0.5;
|
|
|
|
|
event.addCharacter.style.opacity=0.5;
|
|
|
|
|
event.fight.style.opacity=0.5;
|
|
|
|
|
var current=selected.character.slice(0);
|
|
|
|
|
clearSelected();
|
|
|
|
|
var maxq=game.data.character.length-3;
|
|
|
|
|
if(current.length<=maxq){
|
|
|
|
|
for(var i=0;i<current.length;i++){
|
|
|
|
|
current[i].classList.add('selected');
|
|
|
|
|
selected.character.push(current[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<dialog1.buttons.length;i++){
|
|
|
|
|
if(dialog1.buttons[i].area!='character'||maxq==current.length){
|
|
|
|
|
dialog1.buttons[i].classList.add('unselectable');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<dialog2.buttons.length;i++){
|
|
|
|
|
dialog2.buttons[i].classList.add('unselectable');
|
|
|
|
|
}
|
|
|
|
|
this.replace('确认遣返',function(){
|
|
|
|
|
for(var i=0;i<selected.character.length;i++){
|
|
|
|
|
var node=selected.character[i];
|
|
|
|
|
var rarity=game.getRarity(node.link);
|
|
|
|
|
switch(rarity){
|
|
|
|
|
case 'common':game.changeDust(5);break;
|
|
|
|
|
case 'rare':game.changeDust(20);break;
|
|
|
|
|
case 'epic':game.changeDust(100);break;
|
|
|
|
|
case 'legend':game.changeDust(400);break;
|
|
|
|
|
}
|
|
|
|
|
game.data.character.remove(node.link);
|
|
|
|
|
game.saveData();
|
|
|
|
|
if(game.data.character.length<=3){
|
|
|
|
|
event.removeCharacter.style.opacity=0.5;
|
|
|
|
|
}
|
|
|
|
|
if(game.data.money>=100){
|
|
|
|
|
event.addCharacter.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
if(game.data.money>=150){
|
|
|
|
|
event.enterArena.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
node.delete();
|
|
|
|
|
dialog1.buttons.remove(node);
|
|
|
|
|
}
|
|
|
|
|
initcapt();
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
event.removeCharacter=ui.create.control('遣返','nozoom',qianfan);
|
|
|
|
|
if(game.data.character.length<=3){
|
|
|
|
|
event.removeCharacter.style.opacity=0.5;
|
|
|
|
|
}
|
|
|
|
|
event.fight=ui.create.control('开始战斗','nozoom',function(){
|
|
|
|
|
if(_status.kaibao||_status.zhaomu||_status.qianfan) return;
|
|
|
|
|
_status.enemylist=[];
|
|
|
|
|
_status.mylist=[];
|
|
|
|
|
if(selected.lord.length){
|
|
|
|
|
_status.mylist.push(selected.lord[0].link);
|
|
|
|
|
_status.lord=selected.lord[0].link;
|
|
|
|
|
}
|
|
|
|
|
if(selected.character.length){
|
|
|
|
|
for(var i=0;i<selected.character.length;i++){
|
|
|
|
|
_status.mylist.push(selected.character[i].link);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
_status.mylist=_status.mylist.concat(game.data.character.randomGets(_status.lord?2:3));
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
var difficulty;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(selected.challenge.length){
|
|
|
|
|
_status.challenge=selected.challenge[0].link;
|
|
|
|
|
_status.enemylist.push(_status.challenge);
|
|
|
|
|
switch(game.getRarity(_status.challenge)){
|
|
|
|
|
case 'common':_status.challengeMoney=40;break;
|
|
|
|
|
case 'rare':_status.challengeMoney=100;break;
|
|
|
|
|
case 'epic':_status.challengeMoney=400;break;
|
|
|
|
|
case 'legend':_status.challengeMoney=1600;break;
|
|
|
|
|
}
|
2015-12-15 05:13:47 +00:00
|
|
|
|
var rank=get.rank(_status.challenge);
|
2015-10-20 17:44:00 +00:00
|
|
|
|
var total=Math.max(2,_status.mylist.length-1);
|
2015-10-27 07:56:42 +00:00
|
|
|
|
var list;
|
|
|
|
|
switch(rank){
|
2015-10-30 09:13:19 +00:00
|
|
|
|
case 's':list=lib.rank.ap;break;
|
|
|
|
|
case 'ap':list=lib.rank.s.concat(lib.rank.a);break;
|
|
|
|
|
case 'a':list=lib.rank.ap.concat(lib.rank.am);break;
|
|
|
|
|
case 'am':list=lib.rank.a.concat(lib.rank.bp);break;
|
|
|
|
|
case 'bp':list=lib.rank.am.concat(lib.rank.b);break;
|
|
|
|
|
case 'b':list=lib.rank.bp.concat(lib.rank.bm);break;
|
|
|
|
|
case 'bm':list=lib.rank.b.concat(lib.rank.c);break;
|
|
|
|
|
case 'c':list=lib.rank.bm.concat(lib.rank.d);break;
|
|
|
|
|
case 'd':list=lib.rank.c;break;
|
2015-10-27 07:56:42 +00:00
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
for(var i=0;i<total;i++){
|
|
|
|
|
if(Math.random()<0.7){
|
2015-10-27 07:56:42 +00:00
|
|
|
|
_status.enemylist.push(Array.prototype.randomGet.apply(
|
2015-10-30 09:13:19 +00:00
|
|
|
|
lib.rank[rank],_status.enemylist.concat(_status.mylist)));
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
else{
|
2015-10-27 07:56:42 +00:00
|
|
|
|
_status.enemylist.push(Array.prototype.randomGet.apply(
|
|
|
|
|
list,_status.enemylist.concat(_status.mylist)));
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
2016-01-12 13:18:47 +00:00
|
|
|
|
var number,list;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(selected.difficulty.length){
|
|
|
|
|
difficulty=selected.difficulty[0].link[2];
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
difficulty='leader_easy';
|
|
|
|
|
}
|
|
|
|
|
_status.difficulty=difficulty;
|
|
|
|
|
if(selected.number.length){
|
|
|
|
|
number=selected.number[0].link[2];
|
|
|
|
|
number=parseInt(number[number.length-1]);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
number=3;
|
|
|
|
|
}
|
|
|
|
|
switch(difficulty){
|
2015-10-30 09:13:19 +00:00
|
|
|
|
case 'leader_easy':list=lib.rank.d.concat(lib.rank.c).concat(lib.rank.bm);break;
|
|
|
|
|
case 'leader_medium':list=lib.rank.b.concat(lib.rank.bp).concat(lib.rank.am);break;
|
|
|
|
|
case 'leader_hard':list=lib.rank.a.concat(lib.rank.ap).concat(lib.rank.s);break;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
2015-10-27 07:56:42 +00:00
|
|
|
|
for(var i=0;i<lib.hiddenCharacters.length;i++){
|
|
|
|
|
if(list.length<=number){
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
list.remove(lib.hiddenCharacters[i]);
|
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
for(var i=0;i<_status.mylist.length;i++){
|
|
|
|
|
list.remove(_status.mylist[i]);
|
|
|
|
|
}
|
|
|
|
|
_status.enemylist=list.randomGets(number);
|
|
|
|
|
}
|
2015-10-27 07:56:42 +00:00
|
|
|
|
var numdel=_status.enemylist.length-_status.mylist.length;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
var reward=0;
|
|
|
|
|
for(var i=0;i<_status.enemylist.length;i++){
|
2015-12-15 05:13:47 +00:00
|
|
|
|
switch(get.rank(_status.enemylist[i])){
|
2015-10-20 17:44:00 +00:00
|
|
|
|
case 's':reward+=50;break;
|
|
|
|
|
case 'ap':reward+=40;break;
|
|
|
|
|
case 'a':reward+=32;break;
|
|
|
|
|
case 'am':reward+=25;break;
|
|
|
|
|
case 'bp':reward+=19;break;
|
|
|
|
|
case 'b':reward+=14;break;
|
|
|
|
|
case 'bm':reward+=10;break;
|
|
|
|
|
case 'c':reward+=7;break;
|
|
|
|
|
case 'd':reward+=5;break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-27 07:56:42 +00:00
|
|
|
|
if(numdel>0){
|
|
|
|
|
switch(difficulty){
|
|
|
|
|
case 'leader_easy':reward+=10*numdel;break;
|
|
|
|
|
case 'leader_medium':reward+=20*numdel;break;
|
|
|
|
|
case 'leader_hard':reward+=40*numdel;break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
var punish=0;
|
|
|
|
|
for(var i=0;i<_status.mylist.length;i++){
|
2015-12-15 05:13:47 +00:00
|
|
|
|
switch(get.rank(_status.mylist[i])){
|
2015-10-20 17:44:00 +00:00
|
|
|
|
case 's':punish+=25;break;
|
|
|
|
|
case 'ap':punish+=20;break;
|
|
|
|
|
case 'a':punish+=16;break;
|
|
|
|
|
case 'am':punish+=12;break;
|
|
|
|
|
case 'bp':punish+=9;break;
|
|
|
|
|
case 'b':punish+=7;break;
|
|
|
|
|
case 'bm':punish+=5;break;
|
|
|
|
|
case 'c':punish+=3;break;
|
|
|
|
|
case 'd':punish+=2;break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-27 07:56:42 +00:00
|
|
|
|
if(numdel<0){
|
|
|
|
|
switch(difficulty){
|
|
|
|
|
case 'leader_easy':punish-=5*numdel;break;
|
|
|
|
|
case 'leader_medium':punish-=10*numdel;break;
|
|
|
|
|
case 'leader_hard':punish-=20*numdel;break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
game.reward=Math.max(3*_status.enemylist.length,reward-punish);
|
|
|
|
|
if(!_status.lord){
|
|
|
|
|
switch(difficulty){
|
|
|
|
|
case 'leader_easy':game.reward+=10;break;
|
|
|
|
|
case 'leader_medium':game.reward+=20;break;
|
|
|
|
|
case 'leader_hard':game.reward+=40;break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
game.resume();
|
|
|
|
|
});
|
|
|
|
|
event.custom.replace.button=function(button){
|
|
|
|
|
if(_status.kaibao) return;
|
|
|
|
|
if(button.classList.contains('unselectable')&&
|
|
|
|
|
!button.classList.contains('selected')) return;
|
|
|
|
|
_status.chessclicked=true;
|
|
|
|
|
button.classList.toggle('selected');
|
|
|
|
|
if(button.classList.contains('selected')){
|
|
|
|
|
selected[button.area].add(button);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
selected[button.area].remove(button);
|
|
|
|
|
}
|
|
|
|
|
switch(button.area){
|
|
|
|
|
case 'lord':{
|
|
|
|
|
for(var i=0;i<dialog1.buttons.length;i++){
|
|
|
|
|
if(dialog1.buttons[i].area=='lord'){
|
|
|
|
|
if(selected.lord.length){
|
|
|
|
|
dialog1.buttons[i].classList.add('unselectable');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
dialog1.buttons[i].classList.remove('unselectable');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'character':{
|
|
|
|
|
for(var i=0;i<dialog1.buttons.length;i++){
|
|
|
|
|
if(dialog1.buttons[i].area=='character'){
|
|
|
|
|
var maxq=game.data.character.length-3;
|
|
|
|
|
if((!_status.qianfan&&selected.character.length>5)||
|
|
|
|
|
(_status.qianfan&&selected.character.length>=maxq)){
|
|
|
|
|
dialog1.buttons[i].classList.add('unselectable');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
dialog1.buttons[i].classList.remove('unselectable');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'difficulty':case 'number':{
|
|
|
|
|
for(var i=0;i<dialog2.buttons.length;i++){
|
|
|
|
|
if(dialog2.buttons[i].area==button.area){
|
|
|
|
|
if(selected[button.area].length){
|
|
|
|
|
dialog2.buttons[i].classList.add('unselectable');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
dialog2.buttons[i].classList.remove('unselectable');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'challenge':{
|
|
|
|
|
if(selected.challenge.length){
|
|
|
|
|
for(var i=0;i<dialog2.buttons.length;i++){
|
|
|
|
|
if(dialog2.buttons[i].area=='challenge'){
|
|
|
|
|
dialog2.buttons[i].classList.add('unselectable');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
dialog2.buttons[i].classList.add('unselectable');
|
|
|
|
|
dialog2.buttons[i].classList.remove('selected');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
for(var i=0;i<dialog2.buttons.length;i++){
|
|
|
|
|
dialog2.buttons[i].classList.remove('unselectable');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
event.custom.add.window=function(){
|
|
|
|
|
if(!_status.kaibao){
|
|
|
|
|
var glows=document.querySelectorAll('.button.glow2');
|
|
|
|
|
for(var i=0;i<glows.length;i++){
|
|
|
|
|
glows[i].classList.remove('glow2');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(_status.chessclicked){
|
|
|
|
|
_status.chessclicked=false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(_status.kaibao&&event.cardnodes&&event.cardnodes.length){
|
|
|
|
|
for(var i=0;i<event.cardnodes.length;i++){
|
|
|
|
|
if(!event.cardnodes[i].turned) return;
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<event.cardnodes.length;i++){
|
|
|
|
|
event.cardnodes[i].delete();
|
|
|
|
|
}
|
|
|
|
|
ui.arena.classList.remove('leaderhide');
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
ui.arena.classList.remove('leadercontrol');
|
|
|
|
|
},500);
|
|
|
|
|
ui.money.show();
|
|
|
|
|
delete event.cardnodes;
|
|
|
|
|
_status.kaibao=false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(_status.qianfan){
|
|
|
|
|
_status.qianfan=false;
|
|
|
|
|
event.removeCharacter.replace('遣返',qianfan);
|
|
|
|
|
if(game.data.money>=100){
|
|
|
|
|
event.addCharacter.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.addCharacter.style.opacity=0.5;
|
|
|
|
|
}
|
|
|
|
|
if(game.data.money>=150||game.data._arena){
|
|
|
|
|
event.enterArena.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.enterArena.style.opacity=0.5;
|
|
|
|
|
}
|
|
|
|
|
event.fight.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
else if(_status.zhaomu){
|
|
|
|
|
_status.zhaomu=false;
|
|
|
|
|
event.addCharacter.replace('招募',zhaomu);
|
|
|
|
|
if(game.data.character.length>3){
|
|
|
|
|
event.removeCharacter.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.removeCharacter.style.opacity=0.5;
|
|
|
|
|
}
|
|
|
|
|
event.fight.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
clearSelected();
|
|
|
|
|
};
|
|
|
|
|
game.pause();
|
|
|
|
|
'step 2'
|
|
|
|
|
if(!game.data.arena){
|
|
|
|
|
event.dialog1.close();
|
|
|
|
|
event.dialog2.close();
|
|
|
|
|
event.fight.close();
|
|
|
|
|
event.enterArena.close();
|
|
|
|
|
event.addCharacter.close();
|
|
|
|
|
event.removeCharacter.close();
|
|
|
|
|
}
|
|
|
|
|
ui.arena.classList.add('leaderhide');
|
|
|
|
|
ui.money.hide();
|
|
|
|
|
game.delay();
|
|
|
|
|
'step 3'
|
|
|
|
|
ui.arena.classList.remove('leaderhide');
|
|
|
|
|
if(!_status.enterArena){
|
|
|
|
|
ui.wuxie.show();
|
|
|
|
|
ui.auto.show();
|
|
|
|
|
ui.control.style.display='none';
|
|
|
|
|
ui.control.style.top='';
|
|
|
|
|
ui.control.style.transition='';
|
|
|
|
|
event.finish();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
game.minskin=false;
|
|
|
|
|
event.arenanodes=[];
|
|
|
|
|
event.arenachoice=[];
|
|
|
|
|
event.arenachoicenodes=[];
|
|
|
|
|
event.arrangeNodes=function(){
|
|
|
|
|
var num=event.arenachoicenodes.length;
|
|
|
|
|
var width=num*75+(num-1)*8;
|
|
|
|
|
for(var i=0;i<event.arenachoicenodes.length;i++){
|
|
|
|
|
var left=-width/2+i*83-37.5;
|
|
|
|
|
if(left<0){
|
|
|
|
|
event.arenachoicenodes[i].style.left='calc(50% - '+(-left)+'px)';
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.arenachoicenodes[i].style.left='calc(50% + '+left+'px)';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
event.clickNode=function(){
|
|
|
|
|
if(this.classList.contains('removing')) return;
|
|
|
|
|
if(this.isChosen){
|
|
|
|
|
if(_status.chessgiveup) return;
|
|
|
|
|
if(!event.choosefinished) return;
|
|
|
|
|
if(this.classList.contains('unselectable')&&
|
|
|
|
|
!this.classList.contains('selected')) return;
|
|
|
|
|
_status.chessclicked=true;
|
|
|
|
|
this.classList.toggle('selected');
|
2015-11-06 10:05:08 +00:00
|
|
|
|
if(this.classList.contains('selected')){
|
|
|
|
|
this.style.transform='scale(0.85)';
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
this.style.transform='scale(0.8)';
|
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(document.querySelectorAll('.player.selected').length>=3){
|
|
|
|
|
for(var i=0;i<event.arenachoicenodes.length;i++){
|
|
|
|
|
if(!event.arenachoicenodes[i].classList.contains('dead')){
|
|
|
|
|
event.arenachoicenodes[i].classList.add('unselectable');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
for(var i=0;i<event.arenachoicenodes.length;i++){
|
|
|
|
|
event.arenachoicenodes[i].classList.remove('unselectable');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
while(event.arenanodes.length){
|
|
|
|
|
var node=event.arenanodes.shift();
|
|
|
|
|
if(node==this){
|
|
|
|
|
node.node.hp.hide();
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='scale(0.5)';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
node.style.top='calc(50% + 50px)';
|
|
|
|
|
event.arenachoicenodes.push(node);
|
|
|
|
|
event.arrangeNodes();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
node.delete();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.isChosen=true;
|
|
|
|
|
event.arenachoice.push(this.name);
|
|
|
|
|
game.resume();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
'step 4'
|
|
|
|
|
var choice;
|
|
|
|
|
if(game.data._arena){
|
|
|
|
|
game.data.arena=game.data._arena;
|
|
|
|
|
delete game.data._arena;
|
|
|
|
|
}
|
|
|
|
|
if(game.data.arena&&!_status.arenaLoaded){
|
|
|
|
|
game.data.arena.loaded=true;
|
|
|
|
|
event.arenachoice=game.data.arena.arenachoice;
|
|
|
|
|
for(var i=0;i<event.arenachoice.length;i++){
|
|
|
|
|
var node=event.cardNode(0,event.arenachoice[i],true);
|
|
|
|
|
node.node.hp.style.display='none';
|
|
|
|
|
node.init(node.name);
|
|
|
|
|
node.isChosen=true;
|
|
|
|
|
node.listen(event.clickNode);
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='scale(0.5)';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
node.style.top='calc(50% + 50px)';
|
|
|
|
|
event.arenachoicenodes.push(node);
|
|
|
|
|
}
|
|
|
|
|
event.arrangeNodes();
|
|
|
|
|
for(var i=0;i<event.arenachoicenodes.length;i++){
|
|
|
|
|
var node=event.arenachoicenodes[i];
|
|
|
|
|
if(game.data.arena.choice){
|
|
|
|
|
ui.refresh(node);
|
|
|
|
|
node.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(game.data.arena.choice){
|
|
|
|
|
choice=game.data.arena.choice;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
switch(event.arenachoice.length){
|
2015-10-30 09:13:19 +00:00
|
|
|
|
case 0:choice=lib.rank.d.randomGets(3);break;
|
|
|
|
|
case 1:choice=lib.rank.c.randomGets(3);break;
|
|
|
|
|
case 2:choice=lib.rank.bm.randomGets(3);break;
|
|
|
|
|
case 3:choice=lib.rank.b.randomGets(3);break;
|
|
|
|
|
case 4:choice=lib.rank.bp.randomGets(3);break;
|
|
|
|
|
case 5:choice=lib.rank.am.randomGets(3);break;
|
|
|
|
|
case 6:choice=lib.rank.a.randomGets(3);break;
|
|
|
|
|
case 7:choice=lib.rank.ap.randomGets(3);break;
|
|
|
|
|
case 8:choice=lib.rank.s.randomGets(3);break;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
game.data.arena={
|
|
|
|
|
win:0,
|
|
|
|
|
dead:[],
|
2015-10-27 07:56:42 +00:00
|
|
|
|
acted:[],
|
2015-10-20 17:44:00 +00:00
|
|
|
|
choice:choice,
|
|
|
|
|
arenachoice:event.arenachoice
|
|
|
|
|
}
|
|
|
|
|
game.saveData();
|
|
|
|
|
}
|
|
|
|
|
_status.arenaLoaded=true;
|
|
|
|
|
var node;
|
|
|
|
|
node=event.cardNode(0,choice[0]);
|
|
|
|
|
node.init(node.name);
|
|
|
|
|
node.listen(event.clickNode);
|
|
|
|
|
event.arenanodes.push(node);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
node=event.cardNode(1,choice[1]);
|
|
|
|
|
node.init(node.name);
|
|
|
|
|
node.listen(event.clickNode);
|
|
|
|
|
if(event.choosefinished){
|
|
|
|
|
node.delete();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.arenanodes.push(node);
|
|
|
|
|
}
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
node=event.cardNode(2,choice[2]);
|
|
|
|
|
node.init(node.name);
|
|
|
|
|
node.listen(event.clickNode);
|
|
|
|
|
if(event.choosefinished){
|
|
|
|
|
node.delete();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.arenanodes.push(node);
|
|
|
|
|
}
|
|
|
|
|
},200);
|
|
|
|
|
},200);
|
|
|
|
|
game.pause();
|
|
|
|
|
'step 5'
|
|
|
|
|
if(event.arenachoice.length<9){
|
|
|
|
|
event.goto(4);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if(_status.arenaLoaded){
|
|
|
|
|
game.delay(2);
|
|
|
|
|
}
|
|
|
|
|
game.data.arena.arenachoice=event.arenachoice;
|
|
|
|
|
delete game.data.arena.choice;
|
|
|
|
|
game.saveData();
|
|
|
|
|
event.choosefinished=true;
|
|
|
|
|
}
|
|
|
|
|
'step 6'
|
|
|
|
|
game.minskin=true;
|
2015-10-27 07:56:42 +00:00
|
|
|
|
ui.arena.classList.add('noleft');
|
2015-10-20 17:44:00 +00:00
|
|
|
|
var nodes=event.arenachoicenodes;
|
|
|
|
|
for(var i=0;i<nodes.length;i++){
|
2015-11-05 02:34:35 +00:00
|
|
|
|
nodes[i].style.transform='scale(0.8)';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
if(_status.arenaLoaded){
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[0].style.left='calc(50% - 215px)';
|
|
|
|
|
nodes[0].style.top='calc(50% - 260px)';
|
|
|
|
|
},0);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[1].style.left='calc(50% - 75px)';
|
|
|
|
|
nodes[1].style.top='calc(50% - 260px)';
|
|
|
|
|
},50);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[2].style.left='calc(50% + 65px)';
|
|
|
|
|
nodes[2].style.top='calc(50% - 260px)';
|
|
|
|
|
},100);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[3].style.left='calc(50% - 215px)';
|
|
|
|
|
nodes[3].style.top='calc(50% - 90px)';
|
|
|
|
|
},150);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[4].style.left='calc(50% - 75px)';
|
|
|
|
|
nodes[4].style.top='calc(50% - 90px)';
|
|
|
|
|
},200);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[5].style.left='calc(50% + 65px)';
|
|
|
|
|
nodes[5].style.top='calc(50% - 90px)';
|
|
|
|
|
},250);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[6].style.left='calc(50% - 215px)';
|
|
|
|
|
nodes[6].style.top='calc(50% + 80px)';
|
|
|
|
|
},300);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[7].style.left='calc(50% - 75px)';
|
|
|
|
|
nodes[7].style.top='calc(50% + 80px)';
|
|
|
|
|
},350);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[8].style.left='calc(50% + 65px)';
|
|
|
|
|
nodes[8].style.top='calc(50% + 80px)';
|
|
|
|
|
},400);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
nodes[0].style.left='calc(50% - 215px)';
|
|
|
|
|
nodes[0].style.top='calc(50% - 260px)';
|
|
|
|
|
nodes[1].style.left='calc(50% - 75px)';
|
|
|
|
|
nodes[1].style.top='calc(50% - 260px)';
|
|
|
|
|
nodes[2].style.left='calc(50% + 65px)';
|
|
|
|
|
nodes[2].style.top='calc(50% - 260px)';
|
|
|
|
|
nodes[3].style.left='calc(50% - 215px)';
|
|
|
|
|
nodes[3].style.top='calc(50% - 90px)';
|
|
|
|
|
nodes[4].style.left='calc(50% - 75px)';
|
|
|
|
|
nodes[4].style.top='calc(50% - 90px)';
|
|
|
|
|
nodes[5].style.left='calc(50% + 65px)';
|
|
|
|
|
nodes[5].style.top='calc(50% - 90px)';
|
|
|
|
|
nodes[6].style.left='calc(50% - 215px)';
|
|
|
|
|
nodes[6].style.top='calc(50% + 80px)';
|
|
|
|
|
nodes[7].style.left='calc(50% - 75px)';
|
|
|
|
|
nodes[7].style.top='calc(50% + 80px)';
|
|
|
|
|
nodes[8].style.left='calc(50% + 65px)';
|
|
|
|
|
nodes[8].style.top='calc(50% + 80px)';
|
|
|
|
|
for(var i=0;i<nodes.length;i++){
|
|
|
|
|
ui.refresh(nodes[i]);
|
|
|
|
|
if(game.data.arena.dead.contains(nodes[i].name)){
|
|
|
|
|
nodes[i].classList.add('dead');
|
|
|
|
|
nodes[i].style.opacity=0.3;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
nodes[i].style.opacity=1;
|
2015-10-27 07:56:42 +00:00
|
|
|
|
if(game.data.arena.acted.contains(nodes[i].name)){
|
2015-11-06 10:05:08 +00:00
|
|
|
|
var acted=nodes[i].node.action;
|
2015-10-27 07:56:42 +00:00
|
|
|
|
acted.style.opacity=1;
|
|
|
|
|
acted.innerHTML='疲劳';
|
|
|
|
|
acted.dataset.nature='soilm';
|
|
|
|
|
acted.classList.add('freecolor');
|
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var victory=ui.create.div().hide();
|
|
|
|
|
victory.innerHTML='<span>'+game.data.arena.win+'</span>胜';
|
|
|
|
|
victory.style.top='auto';
|
|
|
|
|
victory.style.left='auto';
|
|
|
|
|
victory.style.right='20px';
|
|
|
|
|
victory.style.bottom='15px';
|
|
|
|
|
victory.style.fontSize='30px'
|
|
|
|
|
victory.style.fontFamily='huangcao';
|
|
|
|
|
victory.firstChild.style.marginRight='5px';
|
|
|
|
|
ui.window.appendChild(victory);
|
|
|
|
|
ui.refresh(victory);
|
|
|
|
|
victory.show();
|
|
|
|
|
|
|
|
|
|
event.checkPrize=function(){
|
|
|
|
|
// event.kaibao=true;
|
|
|
|
|
event.prize=[];
|
|
|
|
|
event.turnCard2=function(){
|
|
|
|
|
if(this.turned) return;
|
|
|
|
|
_status.chessclicked=true;
|
|
|
|
|
this.turned=true;
|
|
|
|
|
var node=this;
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
node.turned2=true;
|
|
|
|
|
},1000);
|
|
|
|
|
if(node.name=='chess_coin'||node.name=='chess_dust'){
|
|
|
|
|
node.style.transition='all 0s';
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='none';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
node.style.overflow='visible';
|
|
|
|
|
node.style.background='none';
|
|
|
|
|
node.style.boxShadow='none';
|
|
|
|
|
var div=ui.create.div(node);
|
|
|
|
|
div.style.transition='all 0s';
|
|
|
|
|
if(node.name=='chess_coin'){
|
|
|
|
|
div.innerHTML='<span>㉤</span><span>'+node.num+'</span>';
|
|
|
|
|
div.firstChild.style.color='rgb(255, 230, 0)';
|
|
|
|
|
node.$coin();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
div.innerHTML='<span>⚑</span><span>'+node.num+'</span>';
|
|
|
|
|
div.firstChild.style.color='rgb(111, 198, 255)';
|
|
|
|
|
div.firstChild.style.marginRight='3px';
|
|
|
|
|
node.$dust();
|
|
|
|
|
}
|
|
|
|
|
div.style.fontFamily='huangcao';
|
|
|
|
|
div.style.fontSize='50px';
|
|
|
|
|
div.style.top='40px';
|
|
|
|
|
div.style.letterSpacing='8px';
|
|
|
|
|
div.style.whiteSpace='nowrap';
|
|
|
|
|
// div.dataset.nature='metal';
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
node.style.transition='all ease-in 0.3s';
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='perspective(1200px) rotateY(270deg) translateX(150px)';
|
|
|
|
|
var onEnd=function(){
|
2015-10-20 17:44:00 +00:00
|
|
|
|
node.init(node.name);
|
|
|
|
|
node.node.avatar.style.display='';
|
|
|
|
|
if(node.rarity){
|
|
|
|
|
node.node.intro.innerHTML=get.translation(node.rarity);
|
|
|
|
|
node.node.intro.classList.add('showintro');
|
|
|
|
|
}
|
|
|
|
|
node.classList.add('playerflip');
|
2015-11-05 02:34:35 +00:00
|
|
|
|
node.style.transform='none';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
node.style.transition='';
|
2015-11-23 10:59:44 +00:00
|
|
|
|
if(lib.config.animation&&!lib.config.low_performance){
|
2015-11-01 07:54:42 +00:00
|
|
|
|
setTimeout(function(){
|
|
|
|
|
switch(game.getRarity(node.name)){
|
|
|
|
|
case 'rare':node.$rare();break;
|
|
|
|
|
case 'epic':node.$epic();break;
|
|
|
|
|
case 'legend':node.$legend();break;
|
|
|
|
|
}
|
|
|
|
|
},150);
|
|
|
|
|
}
|
2015-11-05 02:34:35 +00:00
|
|
|
|
};
|
2017-02-11 01:33:02 +00:00
|
|
|
|
node.listenTransition(onEnd);
|
2015-10-20 17:44:00 +00:00
|
|
|
|
};
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[0].delete();
|
|
|
|
|
},400+Math.random()*300);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[1].delete();
|
|
|
|
|
},400+Math.random()*300);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[2].delete();
|
|
|
|
|
},400+Math.random()*300);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[3].delete();
|
|
|
|
|
},400+Math.random()*300);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[4].delete();
|
|
|
|
|
},400+Math.random()*300);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[5].delete();
|
|
|
|
|
},400+Math.random()*300);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[6].delete();
|
|
|
|
|
},400+Math.random()*300);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[7].delete();
|
|
|
|
|
},400+Math.random()*300);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
nodes[8].delete();
|
|
|
|
|
},400+Math.random()*300);
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
var prize=new Array(6);
|
|
|
|
|
var map=[1,2,3,4,5];
|
|
|
|
|
var ccount=3;
|
|
|
|
|
var win=game.data.arena.win;
|
|
|
|
|
var prizeValue;
|
|
|
|
|
switch(win){
|
|
|
|
|
case 0:prizeValue=100;break;
|
|
|
|
|
case 1:prizeValue=120;break;
|
|
|
|
|
case 2:prizeValue=150;break;
|
|
|
|
|
case 3:prizeValue=190;break;
|
|
|
|
|
case 4:prizeValue=240;break;
|
|
|
|
|
case 5:prizeValue=300;break;
|
|
|
|
|
case 6:prizeValue=370;break;
|
|
|
|
|
case 7:prizeValue=450;break;
|
|
|
|
|
case 8:prizeValue=540;break;
|
|
|
|
|
case 9:prizeValue=640;break;
|
|
|
|
|
case 10:prizeValue=750;break;
|
|
|
|
|
case 11:prizeValue=870;break;
|
|
|
|
|
case 12:prizeValue=1000;break;
|
|
|
|
|
}
|
|
|
|
|
if(Math.random()<0.4){
|
|
|
|
|
if(win>=3&&Math.random()<0.5){
|
|
|
|
|
ccount=4;
|
|
|
|
|
prizeValue-=33;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
ccount=2;
|
|
|
|
|
prizeValue+=33;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
prizeValue-=100;
|
|
|
|
|
while(ccount--){
|
|
|
|
|
prize[map.randomRemove()]=game.getLeaderCharacter();
|
|
|
|
|
}
|
|
|
|
|
if(map.length){
|
|
|
|
|
prizeValue/=map.length;
|
|
|
|
|
}
|
|
|
|
|
while(map.length){
|
|
|
|
|
var val=Math.round((Math.random()*0.4+0.8)*prizeValue);
|
|
|
|
|
if(Math.random()<0.7){
|
|
|
|
|
prize[map.shift()]=['chess_coin',Math.max(Math.ceil(Math.random()*5),val)];
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
val=Math.round(val/3);
|
|
|
|
|
prize[map.shift()]=['chess_dust',Math.max(Math.ceil(Math.random()*3),val)];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for(var i=1;i<prize.length;i++){
|
|
|
|
|
if(typeof prize[i]=='string'){
|
|
|
|
|
var name=prize[i];
|
|
|
|
|
var rarity=game.getRarity(name);
|
|
|
|
|
if(!game.data.character.contains(name)){
|
|
|
|
|
game.data.character.push(name);
|
|
|
|
|
if(game.data.challenge.contains(name)){
|
|
|
|
|
game.data.challenge=game.getLeaderList();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
switch(rarity){
|
|
|
|
|
case 'common':game.data.dust+=10;break;
|
|
|
|
|
case 'rare':game.data.dust+=30;break;
|
|
|
|
|
case 'epic':game.data.dust+=150;break;
|
|
|
|
|
case 'legend':game.data.dust+=600;break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(prize[i][0]=='chess_coin'){
|
|
|
|
|
game.data.money+=prize[i][1];
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
game.data.dust+=prize[i][1];
|
|
|
|
|
}
|
|
|
|
|
setTimeout((function(i){
|
|
|
|
|
return function(){
|
|
|
|
|
var node;
|
|
|
|
|
if(typeof prize[i]=='string'){
|
|
|
|
|
node=event.cardNode('5'+i,prize[i]);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
node=event.cardNode('5'+i,prize[i][0]);
|
|
|
|
|
node.num=prize[i][1];
|
|
|
|
|
}
|
|
|
|
|
event.prize.push(node);
|
|
|
|
|
if(i==prize.length-1){
|
|
|
|
|
event.kaibao=true;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}(i)),i*200);
|
|
|
|
|
}
|
|
|
|
|
delete game.data.arena;
|
|
|
|
|
game.saveData();
|
|
|
|
|
},1000);
|
|
|
|
|
}
|
|
|
|
|
if(game.data.arena.dead.length<9&&game.data.arena.win<12){
|
|
|
|
|
event.arenafight=ui.create.control('开始战斗','nozoom',function(){
|
|
|
|
|
if(_status.chessgiveup) return;
|
|
|
|
|
_status.mylist=[];
|
|
|
|
|
var list=[];
|
|
|
|
|
for(var i=0;i<nodes.length;i++){
|
|
|
|
|
if(nodes[i].classList.contains('selected')){
|
|
|
|
|
_status.mylist.push(nodes[i].name);
|
|
|
|
|
}
|
|
|
|
|
else if(!nodes[i].classList.contains('dead')){
|
|
|
|
|
list.push(nodes[i].name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(_status.mylist.length==0){
|
|
|
|
|
_status.mylist=list.randomGets(3);
|
|
|
|
|
}
|
|
|
|
|
if(_status.mylist.length==0) return;
|
|
|
|
|
for(var i=0;i<_status.mylist.length;i++){
|
|
|
|
|
game.data.arena.dead.push(_status.mylist[i]);
|
|
|
|
|
}
|
|
|
|
|
game.saveData();
|
|
|
|
|
switch(game.data.arena.win){
|
2015-10-30 09:13:19 +00:00
|
|
|
|
case 0:list=lib.rank.d.concat(lib.rank.c);break;
|
|
|
|
|
case 1:list=lib.rank.c.concat(lib.rank.bm);break;
|
|
|
|
|
case 2:list=lib.rank.bm.concat(lib.rank.b);break;
|
|
|
|
|
case 3:list=lib.rank.b.concat(lib.rank.bp);break;
|
|
|
|
|
case 4:list=lib.rank.bp.concat(lib.rank.am);break;
|
|
|
|
|
case 5:list=lib.rank.am.concat(lib.rank.a);break;
|
|
|
|
|
case 6:list=lib.rank.a.concat(lib.rank.ap);break;
|
|
|
|
|
default:list=lib.rank.ap.concat(lib.rank.s);
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<_status.mylist.length;i++){
|
|
|
|
|
list.remove(_status.mylist[i]);
|
|
|
|
|
}
|
|
|
|
|
_status.enemylist=list.randomGets(3);
|
|
|
|
|
for(var i=0;i<nodes.length;i++){
|
|
|
|
|
nodes[i].delete();
|
|
|
|
|
}
|
|
|
|
|
victory.delete();
|
|
|
|
|
event.arenafight.close();
|
|
|
|
|
event.arenaback.close();
|
|
|
|
|
event.arenagiveup.close();
|
|
|
|
|
game.resume();
|
|
|
|
|
});
|
|
|
|
|
event.arenaback=ui.create.control('返回','nozoom',function(){
|
|
|
|
|
if(_status.chessgiveup) return;
|
|
|
|
|
game.data._arena=game.data.arena;
|
|
|
|
|
delete game.data.arena;
|
|
|
|
|
game.saveData();
|
|
|
|
|
game.reload();
|
|
|
|
|
});
|
|
|
|
|
var giveup=function(){
|
|
|
|
|
_status.chessclicked=true;
|
|
|
|
|
_status.chessgiveup=true;
|
|
|
|
|
event.arenafight.style.opacity=0.5;
|
|
|
|
|
event.arenaback.style.opacity=0.5;
|
|
|
|
|
this.replace('确认放弃',function(){
|
|
|
|
|
_status.chessclicked=true;
|
|
|
|
|
event.arenafight.close();
|
|
|
|
|
event.arenaback.close();
|
|
|
|
|
event.arenagiveup.close();
|
|
|
|
|
event.checkPrize();
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
event.arenagiveup=ui.create.control('放弃','nozoom',giveup);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.checkPrize();
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
|
|
|
|
|
event.custom.add.window=function(){
|
|
|
|
|
if(_status.chessclicked){
|
|
|
|
|
_status.chessclicked=false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(event.kaibao){
|
|
|
|
|
for(var i=0;i<event.prize.length;i++){
|
|
|
|
|
if(!event.prize[i].turned2){
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
game.reload();
|
|
|
|
|
}
|
|
|
|
|
_status.chessgiveup=false;
|
|
|
|
|
event.arenafight.style.opacity=1;
|
|
|
|
|
event.arenaback.style.opacity=1;
|
|
|
|
|
event.arenagiveup.replace('放弃',giveup);
|
|
|
|
|
for(var i=0;i<nodes.length;i++){
|
2015-11-06 10:05:08 +00:00
|
|
|
|
nodes[i].style.transform='scale(0.8)';
|
2015-10-20 17:44:00 +00:00
|
|
|
|
nodes[i].classList.remove('selected');
|
|
|
|
|
nodes[i].classList.remove('unselectable');
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
game.pause();
|
|
|
|
|
'step 7'
|
|
|
|
|
ui.control.style.display='none';
|
|
|
|
|
ui.control.style.top='';
|
|
|
|
|
ui.control.style.transition='';
|
|
|
|
|
ui.arena.classList.remove('leaderhide');
|
|
|
|
|
ui.wuxie.show();
|
|
|
|
|
ui.auto.show();
|
|
|
|
|
game.delay();
|
2016-08-13 16:56:12 +00:00
|
|
|
|
});
|
2015-05-08 13:37:34 +00:00
|
|
|
|
},
|
2015-10-20 17:44:00 +00:00
|
|
|
|
saveData:function(){
|
|
|
|
|
game.save(get.config('chess_leader_save'),game.data);
|
2015-10-13 11:15:02 +00:00
|
|
|
|
},
|
2015-10-20 17:44:00 +00:00
|
|
|
|
getLeaderList:function(){
|
2015-10-30 09:13:19 +00:00
|
|
|
|
var list=lib.rank.all.slice(0);
|
2015-10-20 17:44:00 +00:00
|
|
|
|
for(var i=0;i<game.data.character.length;i++){
|
|
|
|
|
list.remove(game.data.character[i]);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(!list.length){
|
|
|
|
|
return ['chess_xingtian'];
|
|
|
|
|
}
|
|
|
|
|
return list.randomGets(6);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
},
|
2015-10-20 17:44:00 +00:00
|
|
|
|
getLeaderCharacter:function(){
|
|
|
|
|
var pleg;
|
|
|
|
|
if(game.data.legend<=20){
|
|
|
|
|
pleg=0.01;
|
2015-10-13 11:15:02 +00:00
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
else{
|
|
|
|
|
pleg=0.01+(game.data.legend-20)*(game.data.legend-20)*0.99/10000;
|
|
|
|
|
}
|
|
|
|
|
if(Math.random()<pleg){
|
|
|
|
|
game.data.legend=0;
|
|
|
|
|
game.saveData();
|
2015-12-15 05:13:47 +00:00
|
|
|
|
return lib.rank.rarity.legend.randomGet();
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
game.data.legend++;
|
|
|
|
|
game.saveData();
|
2015-12-15 05:13:47 +00:00
|
|
|
|
if(Math.random()<0.05) return lib.rank.rarity.epic.randomGet();
|
|
|
|
|
if(Math.random()<0.3) return lib.rank.rarity.rare.randomGet();
|
|
|
|
|
return lib.rank.rarity.common.randomGet();
|
2015-10-20 17:44:00 +00:00
|
|
|
|
},
|
|
|
|
|
changeMoney:function(num){
|
|
|
|
|
game.data.money+=num;
|
|
|
|
|
game.saveData();
|
|
|
|
|
ui.money.lastChild.innerHTML=game.data.money;
|
|
|
|
|
},
|
|
|
|
|
changeDust:function(num){
|
|
|
|
|
game.data.dust+=num;
|
|
|
|
|
game.saveData();
|
|
|
|
|
ui.money.childNodes[1].innerHTML=game.data.dust;
|
|
|
|
|
},
|
|
|
|
|
getRarity:function(name){
|
2015-12-15 05:13:47 +00:00
|
|
|
|
var rank=lib.rank.rarity;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(rank.legend.contains(name)) return 'legend';
|
|
|
|
|
if(rank.epic.contains(name)) return 'epic';
|
|
|
|
|
if(rank.rare.contains(name)) return 'rare';
|
|
|
|
|
return 'common';
|
2015-10-13 11:15:02 +00:00
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
chooseCharacter:function(){
|
|
|
|
|
var next=game.createEvent('chooseCharacter',false);
|
|
|
|
|
next.showConfig=true;
|
|
|
|
|
next.ai=function(player,list){
|
|
|
|
|
if(get.config('double_character')){
|
|
|
|
|
player.init(list[0],list[1]);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
player.init(list[0]);
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-13 16:56:12 +00:00
|
|
|
|
next.setContent(function(){
|
2015-05-08 08:07:38 +00:00
|
|
|
|
"step 0"
|
2015-10-20 17:44:00 +00:00
|
|
|
|
ui.wuxie.hide();
|
2015-05-08 08:07:38 +00:00
|
|
|
|
var i;
|
|
|
|
|
var list=[];
|
2015-05-13 10:26:54 +00:00
|
|
|
|
var bosslist=[];
|
2016-01-24 08:34:21 +00:00
|
|
|
|
var jiangelist=[];
|
2015-05-08 08:07:38 +00:00
|
|
|
|
event.list=list;
|
|
|
|
|
for(i in lib.character){
|
2016-01-24 08:34:21 +00:00
|
|
|
|
if(lib.character[i][4].contains('chessboss')){
|
|
|
|
|
bosslist.push(i);continue;
|
|
|
|
|
}
|
|
|
|
|
else if(lib.character[i][4].contains('jiangeboss')){
|
|
|
|
|
// if(get.config('chess_jiange')) jiangelist.push(i);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2015-11-09 03:15:16 +00:00
|
|
|
|
if(i.indexOf('treasure_')==0) continue;
|
2015-05-13 10:26:54 +00:00
|
|
|
|
if(lib.character[i][4].contains('minskin')) continue;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
if(lib.config.forbidchess.contains(i)) continue;
|
2016-04-07 06:42:16 +00:00
|
|
|
|
if(lib.filter.characterDisabled(i)) continue;
|
2016-01-24 08:34:21 +00:00
|
|
|
|
list.push(i);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
list.randomSort();
|
2015-05-13 10:26:54 +00:00
|
|
|
|
var bosses=ui.create.div('.buttons');
|
|
|
|
|
event.bosses=bosses;
|
|
|
|
|
var bossbuttons=ui.create.buttons(bosslist,'character',bosses);
|
|
|
|
|
var addToButton=function(){
|
|
|
|
|
if(ui.cheat2&&ui.cheat2.backup) return;
|
|
|
|
|
_status.event.dialog.content.childNodes[1].innerHTML=
|
|
|
|
|
ui.selected.buttons.length+'/'+_status.event.selectButton();
|
|
|
|
|
};
|
2016-01-24 08:34:21 +00:00
|
|
|
|
var jiange=ui.create.div('.buttons');
|
|
|
|
|
event.jiange=jiange;
|
|
|
|
|
var jiangebuttons=ui.create.buttons(jiangelist,'character',jiange);
|
|
|
|
|
|
2015-05-13 10:26:54 +00:00
|
|
|
|
var clickedBoss=false;
|
|
|
|
|
var clickBoss=function(){
|
|
|
|
|
clickedBoss=true;
|
|
|
|
|
var num=bosses.querySelectorAll('.glow').length;
|
|
|
|
|
if(this.classList.contains('glow')){
|
|
|
|
|
this.classList.remove('glow');
|
|
|
|
|
num--;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if(num<4){
|
|
|
|
|
this.classList.add('glow');
|
|
|
|
|
num++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<bosses.childElementCount;i++){
|
|
|
|
|
if(num>=4&&!bosses.childNodes[i].classList.contains('glow')){
|
|
|
|
|
bosses.childNodes[i].classList.add('forbidden');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
bosses.childNodes[i].classList.remove('forbidden');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(num){
|
|
|
|
|
if(!event.asboss){
|
|
|
|
|
event.asboss=ui.create.control('应战',function(){
|
|
|
|
|
_status.boss=true;
|
|
|
|
|
ui.click.ok();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if(event.asboss){
|
|
|
|
|
event.asboss.close();
|
|
|
|
|
delete event.asboss;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
addToButton();
|
|
|
|
|
};
|
2016-01-24 08:34:21 +00:00
|
|
|
|
|
|
|
|
|
var clickedJiange=false;
|
|
|
|
|
var clickJiange=function(){
|
|
|
|
|
clickedJiange=true;
|
|
|
|
|
if(this.classList.contains('glow2')){
|
|
|
|
|
this.classList.remove('glow2');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
this.classList.add('glow2');
|
|
|
|
|
}
|
|
|
|
|
addToButton();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2015-05-13 10:26:54 +00:00
|
|
|
|
for(var i=0;i<bossbuttons.length;i++){
|
|
|
|
|
bossbuttons[i].classList.add('noclick');
|
|
|
|
|
bossbuttons[i].listen(clickBoss);
|
|
|
|
|
}
|
2016-01-24 08:34:21 +00:00
|
|
|
|
for(var i=0;i<jiangebuttons.length;i++){
|
|
|
|
|
jiangebuttons[i].classList.add('noclick');
|
|
|
|
|
jiangebuttons[i].listen(clickJiange);
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
|
|
|
|
|
if(get.config('reward')==undefined) game.saveConfig('reward',1,true);
|
|
|
|
|
if(get.config('punish')==undefined) game.saveConfig('punish','无',true);
|
|
|
|
|
if(get.config('battle_number')==undefined) game.saveConfig('battle_number',3,true);
|
|
|
|
|
if(get.config('replace_number')==undefined) game.saveConfig('replace_number',0,true);
|
|
|
|
|
if(get.config('single_control')==undefined) game.saveConfig('single_control',true,true);
|
|
|
|
|
if(get.config('first_less')==undefined) game.saveConfig('first_less',true,true);
|
|
|
|
|
|
2015-12-16 06:49:43 +00:00
|
|
|
|
var dialog=ui.create.dialog('选择出场角色','hidden');
|
2015-05-08 08:07:38 +00:00
|
|
|
|
dialog.classList.add('fullwidth');
|
|
|
|
|
dialog.classList.add('fullheight');
|
2015-12-16 06:49:43 +00:00
|
|
|
|
dialog.classList.add('fixed');
|
2016-01-12 13:18:47 +00:00
|
|
|
|
dialog.add('0/0');
|
|
|
|
|
dialog.add([list.slice(0,parseInt(get.config('battle_number'))*4+parseInt(get.config('replace_number'))+5),'character']);
|
2015-05-13 10:26:54 +00:00
|
|
|
|
if(bossbuttons.length){
|
|
|
|
|
dialog.add('挑战魔王');
|
|
|
|
|
dialog.add(bosses);
|
|
|
|
|
}
|
2016-01-24 08:34:21 +00:00
|
|
|
|
if(jiangebuttons.length){
|
|
|
|
|
dialog.add('守卫剑阁');
|
|
|
|
|
dialog.add(jiange);
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
event.addConfig=function(dialog){
|
|
|
|
|
dialog.add('选项');
|
|
|
|
|
dialog.choice={};
|
|
|
|
|
dialog.choice.zhu=dialog.add(ui.create.switcher('zhu',get.config('zhu'))).querySelector('.toggle');
|
|
|
|
|
dialog.choice.main_zhu=dialog.add(ui.create.switcher('main_zhu',get.config('main_zhu'))).querySelector('.toggle');
|
|
|
|
|
if(get.config('zhu')){
|
|
|
|
|
dialog.choice.main_zhu.parentNode.classList.remove('disabled');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
dialog.choice.main_zhu.parentNode.classList.add('disabled');
|
|
|
|
|
}
|
|
|
|
|
dialog.choice.noreplace_end=dialog.add(ui.create.switcher('noreplace_end',get.config('noreplace_end'))).querySelector('.toggle');
|
|
|
|
|
dialog.choice.additional_player=dialog.add(ui.create.switcher('additional_player',get.config('additional_player'))).querySelector('.toggle');
|
|
|
|
|
dialog.choice.single_control=dialog.add(ui.create.switcher('single_control',get.config('single_control'))).querySelector('.toggle');
|
|
|
|
|
dialog.choice.first_less=dialog.add(ui.create.switcher('first_less',get.config('first_less'))).querySelector('.toggle');
|
|
|
|
|
// dialog.attack_move=dialog.add(ui.create.switcher('attack_move',get.config('attack_move'))).querySelector('.toggle');
|
|
|
|
|
// this.dialog.versus_single_control=this.dialog.add(ui.create.switcher('versus_single_control',lib.storage.single_control)).querySelector('.toggle');
|
|
|
|
|
// this.dialog.versus_first_less=this.dialog.add(ui.create.switcher('versus_first_less',lib.storage.first_less)).querySelector('.toggle');
|
|
|
|
|
dialog.choice.reward=dialog.add(ui.create.switcher('reward',[0,1,2,3,4],get.config('reward'))).querySelector('.toggle');
|
|
|
|
|
dialog.choice.punish=dialog.add(ui.create.switcher('punish',['弃牌','无','摸牌'],get.config('punish'))).querySelector('.toggle');
|
2016-05-28 09:00:48 +00:00
|
|
|
|
dialog.choice.seat_order=dialog.add(ui.create.switcher('seat_order',['指定','交替'],get.config('seat_order'))).querySelector('.toggle');
|
2016-01-24 08:34:21 +00:00
|
|
|
|
dialog.choice.battle_number=dialog.add(ui.create.switcher('battle_number',[1,2,3,4,6,8],get.config('battle_number'))).querySelector('.toggle');
|
2016-01-12 13:18:47 +00:00
|
|
|
|
dialog.choice.replace_number=dialog.add(ui.create.switcher('replace_number',[0,1,2,3,5,7,9,17],get.config('replace_number'))).querySelector('.toggle');
|
|
|
|
|
dialog.choice.choice_number=dialog.add(ui.create.switcher('choice_number',[3,6,9],get.config('choice_number'))).querySelector('.toggle');
|
|
|
|
|
if(get.config('additional_player')){
|
2016-01-13 06:37:59 +00:00
|
|
|
|
dialog.choice.noreplace_end.parentNode.classList.add('disabled');
|
2016-01-12 13:18:47 +00:00
|
|
|
|
dialog.choice.replace_number.parentNode.classList.add('disabled');
|
|
|
|
|
dialog.choice.choice_number.parentNode.classList.remove('disabled');
|
|
|
|
|
}
|
|
|
|
|
else{
|
2016-01-13 06:37:59 +00:00
|
|
|
|
dialog.choice.noreplace_end.parentNode.classList.remove('disabled');
|
2016-01-12 13:18:47 +00:00
|
|
|
|
dialog.choice.replace_number.parentNode.classList.remove('disabled');
|
|
|
|
|
dialog.choice.choice_number.parentNode.classList.add('disabled');
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
event.addConfig(dialog);
|
2015-11-26 16:12:42 +00:00
|
|
|
|
for(var i=0;i<bosses.childNodes.length;i++){
|
|
|
|
|
bosses.childNodes[i].classList.add('squarebutton');
|
|
|
|
|
}
|
2016-01-24 08:34:21 +00:00
|
|
|
|
for(var i=0;i<jiange.childNodes.length;i++){
|
|
|
|
|
jiange.childNodes[i].classList.add('squarebutton');
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
ui.control.style.transition='all 0s';
|
2017-01-20 12:10:37 +00:00
|
|
|
|
|
2017-02-07 05:33:23 +00:00
|
|
|
|
if(get.is.phoneLayout()){
|
2015-10-31 16:18:20 +00:00
|
|
|
|
ui.control.style.top='calc(100% - 80px)';
|
|
|
|
|
}
|
2017-01-20 12:10:37 +00:00
|
|
|
|
else{
|
|
|
|
|
ui.control.style.top='calc(100% - 70px)';
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
|
|
|
|
|
var next=game.me.chooseButton(dialog,true);
|
2015-05-12 09:51:40 +00:00
|
|
|
|
next._triggered=null;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
next.selectButton=function(){
|
2015-05-13 10:26:54 +00:00
|
|
|
|
var bossnum=bosses.querySelectorAll('.glow').length;
|
|
|
|
|
if(bossnum){
|
|
|
|
|
return 3*bossnum;
|
|
|
|
|
}
|
2017-01-12 14:50:54 +00:00
|
|
|
|
if(!get.config('single_control')){
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
if(get.config('additional_player')){
|
|
|
|
|
return parseInt(get.config('battle_number'));
|
|
|
|
|
}
|
|
|
|
|
return parseInt(get.config('battle_number'))+parseInt(get.config('replace_number'));
|
2015-05-08 08:07:38 +00:00
|
|
|
|
};
|
2015-05-13 10:26:54 +00:00
|
|
|
|
next.custom.add.button=addToButton;
|
|
|
|
|
next.custom.add.window=function(clicked){
|
|
|
|
|
if(clicked) return;
|
|
|
|
|
if(clickedBoss){
|
|
|
|
|
clickedBoss=false;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
for(var i=0;i<bosses.childElementCount;i++){
|
|
|
|
|
bosses.childNodes[i].classList.remove('forbidden');
|
|
|
|
|
bosses.childNodes[i].classList.remove('glow');
|
|
|
|
|
}
|
|
|
|
|
if(event.asboss){
|
|
|
|
|
event.asboss.close();
|
|
|
|
|
delete event.asboss;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-24 08:34:21 +00:00
|
|
|
|
if(clickedJiange){
|
|
|
|
|
clickedJiange=false;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
for(var i=0;i<jiange.childElementCount;i++){
|
|
|
|
|
jiange.childNodes[i].classList.remove('forbidden');
|
|
|
|
|
jiange.childNodes[i].classList.remove('glow2');
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
var dialog=_status.event.dialog;
|
|
|
|
|
if(dialog.choice){
|
|
|
|
|
for(var i in dialog.choice){
|
|
|
|
|
game.saveConfig(i,dialog.choice[i].link,true);
|
|
|
|
|
}
|
|
|
|
|
if(get.config('zhu')){
|
|
|
|
|
dialog.choice.main_zhu.parentNode.classList.remove('disabled');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
dialog.choice.main_zhu.parentNode.classList.add('disabled');
|
|
|
|
|
}
|
|
|
|
|
if(get.config('additional_player')){
|
2016-01-13 06:37:59 +00:00
|
|
|
|
dialog.choice.noreplace_end.parentNode.classList.add('disabled');
|
2016-01-12 13:18:47 +00:00
|
|
|
|
dialog.choice.replace_number.parentNode.classList.add('disabled');
|
|
|
|
|
dialog.choice.choice_number.parentNode.classList.remove('disabled');
|
|
|
|
|
}
|
|
|
|
|
else{
|
2016-01-13 06:37:59 +00:00
|
|
|
|
dialog.choice.noreplace_end.parentNode.classList.remove('disabled');
|
2016-01-12 13:18:47 +00:00
|
|
|
|
dialog.choice.replace_number.parentNode.classList.remove('disabled');
|
|
|
|
|
dialog.choice.choice_number.parentNode.classList.add('disabled');
|
|
|
|
|
}
|
|
|
|
|
var num=parseInt(get.config('battle_number'))*4+parseInt(get.config('replace_number'))+5;
|
|
|
|
|
if(dialog.buttons.length>num){
|
|
|
|
|
for(var i=num;i<dialog.buttons.length;i++){
|
|
|
|
|
dialog.buttons[i].remove();
|
|
|
|
|
}
|
|
|
|
|
dialog.buttons.splice(num);
|
|
|
|
|
}
|
|
|
|
|
else if(dialog.buttons.length<num){
|
|
|
|
|
for(var i=dialog.buttons.length;i<num;i++){
|
|
|
|
|
dialog.buttons.push(ui.create.button(list[i],'character',dialog.buttons[0].parentNode).animate('zoom'))
|
|
|
|
|
}
|
|
|
|
|
game.check();
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-13 10:26:54 +00:00
|
|
|
|
addToButton();
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
event.changeDialog=function(){
|
|
|
|
|
if(ui.cheat2&&ui.cheat2.dialog==_status.event.dialog){
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-12-27 08:09:12 +00:00
|
|
|
|
if(game.changeCoin){
|
2016-01-12 13:18:47 +00:00
|
|
|
|
game.changeCoin(-3);
|
2015-12-27 08:09:12 +00:00
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
list.randomSort();
|
2016-06-17 15:44:19 +00:00
|
|
|
|
|
|
|
|
|
var buttons=ui.create.div('.buttons');
|
|
|
|
|
var node=_status.event.dialog.buttons[0].parentNode;
|
|
|
|
|
_status.event.dialog.buttons=ui.create.buttons(list.slice(0,parseInt(get.config('battle_number'))*4+parseInt(get.config('replace_number'))+5),'character',buttons);
|
|
|
|
|
_status.event.dialog.content.insertBefore(buttons,node);
|
|
|
|
|
buttons.animate('start');
|
|
|
|
|
node.remove();
|
|
|
|
|
|
|
|
|
|
// _status.event.dialog.close();
|
|
|
|
|
// var dialog=ui.create.dialog('选择出场角色','hidden');
|
|
|
|
|
// _status.event.dialog=dialog;
|
|
|
|
|
// dialog.classList.add('fullwidth');
|
|
|
|
|
// dialog.classList.add('fullheight');
|
|
|
|
|
// dialog.classList.add('fixed');
|
|
|
|
|
// dialog.add('0/'+_status.event.selectButton());
|
|
|
|
|
// dialog.add([list.slice(0,parseInt(get.config('battle_number'))*4+parseInt(get.config('replace_number'))+5),'character']);
|
|
|
|
|
// if(bossbuttons.length){
|
|
|
|
|
// dialog.add('挑战魔王');
|
|
|
|
|
// dialog.add(bosses);
|
|
|
|
|
// }
|
|
|
|
|
// if(jiangebuttons.length){
|
|
|
|
|
// dialog.add('守卫剑阁');
|
|
|
|
|
// dialog.add(jiange);
|
|
|
|
|
// }
|
|
|
|
|
// event.addConfig(dialog);
|
|
|
|
|
// dialog.open();
|
2015-05-08 08:07:38 +00:00
|
|
|
|
game.uncheck();
|
|
|
|
|
game.check();
|
|
|
|
|
};
|
|
|
|
|
ui.create.cheat=function(){
|
2015-09-03 03:49:14 +00:00
|
|
|
|
_status.createControl=ui.cheat2;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
ui.cheat=ui.create.control('更换',event.changeDialog);
|
2015-09-03 03:49:14 +00:00
|
|
|
|
delete _status.createControl;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
};
|
|
|
|
|
event.dialogxx=ui.create.characterDialog();
|
|
|
|
|
event.dialogxx.classList.add('fullwidth');
|
|
|
|
|
event.dialogxx.classList.add('fullheight');
|
2015-12-16 06:49:43 +00:00
|
|
|
|
event.dialogxx.classList.add('fixed');
|
2015-05-08 08:07:38 +00:00
|
|
|
|
ui.create.cheat2=function(){
|
|
|
|
|
ui.cheat2=ui.create.control('自由选将',function(){
|
|
|
|
|
if(this.dialog==_status.event.dialog){
|
2015-12-27 08:09:12 +00:00
|
|
|
|
if(game.changeCoin){
|
|
|
|
|
game.changeCoin(50);
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
this.dialog.close();
|
|
|
|
|
_status.event.dialog=this.backup;
|
|
|
|
|
this.backup.open();
|
|
|
|
|
delete this.backup;
|
|
|
|
|
game.uncheck();
|
|
|
|
|
game.check();
|
2015-09-03 03:49:14 +00:00
|
|
|
|
if(ui.cheat){
|
|
|
|
|
ui.cheat.style.opacity=1;
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
else{
|
2015-12-27 08:09:12 +00:00
|
|
|
|
if(game.changeCoin){
|
2016-01-12 13:18:47 +00:00
|
|
|
|
game.changeCoin(-10);
|
2015-12-27 08:09:12 +00:00
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
this.backup=_status.event.dialog;
|
|
|
|
|
_status.event.dialog.close();
|
|
|
|
|
_status.event.dialog=_status.event.parent.dialogxx;
|
|
|
|
|
this.dialog=_status.event.dialog;
|
|
|
|
|
this.dialog.open();
|
|
|
|
|
game.uncheck();
|
|
|
|
|
game.check();
|
2015-09-03 03:49:14 +00:00
|
|
|
|
if(ui.cheat){
|
|
|
|
|
ui.cheat.style.opacity=0.6;
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if(!ui.cheat&&get.config('change_choice'))
|
|
|
|
|
ui.create.cheat();
|
|
|
|
|
if(!ui.cheat2&&get.config('free_choose'))
|
|
|
|
|
ui.create.cheat2();
|
|
|
|
|
"step 1"
|
2015-10-20 17:44:00 +00:00
|
|
|
|
ui.wuxie.show();
|
2015-05-08 08:07:38 +00:00
|
|
|
|
if(ui.cheat){
|
|
|
|
|
ui.cheat.close();
|
|
|
|
|
delete ui.cheat;
|
|
|
|
|
}
|
|
|
|
|
if(ui.cheat2){
|
|
|
|
|
ui.cheat2.close();
|
|
|
|
|
delete ui.cheat2;
|
|
|
|
|
}
|
2015-05-13 10:26:54 +00:00
|
|
|
|
if(event.asboss){
|
|
|
|
|
event.asboss.close();
|
|
|
|
|
delete ui.asboss;
|
|
|
|
|
}
|
2015-05-12 09:51:40 +00:00
|
|
|
|
ui.control.style.display='none';
|
2015-05-08 08:07:38 +00:00
|
|
|
|
ui.control.style.top='';
|
|
|
|
|
ui.control.style.transition='';
|
|
|
|
|
|
2017-01-12 14:50:54 +00:00
|
|
|
|
var glows=event.bosses.querySelectorAll('.glow');
|
|
|
|
|
var glows2=event.jiange.querySelectorAll('.glow2');
|
|
|
|
|
if(!glows.length&&!glows2.length){
|
|
|
|
|
if(!get.config('single_control')){
|
|
|
|
|
var addnum;
|
|
|
|
|
if(get.config('additional_player')){
|
|
|
|
|
addnum=parseInt(get.config('battle_number'));
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
addnum=parseInt(get.config('battle_number'))+parseInt(get.config('replace_number'));
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<addnum-1;i++){
|
|
|
|
|
result.links.push(event.list.randomRemove());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-06-10 15:45:51 +00:00
|
|
|
|
for(var i=0;i<result.links.length;i++){
|
|
|
|
|
game.addRecentCharacter(result.links[i]);
|
|
|
|
|
}
|
2016-01-12 13:18:47 +00:00
|
|
|
|
if(_status.mode=='combat'){
|
|
|
|
|
_status.mylist=result.links.slice(0,parseInt(get.config('battle_number')));
|
|
|
|
|
_status.replacelist=result.links.slice(parseInt(get.config('battle_number')));
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
_status.mylist=result.links.slice(0);
|
|
|
|
|
}
|
2015-12-15 05:13:47 +00:00
|
|
|
|
if(ui.coin){
|
|
|
|
|
_status.coinCoeff=get.coinCoeff(_status.mylist);
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
for(var i=0;i<result.links.length;i++){
|
|
|
|
|
event.list.remove(result.links[i]);
|
|
|
|
|
}
|
2015-05-13 10:26:54 +00:00
|
|
|
|
if(glows.length){
|
2016-01-12 13:18:47 +00:00
|
|
|
|
_status.vsboss=true;
|
2015-05-13 10:26:54 +00:00
|
|
|
|
_status.enemylist=[];
|
|
|
|
|
for(var i=0;i<glows.length;i++){
|
|
|
|
|
_status.enemylist.push(glows[i].link);
|
|
|
|
|
}
|
|
|
|
|
if(_status.boss){
|
|
|
|
|
var temp=_status.mylist;
|
|
|
|
|
_status.mylist=_status.enemylist;
|
|
|
|
|
_status.enemylist=temp;
|
|
|
|
|
for(var i=_status.enemylist.length;i<_status.mylist.length*3;i++){
|
|
|
|
|
_status.enemylist.push(event.list.randomRemove());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-24 08:34:21 +00:00
|
|
|
|
else if(glows2.length){
|
|
|
|
|
_status.vsboss=true;
|
|
|
|
|
_status.enemylist=[];
|
|
|
|
|
for(var i=0;i<glows2.length;i++){
|
|
|
|
|
_status.enemylist.push(glows2[i].link);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-13 10:26:54 +00:00
|
|
|
|
else{
|
|
|
|
|
event.list.randomSort();
|
2016-01-12 13:18:47 +00:00
|
|
|
|
_status.enemylist=event.list.splice(0,_status.mylist.length);
|
|
|
|
|
if(_status.mode=='combat'&&_status.replacelist){
|
|
|
|
|
_status.enemyreplacelist=event.list.splice(0,_status.replacelist.length);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(_status.mode=='combat'&&get.config('additional_player')){
|
|
|
|
|
_status.additionallist=event.list;
|
2015-05-13 10:26:54 +00:00
|
|
|
|
}
|
2016-08-13 16:56:12 +00:00
|
|
|
|
});
|
2015-05-08 08:07:38 +00:00
|
|
|
|
},
|
|
|
|
|
modeSwapPlayer:function(player){
|
2015-11-04 01:59:00 +00:00
|
|
|
|
var content=[game.me.dataset.position,player.dataset.position];
|
2015-12-01 05:46:28 +00:00
|
|
|
|
game.me.classList.remove('current_action');
|
|
|
|
|
player.classList.add('current_action');
|
2015-11-04 01:59:00 +00:00
|
|
|
|
game.addVideo('chessSwap',null,content);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
game.swapControl(player);
|
2015-06-14 05:07:39 +00:00
|
|
|
|
player.chessFocus();
|
2015-05-08 08:07:38 +00:00
|
|
|
|
ui.create.fakeme();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
skill:{
|
2015-11-09 17:04:18 +00:00
|
|
|
|
_attackmove:{
|
|
|
|
|
trigger:{player:'damageEnd'},
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
priority:50,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
if(!event.source) return false;
|
2015-11-12 01:12:03 +00:00
|
|
|
|
if(get.distance(event.source,player,'pure')>2) return false;
|
2015-11-09 17:04:18 +00:00
|
|
|
|
var xy1=event.source.getXY();
|
|
|
|
|
var xy2=player.getXY();
|
|
|
|
|
var dx=xy2[0]-xy1[0];
|
|
|
|
|
var dy=xy2[1]-xy1[1];
|
2016-01-24 08:34:21 +00:00
|
|
|
|
// if(dx*dy!=0) return false;
|
2015-11-09 17:04:18 +00:00
|
|
|
|
if(dx==0&&Math.abs(dy)==2){
|
|
|
|
|
dy/=2;
|
|
|
|
|
}
|
|
|
|
|
if(dy==0&&Math.abs(dx)==2){
|
|
|
|
|
dx/=2;
|
|
|
|
|
}
|
|
|
|
|
return player.movable(dx,dy);
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
var xy1=trigger.source.getXY();
|
|
|
|
|
var xy2=player.getXY();
|
|
|
|
|
var dx=xy2[0]-xy1[0];
|
|
|
|
|
var dy=xy2[1]-xy1[1];
|
|
|
|
|
if(dx==0&&Math.abs(dy)==2){
|
|
|
|
|
dy/=2;
|
|
|
|
|
}
|
|
|
|
|
if(dy==0&&Math.abs(dx)==2){
|
|
|
|
|
dx/=2;
|
|
|
|
|
}
|
|
|
|
|
if(player.movable(dx,dy)){
|
|
|
|
|
player.move(dx,dy);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-11-09 03:15:16 +00:00
|
|
|
|
dubiaoxianjing:{
|
|
|
|
|
global:'dubiaoxianjing2'
|
|
|
|
|
},
|
|
|
|
|
dubiaoxianjing2:{
|
|
|
|
|
trigger:{player:'phaseAfter'},
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
if(player.hp<=1) return false;
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_dubiaoxianjing'){
|
|
|
|
|
return get.chessDistance(game.treasures[i],player)<=2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
'step 0'
|
|
|
|
|
var source=null;
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_dubiaoxianjing'){
|
|
|
|
|
source=game.treasures[i];break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(source){
|
|
|
|
|
source.chessFocus();
|
|
|
|
|
source.playerfocus(1000);
|
|
|
|
|
source.line(player,'thunder');
|
2015-11-23 10:59:44 +00:00
|
|
|
|
if(lib.config.animation&&!lib.config.low_performance){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
setTimeout(function(){
|
|
|
|
|
source.$epic2();
|
|
|
|
|
},300);
|
|
|
|
|
}
|
|
|
|
|
game.delay(2);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.finish();
|
|
|
|
|
}
|
|
|
|
|
'step 1'
|
|
|
|
|
game.log('毒镖陷阱发动');
|
|
|
|
|
player.damage('nosource');
|
|
|
|
|
player.draw(2);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
jiqishi:{
|
|
|
|
|
global:'jiqishi2'
|
|
|
|
|
},
|
|
|
|
|
jiqishi2:{
|
|
|
|
|
trigger:{player:'phaseAfter'},
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
if(player.hp==player.maxHp) return false;
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_jiqishi'){
|
|
|
|
|
return get.chessDistance(game.treasures[i],player)<=2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
'step 0'
|
|
|
|
|
var source=null;
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_jiqishi'){
|
|
|
|
|
source=game.treasures[i];break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(source){
|
|
|
|
|
source.chessFocus();
|
|
|
|
|
source.playerfocus(1000);
|
|
|
|
|
source.line(player,'thunder');
|
2015-11-23 10:59:44 +00:00
|
|
|
|
if(lib.config.animation&&!lib.config.low_performance){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
setTimeout(function(){
|
|
|
|
|
source.$epic2();
|
|
|
|
|
},300);
|
|
|
|
|
}
|
|
|
|
|
game.delay(2);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.finish();
|
|
|
|
|
}
|
|
|
|
|
'step 1'
|
|
|
|
|
game.log('集气石发动');
|
|
|
|
|
player.recover('nosource');
|
|
|
|
|
var he=player.get('he');
|
|
|
|
|
if(he.length){
|
|
|
|
|
player.discard(he.randomGets(2));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
wuyashenxiang:{
|
|
|
|
|
global:'wuyashenxiang2'
|
|
|
|
|
},
|
|
|
|
|
wuyashenxiang2:{
|
|
|
|
|
trigger:{player:'phaseAfter'},
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
if(player.hp>1) return false;
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_wuyashenxiang'){
|
|
|
|
|
return get.chessDistance(game.treasures[i],player)<=3;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
'step 0'
|
|
|
|
|
var source=null;
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_wuyashenxiang'){
|
|
|
|
|
source=game.treasures[i];break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(source){
|
|
|
|
|
source.chessFocus();
|
|
|
|
|
source.playerfocus(1000);
|
|
|
|
|
source.line(player,'thunder');
|
2015-11-23 10:59:44 +00:00
|
|
|
|
if(lib.config.animation&&!lib.config.low_performance){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
setTimeout(function(){
|
|
|
|
|
source.$epic2();
|
|
|
|
|
},300);
|
|
|
|
|
}
|
|
|
|
|
game.delay(2);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.finish();
|
|
|
|
|
}
|
|
|
|
|
'step 1'
|
|
|
|
|
game.log('乌鸦神像发动');
|
|
|
|
|
player.recover('nosource');
|
2015-11-11 02:41:42 +00:00
|
|
|
|
// player.draw();
|
2015-11-09 03:15:16 +00:00
|
|
|
|
var card=get.cardPile(function(c){
|
|
|
|
|
return get.type(c)=='delay';
|
|
|
|
|
});
|
|
|
|
|
if(card){
|
|
|
|
|
player.addJudge(card);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
shenpanxianjing:{
|
|
|
|
|
global:'shenpanxianjing2'
|
|
|
|
|
},
|
|
|
|
|
shenpanxianjing2:{
|
|
|
|
|
trigger:{player:'phaseAfter'},
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
var nh=player.num('h');
|
|
|
|
|
if(!nh) return false;
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_shenpanxianjing'){
|
|
|
|
|
for(var j=0;j<game.players.length;j++){
|
|
|
|
|
if(game.players[j].num('h')>nh) return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
'step 0'
|
|
|
|
|
var source=null;
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_shenpanxianjing'){
|
|
|
|
|
source=game.treasures[i];break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(source){
|
|
|
|
|
source.chessFocus();
|
|
|
|
|
source.playerfocus(1000);
|
|
|
|
|
source.line(player,'thunder');
|
2015-11-23 10:59:44 +00:00
|
|
|
|
if(lib.config.animation&&!lib.config.low_performance){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
setTimeout(function(){
|
|
|
|
|
source.$epic2();
|
|
|
|
|
},300);
|
|
|
|
|
}
|
|
|
|
|
game.delay(2);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.finish();
|
|
|
|
|
}
|
|
|
|
|
'step 1'
|
|
|
|
|
game.log('审判之刃发动');
|
|
|
|
|
var hs=player.get('h');
|
|
|
|
|
if(hs.length){
|
|
|
|
|
player.discard(hs.randomGet());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
shiyuansu:{
|
|
|
|
|
global:'shiyuansu2'
|
|
|
|
|
},
|
|
|
|
|
shiyuansu2:{
|
|
|
|
|
trigger:{player:'damageAfter'},
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
if(event.num<2) return false;
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_shiyuansu'){
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
'step 0'
|
|
|
|
|
game.delayx();
|
|
|
|
|
'step 1'
|
|
|
|
|
var source=null;
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_shiyuansu'){
|
|
|
|
|
source=game.treasures[i];break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(source){
|
|
|
|
|
source.chessFocus();
|
|
|
|
|
source.playerfocus(1000);
|
|
|
|
|
source.line(player,'thunder');
|
2015-11-23 10:59:44 +00:00
|
|
|
|
if(lib.config.animation&&!lib.config.low_performance){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
setTimeout(function(){
|
|
|
|
|
source.$epic2();
|
|
|
|
|
},300);
|
|
|
|
|
}
|
|
|
|
|
game.delay(2);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.finish();
|
|
|
|
|
}
|
|
|
|
|
'step 2'
|
|
|
|
|
game.log('石元素像发动');
|
|
|
|
|
player.changeHujia();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
shenmidiaoxiang:{
|
|
|
|
|
global:'shenmidiaoxiang2'
|
|
|
|
|
},
|
|
|
|
|
shenmidiaoxiang2:{
|
|
|
|
|
trigger:{player:'phaseAfter'},
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_shenmidiaoxiang'){
|
|
|
|
|
return player.canMoveTowards(game.treasures[i])&&
|
|
|
|
|
get.chessDistance(game.treasures[i],player)>3;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
'step 0'
|
|
|
|
|
var source=null;
|
|
|
|
|
for(var i=0;i<game.treasures.length;i++){
|
|
|
|
|
if(game.treasures[i].name=='treasure_shenmidiaoxiang'){
|
|
|
|
|
source=game.treasures[i];break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(source){
|
|
|
|
|
event.source=source;
|
|
|
|
|
source.chessFocus();
|
|
|
|
|
source.playerfocus(1000);
|
|
|
|
|
source.line(player,'thunder');
|
2015-11-23 10:59:44 +00:00
|
|
|
|
if(lib.config.animation&&!lib.config.low_performance){
|
2015-11-09 03:15:16 +00:00
|
|
|
|
setTimeout(function(){
|
|
|
|
|
source.$epic2();
|
|
|
|
|
},300);
|
|
|
|
|
}
|
|
|
|
|
game.delay(2);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.finish();
|
|
|
|
|
}
|
|
|
|
|
'step 1'
|
|
|
|
|
game.log('神秘雕像发动');
|
|
|
|
|
player.moveTowards(event.source);
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-10-27 07:56:42 +00:00
|
|
|
|
arenaAdd:{
|
|
|
|
|
enable:'phaseUse',
|
|
|
|
|
usable:1,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
return _status.enterArena&&player.side==game.me.side&&game.data.arena.arenachoice.length>game.data.arena.dead.length;
|
|
|
|
|
},
|
|
|
|
|
direct:true,
|
|
|
|
|
delay:0,
|
|
|
|
|
preservecancel:true,
|
|
|
|
|
content:function(){
|
|
|
|
|
"step 0"
|
|
|
|
|
var list=game.data.arena.arenachoice.slice(0);
|
|
|
|
|
for(var i=0;i<game.data.arena.dead.length;i++){
|
|
|
|
|
list.remove(game.data.arena.dead[i]);
|
|
|
|
|
}
|
|
|
|
|
event.dialog=ui.create.dialog('选择一个出场武将',[list,'character']);
|
|
|
|
|
game.pause();
|
2015-11-09 03:15:16 +00:00
|
|
|
|
_status.imchoosing=true;
|
2015-10-27 07:56:42 +00:00
|
|
|
|
event.custom.replace.button=function(button){
|
|
|
|
|
event.choice=button.link;
|
|
|
|
|
game.resume();
|
|
|
|
|
}
|
|
|
|
|
event.custom.replace.confirm=game.resume;
|
2015-11-09 09:05:28 +00:00
|
|
|
|
event.switchToAuto=game.resume;
|
2015-10-27 07:56:42 +00:00
|
|
|
|
"step 1"
|
2015-11-09 03:15:16 +00:00
|
|
|
|
_status.imchoosing=false;
|
2015-10-27 07:56:42 +00:00
|
|
|
|
event.dialog.close();
|
|
|
|
|
if(event.choice){
|
|
|
|
|
var name=event.choice;
|
|
|
|
|
game.addChessPlayer(name);
|
|
|
|
|
game.data.arena.dead.push(name);
|
|
|
|
|
game.saveData();
|
|
|
|
|
if(!_status.arenaAdd){
|
|
|
|
|
_status.arenaAdd=[];
|
|
|
|
|
}
|
|
|
|
|
_status.arenaAdd.push(name);
|
2015-11-09 03:15:16 +00:00
|
|
|
|
game.delay();
|
2015-10-27 07:56:42 +00:00
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
player.getStat('skill').arenaAdd--;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
2015-10-20 17:44:00 +00:00
|
|
|
|
leader_zhaoxiang:{
|
|
|
|
|
unique:true,
|
|
|
|
|
enable:'phaseUse',
|
|
|
|
|
usable:1,
|
|
|
|
|
promptfunc:function(event,player){
|
|
|
|
|
var targets=[];
|
|
|
|
|
var skill=lib.skill.leader_zhaoxiang;
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(!game.data.character.contains(game.players[i].name)&&game.players[i].side!=player.side){
|
|
|
|
|
targets.push(game.players[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
var str=lib.translate.leader_zhaoxiang_info;
|
|
|
|
|
if(targets.length){
|
|
|
|
|
str='<p style="text-align:center;line-height:20px;margin-top:0">⚑ '+game.data.dust+
|
|
|
|
|
'</p><p style="text-align:center;line-height:20px;margin-top:8px">'
|
|
|
|
|
for(var i=0;i<targets.length;i++){
|
|
|
|
|
str+='<span style="width:120px;display:inline-block;text-align:right">'+get.translation(targets[i])+
|
|
|
|
|
':</span><span style="width:120px;display:inline-block;text-align:left">'+
|
|
|
|
|
(skill.chance(targets[i],player)*100).toFixed(2)+'%</span><br>';
|
|
|
|
|
}
|
|
|
|
|
str+='</p>'
|
|
|
|
|
}
|
|
|
|
|
return str;
|
|
|
|
|
},
|
|
|
|
|
chance:function(target,player){
|
|
|
|
|
var chance;
|
2016-08-12 08:26:31 +00:00
|
|
|
|
var renyi=player.hasSkill('leader_renyi');
|
2015-10-20 17:44:00 +00:00
|
|
|
|
switch(target.hp){
|
|
|
|
|
case 1:chance=0.7;break;
|
|
|
|
|
case 2:chance=0.4;break;
|
|
|
|
|
default:chance=0.2;break;
|
|
|
|
|
}
|
|
|
|
|
switch(target.num('he')){
|
|
|
|
|
case 0:break;
|
|
|
|
|
case 1:chance/=1.2;break;
|
|
|
|
|
case 2:chance/=1.4;break;
|
|
|
|
|
case 3:chance/=1.7;break;
|
|
|
|
|
default:chance/=2;break;
|
|
|
|
|
}
|
|
|
|
|
switch(game.getRarity(target.name)){
|
|
|
|
|
case 'common':{
|
|
|
|
|
if(renyi) chance*=2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'rare':{
|
|
|
|
|
chance/=2;
|
|
|
|
|
if(renyi) chance*=2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'epic':{
|
|
|
|
|
chance/=5;
|
|
|
|
|
if(renyi) chance*=1.5;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'legend':{
|
|
|
|
|
chance/=15;
|
|
|
|
|
if(renyi) chance*=1.2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return Math.min(1,chance);
|
|
|
|
|
},
|
|
|
|
|
filter:function(){
|
|
|
|
|
return game.data.dust>=10;
|
|
|
|
|
},
|
|
|
|
|
filterTarget:function(card,player,target){
|
|
|
|
|
return game.isChessNeighbour(player,target)&&!game.data.character.contains(target.name);
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
var chance=lib.skill.leader_zhaoxiang.chance(target,player);
|
|
|
|
|
game.changeDust(-10);
|
|
|
|
|
if(Math.random()<chance){
|
|
|
|
|
_status.zhaoxiang=target.name;
|
|
|
|
|
game.data.character.add(target.name);
|
|
|
|
|
game.saveData();
|
|
|
|
|
game.over();
|
|
|
|
|
}
|
|
|
|
|
else{
|
2015-12-08 13:54:44 +00:00
|
|
|
|
game.log('招降',target,'失败')
|
2015-10-20 17:44:00 +00:00
|
|
|
|
player.popup('招降失败');
|
|
|
|
|
player.damage(target);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
leader_xiaoxiong:{
|
|
|
|
|
unique:true,
|
|
|
|
|
forced:true,
|
|
|
|
|
trigger:{source:'damageEnd'},
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
return event.num>0;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
switch(_status.difficulty){
|
|
|
|
|
case 'leader_easy':game.reward+=2*trigger.num;break;
|
|
|
|
|
case 'leader_medium':game.reward+=4*trigger.num;break;
|
|
|
|
|
case 'leader_hard':game.reward+=6*trigger.num;break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
leader_renyi:{
|
|
|
|
|
unique:true,
|
|
|
|
|
},
|
|
|
|
|
leader_mouduan:{
|
|
|
|
|
unique:true,
|
|
|
|
|
global:'leader_mouduan2'
|
|
|
|
|
},
|
|
|
|
|
leader_mouduan2:{
|
|
|
|
|
mod:{
|
|
|
|
|
chessMove:function(player,current){
|
|
|
|
|
if(player.side&&player.name!=_status.lord) return current+1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
tongshuai:{
|
|
|
|
|
unique:true,
|
|
|
|
|
forbid:['guozhan'],
|
|
|
|
|
init:function(player){
|
|
|
|
|
player.storage.tongshuai={
|
|
|
|
|
list:[],
|
|
|
|
|
owned:{},
|
|
|
|
|
player:player,
|
|
|
|
|
get:function(num){
|
|
|
|
|
if(typeof num!='number') num=1;
|
|
|
|
|
var player=this.player;
|
|
|
|
|
while(num--){
|
|
|
|
|
var name=player.storage.tongshuai.unowned.shift();
|
|
|
|
|
if(!name) return;
|
|
|
|
|
var skills=lib.character[name][3].slice(0);
|
|
|
|
|
for(var i=0;i<skills.length;i++){
|
|
|
|
|
var info=lib.skill[skills[i]];
|
|
|
|
|
if(info.unique&&!info.gainable){
|
|
|
|
|
skills.splice(i--,1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
player.storage.tongshuai.owned[name]=skills;
|
2015-11-05 02:34:35 +00:00
|
|
|
|
game.addVideo('chess_tongshuai',player,player.storage.tongshuai.owned);
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
group:['tongshuai1','tongshuai2','tongshuai3'],
|
|
|
|
|
intro:{
|
|
|
|
|
content:function(storage,player){
|
|
|
|
|
var str='';
|
|
|
|
|
var slist=storage.owned;
|
|
|
|
|
var list=[];
|
|
|
|
|
for(var i in slist){
|
|
|
|
|
list.push(i);
|
|
|
|
|
}
|
|
|
|
|
if(list.length){
|
|
|
|
|
str+=get.translation(list[0]);
|
|
|
|
|
for(var i=1;i<list.length;i++){
|
|
|
|
|
str+='、'+get.translation(list[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-11 11:52:17 +00:00
|
|
|
|
var skill=player.additionalSkills.tongshuai[0];
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(skill){
|
|
|
|
|
str+='<p>当前技能:'+get.translation(skill);
|
|
|
|
|
}
|
|
|
|
|
return str;
|
|
|
|
|
},
|
|
|
|
|
mark:function(dialog,content,player){
|
|
|
|
|
var slist=content.owned;
|
|
|
|
|
var list=[];
|
|
|
|
|
for(var i in slist){
|
|
|
|
|
list.push(i);
|
|
|
|
|
}
|
|
|
|
|
if(list.length){
|
|
|
|
|
dialog.addSmall([list,'character']);
|
|
|
|
|
}
|
2016-08-11 11:52:17 +00:00
|
|
|
|
var skill=player.additionalSkills.tongshuai[0];
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(skill){
|
|
|
|
|
dialog.add('<div><div class="skill">【'+get.translation(skill)+
|
|
|
|
|
'】</div><div>'+lib.translate[skill+'_info']+'</div></div>');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-11-05 02:34:35 +00:00
|
|
|
|
// mark:true
|
2015-10-20 17:44:00 +00:00
|
|
|
|
},
|
|
|
|
|
tongshuai1:{
|
|
|
|
|
trigger:{global:'gameStart'},
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
priority:10,
|
|
|
|
|
content:function(){
|
|
|
|
|
for(var i=0;i<game.data.character.length;i++){
|
|
|
|
|
var skills=lib.character[game.data.character[i]][3]
|
|
|
|
|
var add=false;
|
|
|
|
|
for(var j=0;j<skills.length;j++){
|
|
|
|
|
var info=lib.skill[skills[j]];
|
|
|
|
|
if(info.gainable||!info.unique){
|
|
|
|
|
add=true;break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(add){
|
|
|
|
|
player.storage.tongshuai.list.push(game.data.character[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
player.storage.tongshuai.list.remove([game.players[i].name]);
|
|
|
|
|
player.storage.tongshuai.list.remove([game.players[i].name1]);
|
|
|
|
|
player.storage.tongshuai.list.remove([game.players[i].name2]);
|
|
|
|
|
}
|
|
|
|
|
player.storage.tongshuai.unowned=player.storage.tongshuai.list.slice(0);
|
|
|
|
|
player.storage.tongshuai.unowned.sort(lib.sort.random);
|
|
|
|
|
if(player.storage.tongshuai.unowned.length>1){
|
|
|
|
|
player.storage.tongshuai.get(2);
|
|
|
|
|
}
|
|
|
|
|
else if(player.storage.tongshuai.unowned.length==1){
|
|
|
|
|
player.storage.tongshuai.get();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
player.removeSkill('tongshuai');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
tongshuai2:{
|
|
|
|
|
audio:2,
|
|
|
|
|
trigger:{player:['phaseBegin','phaseEnd'],global:'gameStart'},
|
|
|
|
|
filter:function(event,player,name){
|
2016-08-12 08:26:31 +00:00
|
|
|
|
if(!player.hasSkill('tongshuai')) return false;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
if(name=='phaseBegin'&&game.phaseNumber==1) return false;
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
priority:-9,
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
content:function(){
|
|
|
|
|
var slist=player.storage.tongshuai.owned;
|
|
|
|
|
var list=[];
|
|
|
|
|
for(var i in slist){
|
|
|
|
|
list.push(i);
|
|
|
|
|
}
|
|
|
|
|
if(event.isMine()){
|
|
|
|
|
event.dialog=ui.create.dialog('选择获得一项技能',[list,'character']);
|
|
|
|
|
if(trigger.name=='game'){
|
|
|
|
|
event.control=ui.create.control();
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.control=ui.create.control(['cancel']);
|
|
|
|
|
}
|
|
|
|
|
event.clickControl=function(link){
|
|
|
|
|
if(link!='cancel'){
|
|
|
|
|
var currentname=event.dialog.querySelector('.selected.button').link;
|
|
|
|
|
var mark=player.marks.tongshuai;
|
2015-11-05 02:34:35 +00:00
|
|
|
|
if(!mark){
|
|
|
|
|
player.markSkill('tongshuai');
|
|
|
|
|
mark=player.marks.tongshuai;
|
|
|
|
|
if(mark.firstChild){
|
|
|
|
|
mark.firstChild.remove();
|
|
|
|
|
}
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
2015-11-05 02:34:35 +00:00
|
|
|
|
mark.setBackground(currentname,'character');
|
2015-10-20 17:44:00 +00:00
|
|
|
|
|
2016-08-11 11:52:17 +00:00
|
|
|
|
player.addAdditionalSkill('tongshuai',link);
|
2015-11-05 02:34:35 +00:00
|
|
|
|
game.addVideo('chess_tongshuai_skill',player,[currentname,link]);
|
2015-10-20 17:44:00 +00:00
|
|
|
|
player.logSkill('tongshuai2');
|
2015-12-08 13:54:44 +00:00
|
|
|
|
game.log(player,'获得技能','【'+get.translation(link)+'】');
|
2015-10-20 17:44:00 +00:00
|
|
|
|
player.popup(link);
|
|
|
|
|
|
|
|
|
|
for(var i=0;i<event.dialog.buttons.length;i++){
|
|
|
|
|
if(event.dialog.buttons[i].classList.contains('selected')){
|
|
|
|
|
var name=event.dialog.buttons[i].link;
|
|
|
|
|
player.sex=lib.character[name][0];
|
|
|
|
|
player.group=lib.character[name][1];
|
|
|
|
|
// player.node.identity.style.backgroundColor=get.translation(player.group+'Color');
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ui.auto.show();
|
|
|
|
|
event.dialog.close();
|
|
|
|
|
event.control.close();
|
2015-11-05 02:34:35 +00:00
|
|
|
|
_status.imchoosing=false;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
game.resume();
|
|
|
|
|
};
|
|
|
|
|
event.control.custom=event.clickControl;
|
|
|
|
|
ui.auto.hide();
|
2015-11-05 02:34:35 +00:00
|
|
|
|
_status.imchoosing=true;
|
2015-10-20 17:44:00 +00:00
|
|
|
|
game.pause();
|
|
|
|
|
for(var i=0;i<event.dialog.buttons.length;i++){
|
|
|
|
|
event.dialog.buttons[i].classList.add('selectable');
|
|
|
|
|
}
|
|
|
|
|
event.custom.replace.button=function(button){
|
|
|
|
|
if(button.classList.contains('selected')){
|
|
|
|
|
button.classList.remove('selected');
|
|
|
|
|
if(trigger.name=='game'){
|
|
|
|
|
event.control.style.opacity=0;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.control.replace(['cancel']);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
for(var i=0;i<event.dialog.buttons.length;i++){
|
|
|
|
|
event.dialog.buttons[i].classList.remove('selected');
|
|
|
|
|
}
|
|
|
|
|
button.classList.add('selected');
|
|
|
|
|
event.control.replace(slist[button.link]);
|
|
|
|
|
if(trigger.name=='game'&&getComputedStyle(event.control).opacity==0){
|
|
|
|
|
event.control.style.transition='opacity 0.5s';
|
|
|
|
|
ui.refresh(event.control);
|
|
|
|
|
event.control.style.opacity=1;
|
|
|
|
|
event.control.style.transition='';
|
|
|
|
|
ui.refresh(event.control);
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.control.style.opacity=1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
event.control.custom=event.clickControl;
|
|
|
|
|
}
|
|
|
|
|
event.custom.replace.window=function(){
|
|
|
|
|
for(var i=0;i<event.dialog.buttons.length;i++){
|
|
|
|
|
if(event.dialog.buttons[i].classList.contains('selected')){
|
|
|
|
|
event.dialog.buttons[i].classList.remove('selected');
|
|
|
|
|
if(trigger.name=='game'){
|
|
|
|
|
event.control.style.opacity=0;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.control.replace(['cancel']);
|
|
|
|
|
}
|
|
|
|
|
event.control.custom=event.clickControl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.finish();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
tongshuai3:{
|
|
|
|
|
unique:true,
|
|
|
|
|
trigger:{player:'phaseBegin'},
|
|
|
|
|
forced:true,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
return player.storage.tongshuai&&player.storage.tongshuai.unowned&&player.storage.tongshuai.unowned.length>0;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
player.storage.tongshuai.get();
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-05-13 10:26:54 +00:00
|
|
|
|
cangming:{
|
|
|
|
|
enable:'phaseUse',
|
|
|
|
|
usable:1,
|
|
|
|
|
unique:true,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
if(player.isTurnedOver()) return false;
|
|
|
|
|
var suits=[];
|
|
|
|
|
var hs=player.get('h');
|
|
|
|
|
for(var i=0;i<hs.length;i++){
|
|
|
|
|
suits.add(get.suit(hs[i]));
|
|
|
|
|
if(suits.length>=4) return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
filterCard:function(card){
|
|
|
|
|
var suit=get.suit(card);
|
|
|
|
|
for(var i=0;i<ui.selected.cards.length;i++){
|
|
|
|
|
if(suit==get.suit(ui.selected.cards[i])) return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
},
|
2017-02-10 06:05:14 +00:00
|
|
|
|
complexCard:true,
|
2015-05-13 10:26:54 +00:00
|
|
|
|
selectCard:4,
|
|
|
|
|
check:function(card){
|
|
|
|
|
return 10-ai.get.value(card);
|
|
|
|
|
},
|
|
|
|
|
filterTarget:function(card,player,target){
|
|
|
|
|
return player!=target;
|
|
|
|
|
},
|
|
|
|
|
selectTarget:-1,
|
|
|
|
|
content:function(){
|
|
|
|
|
target.goMad();
|
|
|
|
|
if(!player.isTurnedOver()){
|
|
|
|
|
player.turnOver();
|
|
|
|
|
}
|
|
|
|
|
player.addSkill('cangming2');
|
|
|
|
|
},
|
|
|
|
|
ai:{
|
|
|
|
|
order:10,
|
|
|
|
|
effect:{
|
|
|
|
|
player:function(card,player){
|
|
|
|
|
var num=0;
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(ai.get.attitude(player,game.players[i])<0){
|
|
|
|
|
num++;
|
|
|
|
|
if(num>1) break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(num<=1) return;
|
|
|
|
|
if(_status.currentPhase==player&&player.num('h')<player.hp&&player.hp>=6){
|
|
|
|
|
if(typeof card=='string') return;
|
|
|
|
|
if(card.name=='wuzhong') return;
|
|
|
|
|
if(card.name=='shunshou') return;
|
|
|
|
|
if(card.name=='yuanjiao') return;
|
|
|
|
|
if(card.name=='yiyi') return;
|
2016-08-12 08:26:31 +00:00
|
|
|
|
if(!player.hasSkill('cangming2')) return [0,0,0,0];
|
2015-05-13 10:26:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
result:{
|
2015-05-13 11:46:51 +00:00
|
|
|
|
target:function(player){
|
2015-05-13 10:38:41 +00:00
|
|
|
|
var num=0;
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(ai.get.attitude(player,game.players[i])<0){
|
|
|
|
|
num++;
|
|
|
|
|
if(num>1) break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(num<=1) return 0;
|
|
|
|
|
return -10;
|
|
|
|
|
}
|
2015-05-13 10:26:54 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
cangming2:{
|
|
|
|
|
trigger:{player:'phaseBegin'},
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
content:function(){
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
game.players[i].unMad();
|
|
|
|
|
}
|
|
|
|
|
player.removeSkill('cangming2');
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
boss_moyan:{
|
|
|
|
|
trigger:{player:'phaseEnd'},
|
|
|
|
|
forced:true,
|
|
|
|
|
unique:true,
|
|
|
|
|
content:function(){
|
|
|
|
|
"step 0"
|
|
|
|
|
event.players=get.players(player);
|
|
|
|
|
"step 1"
|
|
|
|
|
if(event.players.length){
|
|
|
|
|
event.players.shift().damage('fire');
|
|
|
|
|
event.redo();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
2016-01-24 08:34:21 +00:00
|
|
|
|
boss_stonebaolin:{
|
2015-05-13 10:26:54 +00:00
|
|
|
|
inherit:'juece',
|
|
|
|
|
},
|
2016-01-24 08:34:21 +00:00
|
|
|
|
boss_stoneqiangzheng:{
|
2015-05-13 10:26:54 +00:00
|
|
|
|
trigger:{player:'phaseEnd'},
|
|
|
|
|
forced:true,
|
|
|
|
|
unique:true,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i]!=player&&game.players[i].num('h')) return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
"step 0"
|
|
|
|
|
var players=get.players(player);
|
|
|
|
|
players.remove(player);
|
|
|
|
|
event.players=players;
|
2017-02-08 04:02:19 +00:00
|
|
|
|
player.line(players,'green');
|
2015-05-13 10:26:54 +00:00
|
|
|
|
"step 1"
|
|
|
|
|
if(event.players.length){
|
|
|
|
|
var current=event.players.shift();
|
|
|
|
|
var hs=current.get('h')
|
|
|
|
|
if(hs.length){
|
2017-02-08 04:02:19 +00:00
|
|
|
|
var card=hs.randomGet();
|
|
|
|
|
player.gain(card,current);
|
|
|
|
|
current.$giveAuto(card,player);
|
2015-05-13 10:26:54 +00:00
|
|
|
|
}
|
|
|
|
|
event.redo();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-05-10 05:34:37 +00:00
|
|
|
|
guanchuan:{
|
|
|
|
|
trigger:{player:'shaBefore'},
|
|
|
|
|
getTargets:function(player,target){
|
|
|
|
|
var targets=[];
|
|
|
|
|
var pxy=player.getXY();
|
|
|
|
|
var txy=target.getXY();
|
|
|
|
|
var dx=txy[0]-pxy[0];
|
|
|
|
|
var dy=txy[1]-pxy[1];
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i]!=player&&game.players[i]!=target){
|
|
|
|
|
var axy=game.players[i].getXY();
|
|
|
|
|
var dx2=axy[0]-pxy[0];
|
|
|
|
|
var dy2=axy[1]-pxy[1];
|
|
|
|
|
if(dx*dx2<0) continue;
|
|
|
|
|
if(dy*dy2<0) continue;
|
|
|
|
|
if(dx==0){
|
|
|
|
|
if(dx2==0){
|
|
|
|
|
targets.push(game.players[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(dx2!=0){
|
|
|
|
|
if(dy2/dx2==dy/dx){
|
|
|
|
|
targets.push(game.players[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return targets;
|
|
|
|
|
},
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
if(event.targets.length!=1) return false;
|
|
|
|
|
return lib.skill.guanchuan.getTargets(player,event.targets[0]).length>0;
|
|
|
|
|
},
|
|
|
|
|
check:function(event,player){
|
|
|
|
|
var targets=lib.skill.guanchuan.getTargets(player,event.targets[0]);
|
|
|
|
|
var eff=0;
|
|
|
|
|
for(var i=0;i<targets.length;i++){
|
|
|
|
|
eff+=ai.get.effect(targets[i],event.card,player,player);
|
|
|
|
|
}
|
|
|
|
|
return eff>0;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
var targets=lib.skill.guanchuan.getTargets(player,trigger.targets[0]);
|
|
|
|
|
for(var i=0;i<targets.length;i++){
|
|
|
|
|
trigger.targets.push(targets[i]);
|
|
|
|
|
}
|
|
|
|
|
player.logSkill('guanchuan',targets);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
sanjiansheji:{
|
|
|
|
|
enable:'phaseUse',
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
return player.num('h','sha')>1&&lib.filter.filterCard({name:'sha'},player);
|
|
|
|
|
},
|
|
|
|
|
filterCard:{name:'sha'},
|
|
|
|
|
selectCard:2,
|
|
|
|
|
check:function(card){
|
|
|
|
|
var num=0;
|
|
|
|
|
var player=_status.event.player;
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(lib.filter.targetEnabled({name:'sha'},player,game.players[i])&&
|
|
|
|
|
ai.get.effect(game.players[i],{name:'sha'},player)>0){
|
|
|
|
|
num++;
|
|
|
|
|
if(num>1) return 8-ai.get.value(card);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
},
|
|
|
|
|
selectTarget:[1,Infinity],
|
|
|
|
|
discard:false,
|
2017-01-14 04:56:52 +00:00
|
|
|
|
prepare:'throw',
|
2015-05-10 05:34:37 +00:00
|
|
|
|
filterTarget:function(card,player,target){
|
|
|
|
|
return lib.filter.targetEnabled({name:'sha'},player,target)&&
|
|
|
|
|
get.distance(player,target,'pure')<=5;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
targets.sort(lib.sort.seat);
|
|
|
|
|
player.useCard({name:'sha'},cards,targets,'luanjian').animate=false;
|
|
|
|
|
},
|
|
|
|
|
multitarget:true,
|
|
|
|
|
ai:{
|
|
|
|
|
order:function(){
|
|
|
|
|
return lib.card.sha.ai.order+0.1;
|
|
|
|
|
},
|
|
|
|
|
result:{
|
|
|
|
|
target:function(player,target){
|
|
|
|
|
var added=false;
|
2016-08-12 08:26:31 +00:00
|
|
|
|
if(!player.hasSkill('unequip')){
|
2015-05-10 05:34:37 +00:00
|
|
|
|
added=true;
|
|
|
|
|
player.skills.push('unequip');
|
|
|
|
|
}
|
|
|
|
|
var eff=ai.get.effect(target,{name:'sha'},player,target);
|
|
|
|
|
if(added){
|
|
|
|
|
player.skills.remove('unequip');
|
|
|
|
|
}
|
|
|
|
|
return eff;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
effect:{
|
|
|
|
|
player:function(card,player){
|
|
|
|
|
if(_status.currentPhase!=player) return;
|
|
|
|
|
if(card.name=='sha'&&player.num('h','sha')<2&&player.num('h')<=player.hp){
|
|
|
|
|
var num=0;
|
|
|
|
|
var player=_status.event.player;
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(lib.filter.targetEnabled({name:'sha'},player,game.players[i])&&
|
|
|
|
|
ai.get.attitude(player,game.players[i])<0){
|
|
|
|
|
num++;
|
|
|
|
|
if(num>1) return [0,0,0,0];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
zhiming:{
|
|
|
|
|
trigger:{source:'damageBegin'},
|
|
|
|
|
filter:function(event,player){
|
2015-06-14 05:07:39 +00:00
|
|
|
|
return get.distance(event.player,player,'attack')>1&&event.card&&event.card.name=='sha';
|
2015-05-10 05:34:37 +00:00
|
|
|
|
},
|
|
|
|
|
forced:true,
|
|
|
|
|
content:function(){
|
|
|
|
|
trigger.num++;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
lianshe:{
|
|
|
|
|
mod:{
|
|
|
|
|
cardUsable:function(card,player,num){
|
|
|
|
|
if(card.name=='sha'){
|
|
|
|
|
return num+get.cardCount(true,player)-get.cardCount('sha',player);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-01-25 17:13:45 +00:00
|
|
|
|
trigger:{player:'useCard'},
|
|
|
|
|
frequent:true,
|
|
|
|
|
filter:function(event){
|
|
|
|
|
return event.card&&event.card.name=='sha';
|
|
|
|
|
},
|
|
|
|
|
usable:1,
|
|
|
|
|
content:function(){
|
|
|
|
|
player.draw();
|
|
|
|
|
},
|
|
|
|
|
ai:{
|
|
|
|
|
threaten:1.5
|
|
|
|
|
}
|
2015-05-10 05:34:37 +00:00
|
|
|
|
},
|
|
|
|
|
pianyi:{
|
|
|
|
|
trigger:{player:'phaseEnd'},
|
|
|
|
|
direct:true,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
return !player.getStat('damage');
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
"step 0"
|
2016-09-20 05:06:35 +00:00
|
|
|
|
player.chooseToMove(2,get.prompt('pianyi'));
|
2015-05-10 05:34:37 +00:00
|
|
|
|
"step 1"
|
|
|
|
|
if(result.bool){
|
|
|
|
|
player.logSkill('pianyi');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
lingdong:{
|
|
|
|
|
trigger:{player:'phaseEnd'},
|
|
|
|
|
direct:true,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
return get.cardCount('sha',player)>0;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
"step 0"
|
2016-09-20 05:06:35 +00:00
|
|
|
|
player.chooseToMove(get.cardCount('sha',player),get.prompt('lingdong'));
|
2015-05-10 05:34:37 +00:00
|
|
|
|
"step 1"
|
|
|
|
|
if(result.bool){
|
2015-05-10 08:47:21 +00:00
|
|
|
|
player.logSkill('lingdong');
|
2015-05-10 05:34:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-05-08 13:37:34 +00:00
|
|
|
|
_noactpunish:{
|
|
|
|
|
trigger:{player:'useCard'},
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
return _status.currentPhase==player&&event.targets&&(event.targets.length>1||event.targets[0]!=player);
|
|
|
|
|
},
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
content:function(){
|
|
|
|
|
player.addTempSkill('noactpunish','phaseAfter');
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
noactpunish:{},
|
2015-11-09 03:15:16 +00:00
|
|
|
|
_chess_chuzhang:{
|
|
|
|
|
enable:'phaseUse',
|
|
|
|
|
usable:1,
|
2015-11-09 09:05:28 +00:00
|
|
|
|
direct:true,
|
|
|
|
|
delay:false,
|
|
|
|
|
preservecancel:true,
|
2015-11-09 03:15:16 +00:00
|
|
|
|
filter:function(event,player){
|
|
|
|
|
var num=0;
|
|
|
|
|
var xy=player.getXY();
|
|
|
|
|
if(game.obstacles.contains(player.getNeighbour(-1,0))||xy[0]==0) num++;
|
|
|
|
|
if(game.obstacles.contains(player.getNeighbour(1,0))||xy[0]+1>=ui.chesswidth) num++;
|
|
|
|
|
if(game.obstacles.contains(player.getNeighbour(0,-1))||xy[1]==0) num++;
|
|
|
|
|
if(game.obstacles.contains(player.getNeighbour(0,1))||xy[1]+1>=ui.chessheight) num++;
|
|
|
|
|
return num>=3;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
'step 0'
|
|
|
|
|
event.obstacles=[];
|
|
|
|
|
var neighbour;
|
|
|
|
|
neighbour=player.getNeighbour(-1,0);
|
|
|
|
|
if(neighbour&&game.obstacles.contains(neighbour)){
|
|
|
|
|
event.obstacles.push(neighbour);
|
|
|
|
|
}
|
|
|
|
|
neighbour=player.getNeighbour(1,0);
|
|
|
|
|
if(neighbour&&game.obstacles.contains(neighbour)){
|
|
|
|
|
event.obstacles.push(neighbour);
|
|
|
|
|
}
|
|
|
|
|
neighbour=player.getNeighbour(0,-1);
|
|
|
|
|
if(neighbour&&game.obstacles.contains(neighbour)){
|
|
|
|
|
event.obstacles.push(neighbour);
|
|
|
|
|
}
|
|
|
|
|
neighbour=player.getNeighbour(0,1);
|
|
|
|
|
if(neighbour&&game.obstacles.contains(neighbour)){
|
|
|
|
|
event.obstacles.push(neighbour);
|
|
|
|
|
}
|
|
|
|
|
if(!event.obstacles.length){
|
|
|
|
|
event.finish();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else if(event.obstacles.length==1){
|
|
|
|
|
event.obstacle=event.obstacles[0];
|
|
|
|
|
}
|
|
|
|
|
else if(event.isMine()){
|
|
|
|
|
for(var i=0;i<event.obstacles.length;i++){
|
|
|
|
|
event.obstacles[i].classList.add('glow');
|
|
|
|
|
}
|
|
|
|
|
event.chooseObstacle=true;
|
|
|
|
|
game.pause();
|
|
|
|
|
_status.imchoosing=true;
|
|
|
|
|
event.dialog=ui.create.dialog('选择一个与你相邻的障碍清除之');
|
|
|
|
|
event.dialog.add('<div class="text">'+lib.translate._chess_chuzhang_info+'</div>');
|
2015-11-09 09:05:28 +00:00
|
|
|
|
event.custom.replace.confirm=function(){
|
|
|
|
|
player.getStat().skill._chess_chuzhang--;
|
|
|
|
|
event.cancelled=true;
|
|
|
|
|
game.resume();
|
|
|
|
|
};
|
2015-11-09 03:15:16 +00:00
|
|
|
|
}
|
|
|
|
|
'step 1'
|
|
|
|
|
_status.imchoosing=false;
|
2015-11-09 09:05:28 +00:00
|
|
|
|
if(!event.cancelled){
|
|
|
|
|
if(!event.obstacle){
|
|
|
|
|
event.obstacle=event.obstacles.randomGet();
|
|
|
|
|
}
|
|
|
|
|
game.removeObstacle(event.obstacle.dataset.position);
|
2015-11-09 03:15:16 +00:00
|
|
|
|
}
|
|
|
|
|
for(var i=0;i<event.obstacles.length;i++){
|
|
|
|
|
event.obstacles[i].classList.remove('glow');
|
|
|
|
|
}
|
|
|
|
|
if(event.dialog){
|
|
|
|
|
event.dialog.close();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
ai:{
|
|
|
|
|
result:{
|
|
|
|
|
player:1
|
|
|
|
|
},
|
|
|
|
|
order:7.5
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
_phasequeue:{
|
|
|
|
|
trigger:{player:'phaseBegin'},
|
|
|
|
|
forced:true,
|
|
|
|
|
popup:false,
|
|
|
|
|
content:function(){
|
|
|
|
|
var current=ui.chessinfo.querySelector('.glow2');
|
|
|
|
|
if(current){
|
|
|
|
|
current.classList.remove('glow2');
|
|
|
|
|
}
|
2016-04-23 09:34:40 +00:00
|
|
|
|
if(player.instance){
|
|
|
|
|
player.instance.classList.add('glow2');
|
|
|
|
|
ui.chessinfo.scrollTop=player.instance.offsetTop-8;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
_chessmove:{
|
|
|
|
|
enable:'phaseUse',
|
|
|
|
|
usable:1,
|
|
|
|
|
direct:true,
|
|
|
|
|
delay:false,
|
2015-05-10 05:34:37 +00:00
|
|
|
|
preservecancel:true,
|
2015-05-13 10:26:54 +00:00
|
|
|
|
filter:function(event,player){
|
2015-10-08 06:16:37 +00:00
|
|
|
|
if(!player.movable(0,1)&&!player.movable(0,-1)&&
|
|
|
|
|
!player.movable(1,0)&&!player.movable(-1,0)){
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-11-09 17:04:18 +00:00
|
|
|
|
var move=2;
|
2015-05-13 10:26:54 +00:00
|
|
|
|
move=game.checkMod(player,move,'chessMove',player.get('s'));
|
|
|
|
|
return move>0;
|
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
content:function(){
|
2015-05-08 13:37:34 +00:00
|
|
|
|
"step 0"
|
2015-11-09 17:04:18 +00:00
|
|
|
|
var move=2;
|
2015-05-10 05:34:37 +00:00
|
|
|
|
move=game.checkMod(player,move,'chessMove',player.get('s'));
|
|
|
|
|
player.chooseToMove(move).phasing=true;
|
2015-05-08 13:37:34 +00:00
|
|
|
|
"step 1"
|
2015-05-10 05:34:37 +00:00
|
|
|
|
if(!result.bool){
|
2015-10-08 06:16:37 +00:00
|
|
|
|
var skill=player.getStat().skill;
|
|
|
|
|
skill._chessmove--;
|
|
|
|
|
if(typeof skill._chessmovetried=='number'){
|
|
|
|
|
skill._chessmovetried++;
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
skill._chessmovetried=1;
|
|
|
|
|
}
|
2015-05-08 13:37:34 +00:00
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
},
|
|
|
|
|
ai:{
|
|
|
|
|
order:5,
|
|
|
|
|
result:{
|
2015-05-13 10:26:54 +00:00
|
|
|
|
playerx:function(player){
|
2016-08-15 16:45:42 +00:00
|
|
|
|
if(get.mode()=='tafang'&&_status.enemies.contains(player)){
|
2015-11-13 01:43:16 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
var nh=player.num('h');
|
|
|
|
|
if(!player.num('h','sha')&&
|
|
|
|
|
!player.num('h','shunshou')&&
|
2015-05-08 13:37:34 +00:00
|
|
|
|
!player.num('h','bingliang')){
|
|
|
|
|
if(nh<=Math.min(3,player.hp)) return Math.random()-0.3;
|
|
|
|
|
else if(nh<=Math.min(2,player.hp)) return Math.random()-0.4;
|
|
|
|
|
return Math.random()-0.5;
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
var neighbour;
|
|
|
|
|
neighbour=player.getNeighbour(0,1);
|
2015-11-09 03:15:16 +00:00
|
|
|
|
if(neighbour&&game.players.contains(neighbour)&&neighbour.side!=player.side){
|
2015-05-13 10:26:54 +00:00
|
|
|
|
if(get.distance(player,neighbour,'attack')<1) return 1;
|
|
|
|
|
return 0;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
neighbour=player.getNeighbour(0,-1);
|
2015-11-09 03:15:16 +00:00
|
|
|
|
if(neighbour&&game.players.contains(neighbour)&&neighbour.side!=player.side){
|
2015-05-13 10:26:54 +00:00
|
|
|
|
if(get.distance(player,neighbour,'attack')<1) return 1;
|
|
|
|
|
return 0;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
neighbour=player.getNeighbour(1,0);
|
2015-11-09 03:15:16 +00:00
|
|
|
|
if(neighbour&&game.players.contains(neighbour)&&neighbour.side!=player.side){
|
2015-05-13 10:26:54 +00:00
|
|
|
|
if(get.distance(player,neighbour,'attack')<1) return 1;
|
|
|
|
|
return 0;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
neighbour=player.getNeighbour(-1,0);
|
2015-11-09 03:15:16 +00:00
|
|
|
|
if(neighbour&&game.players.contains(neighbour)&&neighbour.side!=player.side){
|
2015-05-13 10:26:54 +00:00
|
|
|
|
if(get.distance(player,neighbour,'attack')<1) return 1;
|
|
|
|
|
return 0;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
return 1;
|
2015-05-13 10:26:54 +00:00
|
|
|
|
},
|
|
|
|
|
player:function(player){
|
2015-10-08 06:16:37 +00:00
|
|
|
|
if(player.getStat().skill._chessmovetried>=10){
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2015-05-13 10:26:54 +00:00
|
|
|
|
var x=lib.skill._chessmove.ai.result.playerx(player);
|
|
|
|
|
if(player.isMad()) return -x;
|
|
|
|
|
return x;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
_chesscenter:{
|
|
|
|
|
trigger:{player:['phaseBegin','useCardBegin','useSkillBegin','respondBegin','damageBegin','loseHpBegin'],
|
|
|
|
|
target:'useCardToBegin'},
|
|
|
|
|
forced:true,
|
|
|
|
|
priority:100,
|
|
|
|
|
popup:false,
|
|
|
|
|
content:function(){
|
|
|
|
|
player.chessFocus();
|
|
|
|
|
},
|
|
|
|
|
},
|
2016-01-24 16:07:47 +00:00
|
|
|
|
boss_bfengxing:{
|
2015-05-13 10:26:54 +00:00
|
|
|
|
mod:{
|
|
|
|
|
chessMove:function(player,current){
|
|
|
|
|
return current+2;
|
|
|
|
|
},
|
|
|
|
|
attackFrom:function(from,to,current){
|
|
|
|
|
return current-2;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
trigger:{player:'phaseDrawBegin'},
|
|
|
|
|
forced:true,
|
|
|
|
|
content:function(){
|
|
|
|
|
trigger.num+=2;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
boss_chiyu:{
|
|
|
|
|
enable:'phaseUse',
|
|
|
|
|
usable:1,
|
|
|
|
|
filterCard:{color:'red'},
|
|
|
|
|
nodelay:true,
|
|
|
|
|
check:function(card){return 8-ai.get.value(card);},
|
|
|
|
|
filterTarget:function(card,player,target){
|
|
|
|
|
return get.distance(player,target)<=5&&player!=target;
|
|
|
|
|
},
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
return player.num('h',{color:'red'})>0;
|
|
|
|
|
},
|
|
|
|
|
selectTarget:-1,
|
|
|
|
|
content:function(){
|
|
|
|
|
target.damage('fire');
|
|
|
|
|
},
|
|
|
|
|
line:'fire',
|
|
|
|
|
ai:{
|
|
|
|
|
order:1,
|
|
|
|
|
result:{
|
|
|
|
|
target:function(player,target){
|
|
|
|
|
return ai.get.damageEffect(target,player,target,'fire');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
boss_tenglong:{
|
|
|
|
|
enable:'phaseUse',
|
|
|
|
|
usable:1,
|
|
|
|
|
position:'he',
|
|
|
|
|
filterCard:{type:'equip'},
|
|
|
|
|
init:function(player){
|
|
|
|
|
player.forcemin=true;
|
|
|
|
|
},
|
|
|
|
|
check:function(card){
|
|
|
|
|
var player=_status.currentPhase;
|
|
|
|
|
if(player.num('he',{subtype:get.subtype(card)})>1){
|
|
|
|
|
return 12-ai.get.equipValue(card);
|
|
|
|
|
}
|
|
|
|
|
return 8-ai.get.equipValue(card);
|
|
|
|
|
},
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
return player.num('he',{type:'equip'});
|
|
|
|
|
},
|
|
|
|
|
filterTarget:function(card,player,target){
|
|
|
|
|
return player!=target&&get.distance(player,target)<=2;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
target.damage(3,'fire');
|
|
|
|
|
},
|
|
|
|
|
ai:{
|
|
|
|
|
order:9,
|
|
|
|
|
result:{
|
|
|
|
|
target:function(player,target){
|
|
|
|
|
return ai.get.damageEffect(target,player,target,'fire');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
boss_wuying:{
|
|
|
|
|
mod:{
|
|
|
|
|
globalTo:function(from,to,distance){
|
|
|
|
|
return distance+2;
|
|
|
|
|
},
|
|
|
|
|
chessMove:function(player,current){
|
|
|
|
|
return current-1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
boss_wushang:{
|
|
|
|
|
trigger:{player:'phaseBegin'},
|
|
|
|
|
forced:true,
|
|
|
|
|
filter:function(event,player){
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i]!=player&&game.players[i].num('h')&&
|
|
|
|
|
get.distance(player,game.players[i])<=5){
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
"step 0"
|
|
|
|
|
var players=[];
|
|
|
|
|
for(var i=0;i<game.players.length;i++){
|
|
|
|
|
if(game.players[i]!=player&&game.players[i].num('h')&&
|
|
|
|
|
get.distance(player,game.players[i])<=5){
|
|
|
|
|
players.push(game.players[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
players.sort(lib.sort.seat);
|
|
|
|
|
event.players=players;
|
|
|
|
|
"step 1"
|
|
|
|
|
if(event.players.length){
|
|
|
|
|
event.current=event.players.shift();
|
2015-05-13 10:29:23 +00:00
|
|
|
|
event.current.chooseCard('神天并地:交给'+get.translation(player)+'一张手牌',true);
|
2015-05-13 10:26:54 +00:00
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.finish();
|
|
|
|
|
}
|
|
|
|
|
"step 2"
|
|
|
|
|
if(result.cards.length){
|
2017-01-13 18:51:13 +00:00
|
|
|
|
player.gain(result.cards,event.current);
|
2015-05-13 10:26:54 +00:00
|
|
|
|
event.current.$give(1,player);
|
|
|
|
|
event.goto(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
},
|
|
|
|
|
translate:{
|
2016-01-12 13:18:47 +00:00
|
|
|
|
zhu_config:'启用主将',
|
|
|
|
|
main_zhu_config:'启用副将',
|
|
|
|
|
noreplace_end_config:'无替补时结束',
|
|
|
|
|
reward_config:'杀敌摸牌',
|
|
|
|
|
punish_config:'杀死队友',
|
|
|
|
|
seat_order_config:'行动顺序',
|
|
|
|
|
battle_number_config:'对战人数',
|
|
|
|
|
replace_number_config:'替补人数',
|
|
|
|
|
first_less_config:'先手少摸牌',
|
|
|
|
|
single_control_config:'单人控制',
|
|
|
|
|
additional_player_config:'无尽模式',
|
|
|
|
|
choice_number_config:'无尽模式候选',
|
|
|
|
|
|
2015-05-08 08:07:38 +00:00
|
|
|
|
friend:'友',
|
|
|
|
|
enemy:'敌',
|
2015-11-09 03:15:16 +00:00
|
|
|
|
neutral:'中',
|
2015-05-08 08:07:38 +00:00
|
|
|
|
trueColor:"zhu",
|
|
|
|
|
falseColor:"wei",
|
|
|
|
|
_chessmove:'移动',
|
2015-12-09 05:29:35 +00:00
|
|
|
|
leader:'君主',
|
2015-10-13 11:15:02 +00:00
|
|
|
|
combat:'对阵',
|
2015-05-09 05:36:58 +00:00
|
|
|
|
chessscroll_speed_config:'边缘滚动速度',
|
|
|
|
|
chess_character_config:'战棋武将',
|
2015-05-10 05:34:37 +00:00
|
|
|
|
only_chess_character_config:'只用战棋武将',
|
2015-10-08 06:16:37 +00:00
|
|
|
|
chess_ordered_config:'指定行动顺序',
|
2015-10-13 11:15:02 +00:00
|
|
|
|
chess_mode_config:'游戏模式',
|
|
|
|
|
chess_leader_save_config:'选择历程',
|
|
|
|
|
chess_leader_clear_config:'清除进度',
|
|
|
|
|
save1:'一',
|
|
|
|
|
save2:'二',
|
|
|
|
|
save3:'三',
|
|
|
|
|
save4:'四',
|
|
|
|
|
save5:'五',
|
2015-05-09 05:36:58 +00:00
|
|
|
|
|
2015-10-20 17:44:00 +00:00
|
|
|
|
leader_2:' ',
|
|
|
|
|
leader_2_bg:'二',
|
|
|
|
|
leader_3:' ',
|
|
|
|
|
leader_3_bg:'三',
|
|
|
|
|
leader_5:' ',
|
|
|
|
|
leader_5_bg:'五',
|
|
|
|
|
leader_8:' ',
|
|
|
|
|
leader_8_bg:'八',
|
|
|
|
|
|
|
|
|
|
leader_easy:'简单',
|
|
|
|
|
leader_medium:'普通',
|
|
|
|
|
leader_hard:'困难',
|
|
|
|
|
|
2015-05-09 05:36:58 +00:00
|
|
|
|
chess_caocao:'曹操',
|
|
|
|
|
chess_xunyu:'荀彧',
|
|
|
|
|
chess_simayi:'司马懿',
|
|
|
|
|
chess_xiahoudun:'夏侯惇',
|
|
|
|
|
chess_dianwei:'典韦',
|
|
|
|
|
chess_xuzhu:'许褚',
|
|
|
|
|
chess_zhangliao:'张辽',
|
|
|
|
|
chess_jiaxu:'贾诩',
|
|
|
|
|
|
|
|
|
|
chess_liubei:'刘备',
|
|
|
|
|
chess_guanyu:'关羽',
|
|
|
|
|
chess_zhangfei:'张飞',
|
|
|
|
|
chess_zhaoyun:'赵云',
|
|
|
|
|
chess_machao:'马超',
|
|
|
|
|
chess_huangzhong:'黄忠',
|
|
|
|
|
chess_maliang:'马良',
|
|
|
|
|
chess_zhugeliang:'诸葛亮',
|
|
|
|
|
|
|
|
|
|
chess_sunquan:'孙权',
|
|
|
|
|
chess_zhouyu:'周瑜',
|
|
|
|
|
chess_lvmeng:'吕蒙',
|
|
|
|
|
chess_huanggai:'黄盖',
|
|
|
|
|
chess_lusu:'鲁肃',
|
|
|
|
|
chess_luxun:'陆逊',
|
|
|
|
|
chess_ganning:'甘宁',
|
|
|
|
|
chess_taishici:'太史慈',
|
|
|
|
|
|
|
|
|
|
chess_lvbu:'吕布',
|
|
|
|
|
chess_sunshangxiang:'孙尚香',
|
|
|
|
|
chess_diaochan:'貂蝉',
|
|
|
|
|
chess_huatuo:'华佗',
|
|
|
|
|
chess_zhangjiao:'张辽',
|
|
|
|
|
chess_menghuo:'孟获',
|
|
|
|
|
|
|
|
|
|
chess_dongzhuo:'董卓',
|
2015-05-13 10:26:54 +00:00
|
|
|
|
chess_xingtian:'刑天',
|
2015-05-09 05:36:58 +00:00
|
|
|
|
chess_jinchidiao:'金翅雕',
|
|
|
|
|
chess_beimingjukun:'北溟巨鲲',
|
|
|
|
|
chess_wuzhaojinlong:'五爪金龙',
|
2015-05-10 05:34:37 +00:00
|
|
|
|
|
2015-11-09 03:15:16 +00:00
|
|
|
|
treasure_dubiaoxianjing:'毒镖陷阱',
|
|
|
|
|
treasure_jiqishi:'集气石',
|
|
|
|
|
treasure_shenmidiaoxiang:'神秘雕像',
|
2016-01-07 09:29:44 +00:00
|
|
|
|
treasure_shenpanxianjing:'审判之刃',
|
2015-11-09 03:15:16 +00:00
|
|
|
|
treasure_shiyuansu:'石元素',
|
|
|
|
|
treasure_wuyashenxiang:'乌鸦神像',
|
|
|
|
|
|
|
|
|
|
dubiaoxianjing:'飞刃',
|
|
|
|
|
dubiaoxianjing_info:'距离两格体力值大于1的角色在回合结束后受到一点伤害,然后摸两张牌',
|
|
|
|
|
jiqishi:'集气',
|
|
|
|
|
jiqishi_info:'距离两格以内的已受伤角色在回合结束后回复一点体力,然后弃置两张牌',
|
|
|
|
|
shenmidiaoxiang:'秘咒',
|
|
|
|
|
shenmidiaoxiang_info:'距离三格以外的所有角色在回合结束后强制向此处移动一格',
|
|
|
|
|
shenpanxianjing:'审判',
|
|
|
|
|
shenpanxianjing_info:'在任意一名角色回合结束后,若没有其他角色手牌数比其多,随机弃置其一张手牌',
|
|
|
|
|
shiyuansu:'护体',
|
|
|
|
|
shiyuansu_info:'任意一名角色一次性受到不少于两点伤害后,使其获得一点护甲',
|
|
|
|
|
wuyashenxiang:'厄音',
|
2015-11-11 02:41:42 +00:00
|
|
|
|
wuyashenxiang_info:'距离3格以内的角色在其回合结束后,若体力值不大于1,令其回复一点体力,然后将牌堆中的一张延时锦囊牌置于其判定区',
|
2015-11-09 03:15:16 +00:00
|
|
|
|
|
2015-10-20 17:44:00 +00:00
|
|
|
|
leader_caocao:'曹操',
|
|
|
|
|
leader_liubei:'刘备',
|
|
|
|
|
leader_sunquan:'孙权',
|
|
|
|
|
leader_xiaoxiong:'枭雄',
|
|
|
|
|
leader_xiaoxiong_info:'你造成伤害后会得到一定数量的金钱奖励',
|
|
|
|
|
leader_renyi:'仁义',
|
|
|
|
|
leader_renyi_info:'你招降敌将的成功率大幅增加',
|
|
|
|
|
leader_mouduan:'谋断',
|
|
|
|
|
leader_mouduan_info:'其他友方角色回合内的行动范围+1',
|
|
|
|
|
|
|
|
|
|
tongshuai:'统率',
|
2017-02-06 03:27:52 +00:00
|
|
|
|
tongshuai_info:'准备阶段和结束阶段,你可以选择一名未上场的已方武将的一个技能作为你的技能',
|
2015-10-20 17:44:00 +00:00
|
|
|
|
leader_zhaoxiang:'招降',
|
|
|
|
|
leader_zhaoxiang_info:'出牌阶段限一次,你可以尝试对相邻敌方武将进行招降,若成功,你获得该武将并立即结束本局游戏,若失败,你受到一点伤害。每发动一次消耗10招募令',
|
|
|
|
|
|
|
|
|
|
common:'普通',
|
|
|
|
|
rare:'稀有',
|
|
|
|
|
epic:'史诗',
|
|
|
|
|
legend:'传说',
|
|
|
|
|
|
2015-11-09 03:15:16 +00:00
|
|
|
|
chess_shezhang:'设置障碍',
|
|
|
|
|
chess_shezhang_info:'在你的一个相邻位置设置障碍,摸一张牌',
|
|
|
|
|
chess_chuzhang:'清除障碍',
|
|
|
|
|
chess_chuzhang_info:'清除一个在你相邻位置的障碍,摸一张牌',
|
|
|
|
|
|
|
|
|
|
_chess_chuzhang:'除障',
|
|
|
|
|
_chess_chuzhang_info:'出牌阶段限一次,若你周围四格至少有三个为障碍或在边缘外,你可以选择清除其中一个障碍',
|
|
|
|
|
|
2015-10-27 07:56:42 +00:00
|
|
|
|
arenaAdd:'援军',
|
|
|
|
|
arenaAdd_info:'出牌阶段限一次,你可以令一名未出场的已方角色加入战场。战斗结束后,该角色无论是否存活均不能再次出场',
|
|
|
|
|
|
2015-05-10 05:34:37 +00:00
|
|
|
|
pianyi:'翩仪',
|
2017-02-06 03:27:52 +00:00
|
|
|
|
pianyi_info:'结束阶段,若你没有于本回合内造成伤害,你获得一次移动机会',
|
2017-01-12 14:50:54 +00:00
|
|
|
|
lingdong:'灵动',
|
2017-02-06 03:27:52 +00:00
|
|
|
|
lingdong_info:'结束阶段,你可以移动X个格,X为你回合内出杀的次数',
|
2017-01-12 14:50:54 +00:00
|
|
|
|
lianshe:'箭舞',
|
2017-01-25 17:13:45 +00:00
|
|
|
|
lianshe_info:'当你于一个回合中首次使用杀时,你可以摸一张牌;在你的回合内,每当你使用一张不是杀的牌,你可以额外使用一张杀',
|
2017-01-12 14:50:54 +00:00
|
|
|
|
zhiming:'穿杨',
|
2015-05-10 05:34:37 +00:00
|
|
|
|
zhiming_info:'锁定技,当你使用杀造成伤害时,若你不在目标的攻击范围内,此伤害+1',
|
2017-01-12 14:50:54 +00:00
|
|
|
|
sanjiansheji:'散箭',
|
2015-05-10 05:34:37 +00:00
|
|
|
|
sanjiansheji_info:'你可以将两张杀当杀使用,此杀可以指定距离你5格以内任意名目标',
|
2017-01-12 14:50:54 +00:00
|
|
|
|
guanchuan:'强弩',
|
2015-05-10 05:34:37 +00:00
|
|
|
|
guanchuan_info:'当你使用杀指定惟一的目标后,可将攻击射线内的其他角色也加入目标',
|
2015-05-13 10:26:54 +00:00
|
|
|
|
|
2016-01-24 08:34:21 +00:00
|
|
|
|
boss_stoneqiangzheng:'强征',
|
2017-02-06 03:27:52 +00:00
|
|
|
|
boss_stoneqiangzheng_info:'锁定技,结束阶段,你获得每个其他角色的一张手牌',
|
2016-01-24 08:34:21 +00:00
|
|
|
|
boss_stonebaolin:'暴凌',
|
2015-05-13 10:26:54 +00:00
|
|
|
|
boss_moyan:'魔焰',
|
2017-02-06 03:27:52 +00:00
|
|
|
|
boss_moyan_info:'锁定技,结束阶段,你对场上所有角色造成一点火焰伤害',
|
2015-05-13 10:26:54 +00:00
|
|
|
|
|
|
|
|
|
cangming:'颠动沧溟',
|
|
|
|
|
cangming_info:'出牌阶段限一次,你可弃置四张花色不同的手牌并将武将牌翻至背面,然后令所有其他角色进入混乱状态直到你的下一回合开始',
|
2016-01-24 16:07:47 +00:00
|
|
|
|
boss_bfengxing:'风行',
|
|
|
|
|
boss_bfengxing_info:'锁定技,你摸牌阶段摸牌数+2;你的攻击范围+2;你回合内的移动距离+2',
|
2015-05-13 10:26:54 +00:00
|
|
|
|
boss_chiyu:'炽羽',
|
|
|
|
|
boss_chiyu_info:'出牌阶段限一次,你可以弃置一张红色牌对距离5以内的所有其他角色造成一点火焰伤害',
|
|
|
|
|
boss_tenglong:'腾龙八齐',
|
|
|
|
|
boss_tenglong_info:'你没有装备区;出牌阶段限一次,你可以弃置一张装备牌对一名距离你2以内的其他角色造成3点火焰伤害',
|
|
|
|
|
boss_wushang:'神天并地',
|
2017-02-06 03:27:52 +00:00
|
|
|
|
boss_wushang_info:'锁定技,准备阶段,距离你5以内的所有其他角色需交给你一张手牌',
|
2015-05-13 10:26:54 +00:00
|
|
|
|
boss_wuying:'无影',
|
2017-02-06 08:19:53 +00:00
|
|
|
|
boss_wuying_info:'锁定技,你回合内的移动距离-1;你的防御距离+2',
|
2015-11-09 03:15:16 +00:00
|
|
|
|
|
|
|
|
|
mode_chess_character_config:'战棋模式',
|
|
|
|
|
mode_chess_card_config:'战棋模式',
|
2015-05-08 08:07:38 +00:00
|
|
|
|
},
|
|
|
|
|
ui:{
|
|
|
|
|
create:{
|
|
|
|
|
playergrid:function(player,x,y){
|
2015-11-13 09:12:47 +00:00
|
|
|
|
var pos=player.getDataPos(x,y);
|
2016-08-15 16:45:42 +00:00
|
|
|
|
if(get.mode()=='tafang'){
|
2015-11-13 09:12:47 +00:00
|
|
|
|
if(pos<ui.chesswidth) return false;
|
|
|
|
|
if(pos/ui.chesswidth>=ui.chessheight-1) return false;
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
var node=ui.create.div('.player.minskin.playergrid',player.parentNode);
|
|
|
|
|
node.link=player;
|
2015-11-13 09:12:47 +00:00
|
|
|
|
node.dataset.position=pos;
|
2015-05-08 08:07:38 +00:00
|
|
|
|
return node;
|
|
|
|
|
},
|
|
|
|
|
fakeme:function(){
|
|
|
|
|
if(ui.fakeme){
|
|
|
|
|
ui.fakeme.delete();
|
|
|
|
|
}
|
|
|
|
|
ui.fakeme=ui.create.div('.fakeme.avatar',ui.me);
|
|
|
|
|
ui.fakeme.style.backgroundImage=game.me.node.avatar.style.backgroundImage;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
click:{
|
2016-04-23 09:34:40 +00:00
|
|
|
|
chessInfo:function(e){
|
|
|
|
|
if(this.link.isAlive()){
|
|
|
|
|
this.link.chessFocus();
|
|
|
|
|
if(this.link.classList.contains('selectable')||
|
|
|
|
|
this.link.classList.contains('selected')){
|
|
|
|
|
ui.click.target.call(this.link,e);
|
|
|
|
|
ui.click.window.call(ui.window,e);
|
|
|
|
|
}
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
playergrid:function(){
|
|
|
|
|
if(!_status.paused) return;
|
2015-11-13 09:12:47 +00:00
|
|
|
|
var pos=parseInt(this.dataset.position);
|
|
|
|
|
this.link.moveTo(pos%ui.chesswidth,Math.floor(pos/ui.chesswidth));
|
2015-05-08 08:07:38 +00:00
|
|
|
|
if(ui.movegrids){
|
|
|
|
|
while(ui.movegrids.length){
|
|
|
|
|
ui.movegrids.shift().delete();
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-10 05:34:37 +00:00
|
|
|
|
_status.event.result={
|
|
|
|
|
bool:true,
|
|
|
|
|
move:this.link.dataset.position
|
|
|
|
|
};
|
2015-05-08 08:07:38 +00:00
|
|
|
|
game.resume();
|
2015-11-09 03:15:16 +00:00
|
|
|
|
},
|
|
|
|
|
obstacle:function(){
|
|
|
|
|
if(_status.event.chooseObstacle&&_status.paused&&
|
|
|
|
|
_status.event.obstacles&&_status.event.obstacles.contains(this)){
|
|
|
|
|
_status.event.obstacle=this;
|
|
|
|
|
game.resume();
|
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-11-09 03:15:16 +00:00
|
|
|
|
get:{
|
|
|
|
|
chessDistance:function(from,to){
|
|
|
|
|
var fxy=from.getXY();
|
|
|
|
|
var txy=to.getXY();
|
|
|
|
|
return Math.abs(fxy[0]-txy[0])+Math.abs(fxy[1]-txy[1]);
|
|
|
|
|
},
|
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
ai:{
|
|
|
|
|
get:{
|
2016-10-16 04:39:35 +00:00
|
|
|
|
rawAttitude:function(from,to){
|
|
|
|
|
return (from.side===to.side?6:-6);
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-10-20 17:44:00 +00:00
|
|
|
|
card:{
|
2015-11-09 03:15:16 +00:00
|
|
|
|
chess_shezhang:{
|
|
|
|
|
type:'basic',
|
|
|
|
|
fullskin:true,
|
2017-01-12 14:50:54 +00:00
|
|
|
|
modeimage:'chess',
|
2015-11-09 03:15:16 +00:00
|
|
|
|
enable:function(card,player){
|
|
|
|
|
if(player.movable(-1,0)) return true;
|
|
|
|
|
if(player.movable(1,0)) return true;
|
|
|
|
|
if(player.movable(0,-1)) return true;
|
|
|
|
|
if(player.movable(0,1)) return true;
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
filterTarget:function(card,player,target){
|
|
|
|
|
return player==target;
|
|
|
|
|
},
|
|
|
|
|
selectTarget:-1,
|
|
|
|
|
content:function(){
|
|
|
|
|
'step 0'
|
|
|
|
|
var pos=parseInt(player.dataset.position);
|
|
|
|
|
var poses=[];
|
|
|
|
|
if(player.movable(-1,0)){
|
|
|
|
|
poses.push(pos-1);
|
|
|
|
|
}
|
|
|
|
|
if(player.movable(1,0)){
|
|
|
|
|
poses.push(pos+1);
|
|
|
|
|
}
|
|
|
|
|
if(player.movable(0,-1)){
|
|
|
|
|
poses.push(pos-ui.chesswidth);
|
|
|
|
|
}
|
|
|
|
|
if(player.movable(0,1)){
|
|
|
|
|
poses.push(pos+ui.chesswidth);
|
|
|
|
|
}
|
|
|
|
|
event.poses=poses;
|
|
|
|
|
if(poses.length==1){
|
|
|
|
|
event.obstacle=poses[0];
|
|
|
|
|
event.grids=[];
|
|
|
|
|
}
|
|
|
|
|
else if(event.isMine()){
|
|
|
|
|
event.grids=player.createRangeShadow(1,function(){
|
|
|
|
|
event.obstacle=this.dataset.position;
|
|
|
|
|
game.resume();
|
|
|
|
|
})
|
|
|
|
|
game.pause();
|
|
|
|
|
_status.imchoosing=true;
|
|
|
|
|
for(var i=0;i<event.grids.length;i++){
|
|
|
|
|
event.grids[i].animate('start');
|
|
|
|
|
}
|
|
|
|
|
event.dialog=ui.create.dialog('选择一个位置放置障碍');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
event.grids=[];
|
|
|
|
|
}
|
|
|
|
|
'step 1'
|
|
|
|
|
_status.imchoosing=false;
|
|
|
|
|
if(!event.obstacle){
|
|
|
|
|
event.obstacle=event.poses.randomGet();
|
|
|
|
|
}
|
|
|
|
|
if(event.obstacle){
|
|
|
|
|
game.addObstacle(event.obstacle.toString());
|
|
|
|
|
}
|
|
|
|
|
while(event.grids.length){
|
|
|
|
|
event.grids.shift().delete();
|
|
|
|
|
}
|
|
|
|
|
if(event.dialog){
|
|
|
|
|
event.dialog.close();
|
|
|
|
|
}
|
|
|
|
|
player.draw();
|
|
|
|
|
},
|
|
|
|
|
ai:{
|
|
|
|
|
result:{
|
|
|
|
|
player:1,
|
|
|
|
|
},
|
|
|
|
|
order:1
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
chess_chuzhang:{
|
|
|
|
|
type:'basic',
|
|
|
|
|
fullskin:true,
|
2017-01-12 14:50:54 +00:00
|
|
|
|
modeimage:'chess',
|
2015-11-09 03:15:16 +00:00
|
|
|
|
filterTarget:function(card,player,target){
|
|
|
|
|
return player==target;
|
|
|
|
|
},
|
|
|
|
|
selectTarget:-1,
|
|
|
|
|
enable:function(event,player){
|
|
|
|
|
if(game.obstacles.contains(player.getNeighbour(-1,0))) return true;
|
|
|
|
|
if(game.obstacles.contains(player.getNeighbour(1,0))) return true;
|
|
|
|
|
if(game.obstacles.contains(player.getNeighbour(0,-1))) return true;
|
|
|
|
|
if(game.obstacles.contains(player.getNeighbour(0,1))) return true;
|
|
|
|
|
},
|
|
|
|
|
content:function(){
|
|
|
|
|
'step 0'
|
|
|
|
|
event.obstacles=[];
|
|
|
|
|
var neighbour;
|
|
|
|
|
neighbour=player.getNeighbour(-1,0);
|
|
|
|
|
if(neighbour&&game.obstacles.contains(neighbour)){
|
|
|
|
|
event.obstacles.push(neighbour);
|
|
|
|
|
}
|
|
|
|
|
neighbour=player.getNeighbour(1,0);
|
|
|
|
|
if(neighbour&&game.obstacles.contains(neighbour)){
|
|
|
|
|
event.obstacles.push(neighbour);
|
|
|
|
|
}
|
|
|
|
|
neighbour=player.getNeighbour(0,-1);
|
|
|
|
|
if(neighbour&&game.obstacles.contains(neighbour)){
|
|
|
|
|
event.obstacles.push(neighbour);
|
|
|
|
|
}
|
|
|
|
|
neighbour=player.getNeighbour(0,1);
|
|
|
|
|
if(neighbour&&game.obstacles.contains(neighbour)){
|
|
|
|
|
event.obstacles.push(neighbour);
|
|
|
|
|
}
|
|
|
|
|
if(!event.obstacles.length){
|
|
|
|
|
event.finish();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else if(event.obstacles.length==1){
|
|
|
|
|
event.obstacle=event.obstacles[0];
|
|
|
|
|
}
|
|
|
|
|
else if(event.isMine()){
|
|
|
|
|
for(var i=0;i<event.obstacles.length;i++){
|
|
|
|
|
event.obstacles[i].classList.add('glow');
|
|
|
|
|
}
|
|
|
|
|
event.chooseObstacle=true;
|
|
|
|
|
game.pause();
|
|
|
|
|
_status.imchoosing=true;
|
|
|
|
|
event.dialog=ui.create.dialog('选择一个与你相邻的障碍清除之');
|
|
|
|
|
}
|
|
|
|
|
'step 1'
|
|
|
|
|
_status.imchoosing=false;
|
|
|
|
|
if(!event.obstacle){
|
|
|
|
|
event.obstacle=event.obstacles.randomGet();
|
|
|
|
|
}
|
|
|
|
|
game.removeObstacle(event.obstacle.dataset.position);
|
|
|
|
|
for(var i=0;i<event.obstacles.length;i++){
|
|
|
|
|
event.obstacles[i].classList.remove('glow');
|
|
|
|
|
}
|
|
|
|
|
if(event.dialog){
|
|
|
|
|
event.dialog.close();
|
|
|
|
|
}
|
|
|
|
|
player.draw();
|
|
|
|
|
},
|
|
|
|
|
ai:{
|
|
|
|
|
result:{
|
|
|
|
|
player:1
|
|
|
|
|
},
|
|
|
|
|
order:7
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-10-20 17:44:00 +00:00
|
|
|
|
leader_2:{
|
|
|
|
|
opacity:1,
|
|
|
|
|
color:'white',
|
|
|
|
|
textShadow:'black 0 0 2px'
|
|
|
|
|
},
|
|
|
|
|
leader_3:{
|
|
|
|
|
opacity:1,
|
|
|
|
|
color:'white',
|
|
|
|
|
textShadow:'black 0 0 2px'
|
|
|
|
|
},
|
|
|
|
|
leader_5:{
|
|
|
|
|
opacity:1,
|
|
|
|
|
color:'white',
|
|
|
|
|
textShadow:'black 0 0 2px'
|
|
|
|
|
},
|
|
|
|
|
leader_8:{
|
|
|
|
|
opacity:1,
|
|
|
|
|
color:'white',
|
|
|
|
|
textShadow:'black 0 0 2px'
|
|
|
|
|
},
|
|
|
|
|
leader_easy:{
|
|
|
|
|
color:'white',
|
|
|
|
|
opacity:1,
|
|
|
|
|
textShadow:'black 0 0 2px',
|
2016-09-08 02:41:05 +00:00
|
|
|
|
image:'mode/chess/difficulty/leader_easy'
|
2015-10-20 17:44:00 +00:00
|
|
|
|
},
|
|
|
|
|
leader_medium:{
|
|
|
|
|
color:'white',
|
|
|
|
|
opacity:1,
|
|
|
|
|
textShadow:'black 0 0 2px',
|
2016-09-08 02:41:05 +00:00
|
|
|
|
image:'mode/chess/difficulty/leader_medium'
|
2015-10-20 17:44:00 +00:00
|
|
|
|
},
|
|
|
|
|
leader_hard:{
|
|
|
|
|
color:'white',
|
|
|
|
|
opacity:1,
|
|
|
|
|
textShadow:'black 0 0 2px',
|
2016-09-08 02:41:05 +00:00
|
|
|
|
image:'mode/chess/difficulty/leader_hard'
|
2015-10-20 17:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
2015-11-09 03:15:16 +00:00
|
|
|
|
characterPack:{
|
|
|
|
|
mode_chess:{
|
|
|
|
|
leader_caocao:['male','wei',4,['leader_xiaoxiong']],
|
|
|
|
|
leader_liubei:['male','shu',4,['leader_renyi']],
|
|
|
|
|
leader_sunquan:['male','wu',4,['leader_mouduan']],
|
|
|
|
|
// chess_caocao:['male','wei',3,['']],
|
|
|
|
|
// chess_xunyu:['male','wei',3,['']],
|
|
|
|
|
// chess_simayi:['male','wei',3,['']],
|
|
|
|
|
// chess_xiahoudun:['male','wei',3,['']],
|
|
|
|
|
// chess_dianwei:['male','wei',3,['']],
|
|
|
|
|
// chess_xuzhu:['male','wei',3,['']],
|
|
|
|
|
chess_zhangliao:['male','wei',4,['gongji','zhiming']],
|
|
|
|
|
// chess_jiaxu:['male','wei',3,['']],
|
|
|
|
|
//
|
|
|
|
|
// chess_liubei:['male','shu',3,['']],
|
|
|
|
|
// chess_guanyu:['male','shu',3,['']],
|
|
|
|
|
// chess_zhangfei:['male','shu',3,['']],
|
|
|
|
|
// chess_zhaoyun:['male','shu',3,['']],
|
|
|
|
|
// chess_machao:['male','shu',3,['']],
|
|
|
|
|
chess_huangzhong:['male','shu',4,['sanjiansheji','liegong']],
|
|
|
|
|
// chess_maliang:['male','shu',3,['']],
|
|
|
|
|
// chess_zhugeliang:['male','shu',3,['']],
|
|
|
|
|
//
|
|
|
|
|
// chess_sunquan:['male','wu',3,['']],
|
|
|
|
|
// chess_zhouyu:['male','wu',3,['qinyin']],
|
|
|
|
|
// chess_lvmeng:['male','wu',3,['']],
|
|
|
|
|
// chess_huanggai:['male','wu',3,['']],
|
|
|
|
|
// chess_lusu:['male','wu',3,['']],
|
|
|
|
|
// chess_luxun:['male','wu',3,['']],
|
|
|
|
|
// chess_ganning:['male','wu',3,['']],
|
|
|
|
|
chess_taishici:['male','wu',4,['gongji','guanchuan','pojun']],
|
|
|
|
|
//
|
|
|
|
|
// chess_lvbu:['male','qun',3,['']],
|
|
|
|
|
chess_sunshangxiang:['female','wu',3,['lingdong','lianshe','gongji']],
|
2017-01-25 17:13:45 +00:00
|
|
|
|
chess_diaochan:['female','qun',3,['xingzhui','pianyi','biyue']],
|
2015-11-09 03:15:16 +00:00
|
|
|
|
// chess_huatuo:['male','qun',3,['zhenjiu','mazui']],
|
|
|
|
|
// chess_zhangjiao:['male','qun',3,['']],
|
|
|
|
|
// chess_menghuo:['male','qun',3,['']],
|
|
|
|
|
//
|
2016-01-24 16:07:47 +00:00
|
|
|
|
chess_jinchidiao:['male','qun',15,['boss_bfengxing','boss_chiyu'],['boss','chessboss']],
|
2016-01-24 08:34:21 +00:00
|
|
|
|
chess_beimingjukun:['male','qun',25,['boss_wuying','cangming'],['boss','chessboss']],
|
|
|
|
|
chess_wuzhaojinlong:['male','qun',30,['boss_tenglong','boss_wushang'],['boss','chessboss']],
|
|
|
|
|
chess_dongzhuo:['male','qun',20,['jiuchi','boss_stoneqiangzheng','boss_stonebaolin'],['boss','chessboss']],
|
|
|
|
|
chess_xingtian:['male','qun',99,['boss_moyan','wushuang'],['boss','chessboss']],
|
2015-11-09 03:15:16 +00:00
|
|
|
|
}
|
2015-05-09 05:36:58 +00:00
|
|
|
|
},
|
2017-01-12 14:50:54 +00:00
|
|
|
|
cardPack:{
|
|
|
|
|
mode_chess:['chess_shezhang','chess_chuzhang']
|
|
|
|
|
},
|
2015-11-09 03:15:16 +00:00
|
|
|
|
chess_cardlist:[],
|
2015-12-15 05:13:47 +00:00
|
|
|
|
rank:{
|
|
|
|
|
rarity:{
|
|
|
|
|
legend:[
|
|
|
|
|
'swd_muyun',
|
|
|
|
|
'shen_caocao',
|
|
|
|
|
'swd_zhaoyun',
|
|
|
|
|
'swd_septem',
|
|
|
|
|
'hs_sthrall',
|
|
|
|
|
'hs_malorne',
|
|
|
|
|
'swd_yuwentuo',
|
|
|
|
|
'swd_duguningke',
|
|
|
|
|
'swd_guyue',
|
|
|
|
|
'swd_yuxiaoxue',
|
|
|
|
|
'swd_huanglei',
|
|
|
|
|
'pal_liumengli',
|
|
|
|
|
'pal_yuntianhe',
|
|
|
|
|
'swd_xuanyuanjianxian',
|
|
|
|
|
'diaochan',
|
|
|
|
|
'gjqt_aruan',
|
|
|
|
|
'hs_neptulon',
|
|
|
|
|
'shen_lvbu',
|
|
|
|
|
'swd_qi',
|
|
|
|
|
'swd_huzhongxian',
|
|
|
|
|
'hs_medivh',
|
|
|
|
|
'shen_zhugeliang',
|
|
|
|
|
'yxs_wuzetian',
|
|
|
|
|
'sp_pangtong',
|
|
|
|
|
'swd_murongshi',
|
|
|
|
|
'shen_lvmeng',
|
|
|
|
|
'chenlin',
|
|
|
|
|
'diy_caiwenji',
|
|
|
|
|
're_luxun',
|
|
|
|
|
'shen_zhaoyun',
|
|
|
|
|
'zhangchunhua',
|
|
|
|
|
'shen_zhouyu',
|
|
|
|
|
'shen_simayi',
|
|
|
|
|
'shen_guanyu',
|
|
|
|
|
'hs_siwangzhiyi',
|
2016-06-10 15:45:51 +00:00
|
|
|
|
'chengyu',
|
|
|
|
|
'yangxiu',
|
|
|
|
|
'hs_yogg',
|
|
|
|
|
'hs_malygos',
|
|
|
|
|
'hs_ysera',
|
|
|
|
|
'hanba',
|
2015-12-15 05:13:47 +00:00
|
|
|
|
],
|
|
|
|
|
epic:[
|
2016-06-10 15:45:51 +00:00
|
|
|
|
'lingju',
|
|
|
|
|
'daxiaoqiao',
|
|
|
|
|
'sunxiu',
|
|
|
|
|
'swd_weida',
|
|
|
|
|
'swd_lilian',
|
|
|
|
|
'yxs_luban',
|
|
|
|
|
'hs_alextrasza',
|
|
|
|
|
'zhugeguo',
|
|
|
|
|
'sp_caiwenji',
|
|
|
|
|
'ow_yuanshi',
|
2015-12-15 05:13:47 +00:00
|
|
|
|
'diy_zhenji',
|
|
|
|
|
'swd_jipeng',
|
|
|
|
|
'swd_cheyun',
|
|
|
|
|
'pal_xuanxiao',
|
|
|
|
|
'old_zhonghui',
|
|
|
|
|
'swd_tuobayuer',
|
|
|
|
|
'gjqt_bailitusu',
|
|
|
|
|
'xunyu',
|
|
|
|
|
'swd_jiliang',
|
|
|
|
|
'liuxie',
|
|
|
|
|
'hs_totemic',
|
|
|
|
|
'zhangxingcai',
|
|
|
|
|
'swd_muyue',
|
|
|
|
|
'pal_zixuan',
|
|
|
|
|
'hs_bchillmaw',
|
|
|
|
|
'swd_lanyin',
|
|
|
|
|
'gjqt_xiayize',
|
2016-05-29 03:22:37 +00:00
|
|
|
|
'hs_aedwin',
|
2015-12-15 05:13:47 +00:00
|
|
|
|
'hs_antonidas',
|
|
|
|
|
'swd_chenjingchou',
|
|
|
|
|
'yxs_yangyuhuan',
|
|
|
|
|
'gjqt_fengqingxue',
|
|
|
|
|
'pal_xuejian',
|
|
|
|
|
'xunyou',
|
|
|
|
|
're_daqiao',
|
|
|
|
|
're_zhouyu',
|
|
|
|
|
'hs_wvelen',
|
|
|
|
|
'zhugeke',
|
|
|
|
|
'swd_kama',
|
|
|
|
|
'swd_anka',
|
|
|
|
|
'caozhi',
|
|
|
|
|
'wuguotai',
|
|
|
|
|
'yxs_aijiyanhou',
|
|
|
|
|
'swd_zhiyin',
|
|
|
|
|
're_guanyu',
|
|
|
|
|
'sp_diaochan',
|
|
|
|
|
'swd_huanyuanzhi',
|
|
|
|
|
'swd_kangnalishi',
|
|
|
|
|
're_huanggai',
|
|
|
|
|
'hs_alakir',
|
|
|
|
|
'swd_xiarou',
|
|
|
|
|
'pal_murongziying',
|
|
|
|
|
'swd_wangsiyue',
|
|
|
|
|
'gjqt_fanglansheng',
|
|
|
|
|
'swd_qiner',
|
|
|
|
|
'hs_xsylvanas',
|
2016-06-10 15:45:51 +00:00
|
|
|
|
'zhongyao',
|
|
|
|
|
'hs_blingtron',
|
|
|
|
|
'hs_fuding',
|
|
|
|
|
'shixie',
|
|
|
|
|
'hs_lafamu',
|
|
|
|
|
'hs_nozdormu',
|
|
|
|
|
'ow_tianshi',
|
|
|
|
|
'yxs_guiguzi',
|
|
|
|
|
'ow_zhixuzhiguang',
|
|
|
|
|
'hs_jiaziruila',
|
|
|
|
|
'hs_yelise',
|
|
|
|
|
'hs_xuefashi',
|
|
|
|
|
'hs_liadrin',
|
|
|
|
|
'yxs_libai',
|
2015-12-15 05:13:47 +00:00
|
|
|
|
],
|
|
|
|
|
rare:[
|
2016-06-10 15:45:51 +00:00
|
|
|
|
'sunluban',
|
|
|
|
|
'sunluyu',
|
|
|
|
|
'zhangliang',
|
|
|
|
|
'zhangbao',
|
|
|
|
|
'sp_zhangjiao',
|
|
|
|
|
'swd_xiyan',
|
|
|
|
|
'sunluban',
|
|
|
|
|
'ow_falaozhiying',
|
|
|
|
|
'yxs_kaisa',
|
|
|
|
|
'yxs_napolun',
|
|
|
|
|
'hs_nate',
|
|
|
|
|
'yxs_jinke',
|
|
|
|
|
'yxs_yuefei',
|
|
|
|
|
'guyong',
|
|
|
|
|
'hs_anomalus',
|
|
|
|
|
'hs_jinglinglong',
|
|
|
|
|
'jiangqing',
|
|
|
|
|
'mayunlu',
|
|
|
|
|
're_liubei',
|
|
|
|
|
're_lidian',
|
|
|
|
|
'hs_alleria',
|
|
|
|
|
'jsp_huangyueying',
|
|
|
|
|
'hs_lreno',
|
|
|
|
|
'hs_zhouzhuo',
|
|
|
|
|
'cenhun',
|
|
|
|
|
'hs_loatheb',
|
|
|
|
|
'sunziliufang',
|
|
|
|
|
'hs_finley',
|
|
|
|
|
'ow_chanyata',
|
|
|
|
|
'yxs_huamulan',
|
|
|
|
|
'cuiyan',
|
|
|
|
|
'wangji',
|
|
|
|
|
'xin_liru',
|
|
|
|
|
'swd_quxian',
|
|
|
|
|
'caorui',
|
|
|
|
|
'ow_liekong',
|
|
|
|
|
'ow_zhixuzhiguang',
|
|
|
|
|
'lifeng',
|
|
|
|
|
'sundeng',
|
|
|
|
|
'hs_xialikeer',
|
|
|
|
|
'hs_sainaliusi',
|
|
|
|
|
'hs_lrhonin',
|
2015-12-15 05:13:47 +00:00
|
|
|
|
'yxs_diaochan',
|
|
|
|
|
'hs_anduin',
|
|
|
|
|
'swd_hengai',
|
|
|
|
|
'hs_wuther',
|
|
|
|
|
'lusu',
|
|
|
|
|
'bulianshi',
|
|
|
|
|
'swd_shuijing',
|
|
|
|
|
'swd_sikongyu',
|
|
|
|
|
'zhangliao',
|
|
|
|
|
'liufeng',
|
|
|
|
|
'diy_yuji',
|
|
|
|
|
're_zhangliao',
|
|
|
|
|
'caoang',
|
2016-06-10 15:45:51 +00:00
|
|
|
|
'hs_zhishigushu',
|
2015-12-15 05:13:47 +00:00
|
|
|
|
'pal_jingtian',
|
|
|
|
|
'swd_shanxiaoxiao',
|
|
|
|
|
'yxs_caocao',
|
|
|
|
|
'jianyong',
|
|
|
|
|
'manchong',
|
|
|
|
|
'swd_linyue',
|
|
|
|
|
'swd_xuanyuanjiantong',
|
|
|
|
|
'swd_maixing',
|
|
|
|
|
'diy_xuhuang',
|
|
|
|
|
'dengai',
|
|
|
|
|
'hs_jaina',
|
|
|
|
|
'zhonghui',
|
|
|
|
|
'gjqt_xiangling',
|
|
|
|
|
'zhugejin',
|
|
|
|
|
'swd_jiuyou',
|
|
|
|
|
'diy_zhouyu',
|
|
|
|
|
'pal_changqing',
|
|
|
|
|
'swd_yuchiyanhong',
|
|
|
|
|
'swd_duopeng',
|
|
|
|
|
'swd_yuli',
|
|
|
|
|
'swd_rongshuang',
|
|
|
|
|
'taishici',
|
|
|
|
|
'pal_zhaoliner',
|
|
|
|
|
're_machao',
|
|
|
|
|
'zhanghe',
|
|
|
|
|
'zhangzhang',
|
|
|
|
|
'xin_fazheng',
|
|
|
|
|
'caochong',
|
|
|
|
|
'caifuren',
|
|
|
|
|
'xin_masu',
|
|
|
|
|
'swd_situqiang',
|
|
|
|
|
'hs_malfurion',
|
|
|
|
|
'yxs_bole',
|
|
|
|
|
'yj_jushou',
|
|
|
|
|
'gjqt_yuewuyi',
|
|
|
|
|
'hs_mijiaojisi',
|
|
|
|
|
'yxs_mozi',
|
|
|
|
|
'gjqt_hongyu',
|
|
|
|
|
'hs_waleera',
|
|
|
|
|
'zhangsong',
|
|
|
|
|
'sp_dongzhuo',
|
|
|
|
|
'jiangwei',
|
|
|
|
|
'swd_chunyuheng',
|
|
|
|
|
'hetaihou',
|
|
|
|
|
'swd_jiangziya',
|
|
|
|
|
'liushan',
|
|
|
|
|
'zhugedan',
|
|
|
|
|
'sp_zhaoyun',
|
|
|
|
|
're_huatuo',
|
|
|
|
|
'swd_nicole',
|
|
|
|
|
'sp_jiangwei',
|
|
|
|
|
'swd_zhuoshanzhu',
|
|
|
|
|
'swd_shaowei',
|
|
|
|
|
'caopi',
|
|
|
|
|
'jiaxu',
|
|
|
|
|
'maliang',
|
|
|
|
|
'lingtong',
|
|
|
|
|
'wangyi',
|
|
|
|
|
'chenqun',
|
|
|
|
|
'mifuren',
|
|
|
|
|
'pal_linyueru',
|
|
|
|
|
'swd_jialanduo',
|
|
|
|
|
'sp_machao',
|
|
|
|
|
'caiwenji',
|
|
|
|
|
'hs_yngvar',
|
|
|
|
|
're_xushu',
|
|
|
|
|
're_huangyueying',
|
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
},
|
2015-11-09 03:15:16 +00:00
|
|
|
|
posmap:{},
|
2016-03-27 06:50:39 +00:00
|
|
|
|
help:{
|
|
|
|
|
'战棋模式':
|
|
|
|
|
'<div style="margin:10px">对阵模式</div><ul style="margin-top:0"><li>n人对战n人的模式,由单人控制,开始游戏后随机分配位置与出牌顺序<li>'+
|
|
|
|
|
'每人在出牌阶段有一次移动的机会,可移动的最大距离为2<li>'+
|
|
|
|
|
'任何卡牌或技能无法指定位置相隔8个格以上的角色为目标<li>'+
|
|
|
|
|
'杀死对方阵营的角色可摸一张牌,杀死本方阵营无惩罚<li>'+
|
|
|
|
|
'若开启主将,双方各选择一名角色成为主将。主将体力上限加一,主将死亡后,若有副将,副将代替之成为主将,否则游戏结束<li>'+
|
|
|
|
|
'开启无尽模式后,任何一方有角色死亡都将选择一名新角色重新加入战场,直到点击左上角的结束游戏按钮手动结束游戏。结束游戏时,杀敌更多的一方获胜<li>'+
|
2016-05-28 09:00:48 +00:00
|
|
|
|
'行动顺序为指定时,双方无论存活角色角色多少都将轮流进行行动。在一方所有角色行动完毕进行下一轮行动时,若其人数比另一方少,另一方可指定至多X名角色名摸一张牌,X为人数之差<li>'+
|
2017-01-18 03:00:22 +00:00
|
|
|
|
'开启战场机关后,每个回合结束时有一定机率出现一个机关,该机关不参与战斗,并有一个影响周围或全体角色的效果。机关在出现后的5~10个回合内消失<li>'+
|
2016-03-27 06:50:39 +00:00
|
|
|
|
'开启击退效果后,当一名角色对距离两格以内的目标造成伤害后,受伤害角色将沿反方向移动一格<li>'+
|
|
|
|
|
'战场上可设置出现随机路障,角色无法移动到路障处。当一名角色的周围四格有至少三格为路障或在战场外时,其可以在回合内清除一个相邻路障</ul>'+
|
|
|
|
|
'<div style="margin:10px">君主模式</div><ul style="margin-top:0"><li>收集武将进行战斗,根据战斗难度及我方出场武将的强度,战斗胜利后将获得数量不等的金钱。没有君主出场时,获得的金钱较多<li>'+
|
|
|
|
|
'金钱可以用来招募随机武将,招到已有武将,或遣返不需要的武将时可得到招募令<li>'+
|
|
|
|
|
'战斗中有君主出场时可招降敌将,成功率取决于敌将的稀有度、剩余体力值以及手牌数。成功后战斗立即结束且没有金钱奖励。每发动一次招降,无论成功还是失败,都会扣除10招募令<li>'+
|
2016-04-22 06:59:46 +00:00
|
|
|
|
'挑战武将会与该武将以及与其强度相近的武将进行战斗,敌方人数与我方出场人数相同,但不少于3。胜利后可通过招募令招募该武将,普通/稀有/史诗/传说武将分别需要40/100/400/1600招募令<li>'+
|
2017-01-18 03:00:22 +00:00
|
|
|
|
'竞技场:<br>随机选择9名武将,每次派出1~3名武将参战。战斗中阵亡的武将不能再次上场。<br><br>战斗后武将进入疲劳状态,若立即再次出场则初始体力值-1。<br><br>战斗中本方武将行动时可召唤后援,令一名未出场的已方武将加入战斗。后援武将在战斗结束后无论存活与否均不能再次出场<br><br>当取得12场胜利或所有武将全部阵亡后结束,并根据胜场数获得随机奖励<li>'+
|
2016-08-15 14:19:58 +00:00
|
|
|
|
'修改金钱:<br>game.changeMoney<br>修改招募令:<br>game.changeDust</ul>'
|
2016-03-27 06:50:39 +00:00
|
|
|
|
},
|
2015-05-08 08:07:38 +00:00
|
|
|
|
}
|