Merge pull request #494 from mengxinzxz/PR-Branch

bugfix
This commit is contained in:
Spmario233 2023-10-09 22:15:07 +08:00 committed by GitHub
commit 648047207b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 4 additions and 1 deletions

BIN
audio/die/ol_zhangzhang.mp3 Normal file

Binary file not shown.

BIN
audio/skill/olguzheng1.mp3 Normal file

Binary file not shown.

BIN
audio/skill/olguzheng2.mp3 Normal file

Binary file not shown.

BIN
audio/skill/olzhijian1.mp3 Normal file

Binary file not shown.

BIN
audio/skill/olzhijian2.mp3 Normal file

Binary file not shown.

View File

@ -4595,7 +4595,10 @@ game.import('character',function(lib,game,ui,get,ai,_status){
viewAsFilter:function(player){
return player.hasCard({type:'equip'},'ehs');
},
check:(card)=>5-get.value(card),
check:function(card){
if(_status.event.type=='dying') return 1/(get.value(card)||0.5);
return 5-get.value(card);
},
locked:false,
mod:{
maxHandcard:function(player,num){