This commit is contained in:
parent
007eaf0f1d
commit
752c8bc46a
|
@ -218,7 +218,7 @@ card.guozhan={
|
|||
});
|
||||
"step 1"
|
||||
if(result.bool){
|
||||
player.logSkill('sanjian_skill');
|
||||
player.logSkill('sanjian_skill',result.targets);
|
||||
player.discard(result.cards);
|
||||
result.targets[0].damage();
|
||||
}
|
||||
|
|
|
@ -39,6 +39,7 @@ character.sp={
|
|||
lingcao:['male','wu',4,['dujin']],
|
||||
sunru:['female','wu',3,['shixin','qingyi']],
|
||||
lingju:['female','qun',3,['jieyuan','fenxin']],
|
||||
lifeng:['male','shu',3,['tunchu','shuliang']],
|
||||
},
|
||||
perfectPair:{
|
||||
zhugejin:['zhugeke'],
|
||||
|
|
|
@ -639,6 +639,8 @@ character.woods={
|
|||
intro:{
|
||||
content:'limited'
|
||||
},
|
||||
skillAnimation:'epic',
|
||||
animationColor:'thunder',
|
||||
prepare:function(cards,player){
|
||||
player.line(game.players);
|
||||
for(var i=0;i<game.players.length;i++){
|
||||
|
|
12
play/coin.js
12
play/coin.js
|
@ -58,16 +58,16 @@ play.coin={
|
|||
if(item.bought){
|
||||
if(item.running){
|
||||
buy.innerHTML='停止';
|
||||
if(item.control){
|
||||
var node=item.control();
|
||||
if(node){
|
||||
buy.parentNode.appendChild(node,buy);
|
||||
}
|
||||
}
|
||||
}
|
||||
else{
|
||||
buy.innerHTML='开始';
|
||||
}
|
||||
if(item.control){
|
||||
var node=item.control();
|
||||
if(node){
|
||||
buy.parentNode.appendChild(node,buy);
|
||||
}
|
||||
}
|
||||
}
|
||||
buy.name=i;
|
||||
buy.content=item;
|
||||
|
|
Loading…
Reference in New Issue