This commit is contained in:
parent
c87bf820c3
commit
e22aecc6ad
|
@ -101,6 +101,7 @@ window.characterRank={
|
||||||
'hs_tgolem',
|
'hs_tgolem',
|
||||||
],
|
],
|
||||||
am:[
|
am:[
|
||||||
|
'hs_bolvar',
|
||||||
'hs_lafamu',
|
'hs_lafamu',
|
||||||
'lifeng',
|
'lifeng',
|
||||||
'hs_fuding',
|
'hs_fuding',
|
||||||
|
@ -271,6 +272,7 @@ window.characterRank={
|
||||||
'sp_ganning',
|
'sp_ganning',
|
||||||
],
|
],
|
||||||
b:[
|
b:[
|
||||||
|
'hs_nozdormu',
|
||||||
'yxs_lishimin',
|
'yxs_lishimin',
|
||||||
'hs_ruanniguai',
|
'hs_ruanniguai',
|
||||||
'hanba',
|
'hanba',
|
||||||
|
|
|
@ -1017,9 +1017,38 @@ mode.identity={
|
||||||
if(game.players.length==2) return -10;
|
if(game.players.length==2) return -10;
|
||||||
if(zhongmode&&to.ai.sizhong) return 6;
|
if(zhongmode&&to.ai.sizhong) return 6;
|
||||||
if(get.population('fan')==0) return -0.5;
|
if(get.population('fan')==0) return -0.5;
|
||||||
|
if(get.population('fan')==1&&get.population('nei')==1&&game.players.length==3){
|
||||||
|
var fan;
|
||||||
|
for(var i=0;i<game.players.length;i++){
|
||||||
|
if(game.players[i].identity=='fan'){
|
||||||
|
fan=game.players[i];break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(fan){
|
||||||
|
if(to.hp>1&&to.hp>fan.hp&&to.num('he')>fan.num('he')){
|
||||||
|
return -3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
if(situation>1) return 0;
|
if(situation>1) return 0;
|
||||||
return Math.min(3,get.population('fan'));
|
return Math.min(3,get.population('fan'));
|
||||||
case 'fan': return -4;
|
case 'fan':
|
||||||
|
if(get.population('fan')==1&&get.population('nei')==1&&game.players.length==3){
|
||||||
|
var nei;
|
||||||
|
for(var i=0;i<game.players.length;i++){
|
||||||
|
if(game.players[i].identity=='nei'){
|
||||||
|
nei=game.players[i];break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(nei){
|
||||||
|
if(nei.hp>1&&nei.hp>to.hp&&nei.num('he')>to.num('he')){
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -3;
|
||||||
|
}
|
||||||
|
return -4;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'zhong':case 'mingzhong':
|
case 'zhong':case 'mingzhong':
|
||||||
|
|
Loading…
Reference in New Issue