This commit is contained in:
parent
065404f622
commit
be9ec4290d
|
@ -285,7 +285,11 @@ game.import('card',function(lib,game,ui,get,ai,_status){
|
|||
type:'spell',
|
||||
subtype:'spell_gold',
|
||||
vanish:true,
|
||||
enable:true,
|
||||
enable:function(card,player){
|
||||
return game.hasPlayer(function(current){
|
||||
return get.distance(player,current,'pure')==1;
|
||||
});
|
||||
},
|
||||
notarget:true,
|
||||
contentBefore:function(){
|
||||
player.$skill('阿尔德印','legend','metal');
|
||||
|
|
|
@ -1931,6 +1931,7 @@ game.import('card',function(lib,game,ui,get,ai,_status){
|
|||
player.addTempSkill('zhufangshenshi');
|
||||
},
|
||||
ai:{
|
||||
norepeat:1,
|
||||
value:4,
|
||||
wuxie:function(){
|
||||
return 0;
|
||||
|
|
|
@ -71,7 +71,10 @@ game.import('character',function(lib,game,ui,get,ai,_status){
|
|||
characterFilter:{
|
||||
ns_duangui:function(mode){
|
||||
return mode=='identity'&&_status.mode=='normal';
|
||||
}
|
||||
},
|
||||
diy_liuyan:function(mode){
|
||||
return mode!='chess'&&mode!='tafang';
|
||||
}
|
||||
},
|
||||
characterIntro:{
|
||||
diy_feishi:'字公举,生卒年不详,益州犍为郡南安县(今四川省乐山市)人。刘璋占据益州时,以费诗为绵竹县县令。刘备进攻刘璋夺取益州,费诗举城而降,后受拜督军从事,转任牂牁郡太守,再为州前部司马。',
|
||||
|
|
|
@ -3350,7 +3350,10 @@ game.import('character',function(lib,game,ui,get,ai,_status){
|
|||
mark:true,
|
||||
discard:false,
|
||||
delay:0,
|
||||
check:function(card){return 6-get.value(card);},
|
||||
check:function(card){
|
||||
if(_status.event.player.hp==1) return 8-get.value(card);
|
||||
return 6-get.value(card);
|
||||
},
|
||||
selectTarget:2,
|
||||
multitarget:true,
|
||||
content:function(){
|
||||
|
|
Loading…
Reference in New Issue