This commit is contained in:
libccy 2017-05-12 23:13:26 +08:00
parent 1a8065a28e
commit 486e807094
15 changed files with 41 additions and 3 deletions

View File

@ -3,6 +3,12 @@ game.import('card',function(lib,game,ui,get,ai,_status){
return {
name:'gwent',
card:{
gw_dudayuanshuai1:{
fullimage:true
},
gw_dudayuanshuai2:{
fullimage:true
},
gw_dieyi:{
fullskin:true
},
@ -1273,7 +1279,7 @@ game.import('card',function(lib,game,ui,get,ai,_status){
filter:function(event,player){
var list=game.filterPlayer();
for(var i=0;i<list.length;i++){
if(list[i]!=player&&list[i].countCards('he')) return true;
if(list[i]!=player&&list[i].isMaxCard()) return true;
}
return false;
},
@ -1395,7 +1401,7 @@ game.import('card',function(lib,game,ui,get,ai,_status){
gw_hudiewu:'蝴蝶舞',
gw_hudiewu_info:'将其他角色在场上的所有牌替换为蝶翼(在你失去蝶翼后,你于下一个结束阶段随机弃置一张牌),然后结束出牌阶段',
gw_yigeniyin:'伊格尼印',
gw_yigeniyin_info:'对敌方角色中体力值最大一名随机角色造成一点火焰伤害,然后对场上体力值最大的所有角色各造成一点火焰伤害,然后结束出牌阶段',
gw_yigeniyin_info:'对敌方角色中体力值最大一名随机角色造成一点火焰伤害,然后对场上体力值最大的所有角色各造成一点火焰伤害,然后结束出牌阶段',
gw_leizhoushu:'雷咒术',
gw_leizhoushu_info:'获得技能雷咒术(在每个准备阶段令全场牌数最多的所有其他角色各随机弃置一张牌,重复获得时效果叠加),然后结束出牌阶段',
gw_aerdeyin:'阿尔德印',

View File

@ -29,6 +29,16 @@ game.import('character',function(lib,game,ui,get,ai,_status){
gw_xili:['female','wu',3,['fengjian']],
gw_luoqi:['male','wei',4,['gwzhanjiang']],
gw_yioufeisi:['male','wu',4,['gwchuanxin']],
// gw_aigeleisi:['male','wu',4,[]],
// gw_aokeweisite:['male','wu',4,[]],
// gw_kaxier:['male','wu',4,[]],
// gw_luobo:['male','wu',4,[]],
// gw_mieren:['male','wu',4,[]],
// gw_sanhanya:['male','wu',4,[]],
// gw_shanhu:['male','wu',4,[]],
// gw_zhangyujushou:['male','wu',4,[]],
// gw_zhuoertan:['male','wu',4,[]],
},
characterIntro:{
gw_huoge:'那个老年痴呆?不知道他是活着还是已经被制成标本了!',
@ -880,6 +890,16 @@ game.import('character',function(lib,game,ui,get,ai,_status){
gw_luoqi:'罗契',
gw_yioufeisi:'伊欧菲斯',
gw_aigeleisi:'艾格蕾斯',
gw_aokeweisite:'奥克维斯特',
gw_kaxier:'卡西尔',
gw_luobo:'萝卜',
gw_mieren:'米尔恩',
gw_sanhanya:'三寒鸦',
gw_shanhu:'珊瑚',
gw_zhangyujushou:'章鱼巨兽',
gw_zhuoertan:'卓尔坦',
tianbian:'天变',
tianbian_info:'出牌阶段开始时,你可以选择一项:随机使用一张对全场有正面效果的牌;或随机使用一张对全场有负面效果的牌',
gwxiaoshou:'枭首',

View File

@ -60,6 +60,8 @@ window.noname_asset_list=[
'image/card/gw_butianshu.png',
'image/card/gw_ciguhanshuang.png',
'image/card/gw_dieyi.png',
'image/card/gw_dudayuanshuai1.png',
'image/card/gw_dudayuanshuai2.png',
'image/card/gw_fuyuan.png',
'image/card/gw_hudiewu.png',
'image/card/gw_leizhoushu.png',
@ -359,8 +361,10 @@ window.noname_asset_list=[
'image/character/guojia.jpg',
'image/character/guotufengji.jpg',
'image/character/guyong.jpg',
'image/character/gw_aigeleisi.jpg',
'image/character/gw_airuiting.jpg',
'image/character/gw_aisinie.jpg',
'image/character/gw_aokeweisite.jpg',
'image/character/gw_bulanwang.jpg',
'image/character/gw_dagong.jpg',
'image/character/gw_enxier.jpg',
@ -373,13 +377,20 @@ window.noname_asset_list=[
'image/character/gw_huoge.jpg',
'image/character/gw_jieluote.jpg',
'image/character/gw_kaerweite.jpg',
'image/character/gw_kaxier.jpg',
'image/character/gw_kuite.jpg',
'image/character/gw_laduoweide.jpg',
'image/character/gw_luobo.jpg',
'image/character/gw_luoqi.jpg',
'image/character/gw_mieren.jpg',
'image/character/gw_sanhanya.jpg',
'image/character/gw_shanhu.jpg',
'image/character/gw_telisi.jpg',
'image/character/gw_xili.jpg',
'image/character/gw_yenaifa.jpg',
'image/character/gw_yioufeisi.jpg',
'image/character/gw_zhangyujushou.jpg',
'image/character/gw_zhuoertan.jpg',
'image/character/hanba.jpg',
'image/character/handang.jpg',
'image/character/hanhaoshihuan.jpg',

View File

@ -2,7 +2,8 @@ window.noname_update={
version:'1.9.28',
// update:'1.9.26',
changeLog:[
'bug修复'
'bug修复',
'新卡'
],
files:[
// 'game/game.js',

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB