This commit is contained in:
parent
21159e25ea
commit
76a7f5372d
13
card/swd.js
13
card/swd.js
|
@ -495,7 +495,7 @@ card.swd={
|
|||
subtype:'equip5',
|
||||
nomod:true,
|
||||
ai:{
|
||||
equipValue:7
|
||||
equipValue:6
|
||||
},
|
||||
skills:['lianhua','shouna']
|
||||
},
|
||||
|
@ -1952,20 +1952,23 @@ card.swd={
|
|||
return player.storage.gouhunluo2==event.player;
|
||||
},
|
||||
content:function(){
|
||||
'step 0'
|
||||
player.storage.gouhunluo--;
|
||||
if(player.storage.gouhunluo<=0){
|
||||
player.logSkill('gouhunluo');
|
||||
player.loseHp();
|
||||
var es=player.get('h');
|
||||
if(es.length){
|
||||
player.discard(es);
|
||||
}
|
||||
player.removeSkill('gouhunluo');
|
||||
delete player.storage.gouhunluo;
|
||||
delete player.storage.gouhunluo2;
|
||||
}
|
||||
else{
|
||||
player.updateMarks();
|
||||
event.finish();
|
||||
}
|
||||
'step 1'
|
||||
var es=player.get('h');
|
||||
if(es.length){
|
||||
player.discard(es);
|
||||
}
|
||||
},
|
||||
group:'gouhunluo2'
|
||||
|
|
|
@ -4027,6 +4027,9 @@ character.yijiang={
|
|||
filter:function(event,player){
|
||||
return player.num('he')>0;
|
||||
},
|
||||
check:function(event,player){
|
||||
return player.num('h','sha')<=player.num('h')/3;
|
||||
},
|
||||
content:function(){
|
||||
"step 0"
|
||||
player.chooseTarget(get.prompt('youdi'),function(card,player,target){
|
||||
|
|
|
@ -9,13 +9,14 @@ window.noname_update={
|
|||
'game/package.js',
|
||||
'game/asset.js',
|
||||
'card/hearth.js',
|
||||
'card/swd.js',
|
||||
'character/ow.js',
|
||||
'character/hearth.js',
|
||||
// 'character/old.js',
|
||||
'character/xianjian.js',
|
||||
'character/refresh.js',
|
||||
'character/shenhua.js',
|
||||
// 'character/yijiang.js',
|
||||
'character/yijiang.js',
|
||||
// 'mode/chess.js',
|
||||
'mode/versus.js',
|
||||
// 'mode/guozhan.js',
|
||||
|
|
Loading…
Reference in New Issue