This commit is contained in:
parent
090c5a9ba5
commit
5804e756d5
|
@ -1570,9 +1570,7 @@ character.hearth={
|
|||
xianji3:{
|
||||
mark:'character',
|
||||
intro:{
|
||||
content:function(storage,player){
|
||||
return '每当'+get.translation(storage)+'对你使用一张牌,你摸一张牌';
|
||||
}
|
||||
content:'每当$对你使用一张牌,你摸一张牌'
|
||||
},
|
||||
trigger:{target:'useCardToBegin'},
|
||||
filter:function(event,player){
|
||||
|
|
|
@ -3596,7 +3596,8 @@
|
|||
},
|
||||
placePoppedDialog:function(dialog,e){
|
||||
if(dialog._place_text){
|
||||
if(dialog._place_text.firstChild.offsetWidth>=190){
|
||||
if(dialog._place_text.firstChild.offsetWidth>=190||
|
||||
dialog._place_text.firstChild.offsetHeight>=30){
|
||||
dialog._place_text.style.textAlign='left';
|
||||
dialog._place_text.style.marginLeft='14px';
|
||||
}
|
||||
|
@ -12232,6 +12233,11 @@
|
|||
if(typeof intro=='function'){
|
||||
intro=intro(this.storage[skill],this);
|
||||
}
|
||||
else if(typeof intro=='string'){
|
||||
intro=intro.replace(/#/g,this.storage[skill]);
|
||||
intro=intro.replace(/&/g,get.cnNumber(this.storage[skill]));
|
||||
intro=intro.replace(/\$/g,get.translation(this.storage[skill]));
|
||||
}
|
||||
this.markSkillCharacter(skill,this.storage[skill],get.translation(skill),intro);
|
||||
}
|
||||
else{
|
||||
|
|
Loading…
Reference in New Issue