-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserv.js
1914 lines (1641 loc) · 67.7 KB
/
serv.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//////////////////////////////////////////////////////////////////////////////////
// global variable
const express = require('express')
const fs = require('fs')
const http = require('http')
const MongoClient = require('mongodb').MongoClient
const path = require('path')
const socket = require('socket.io')
const apps = express()
const server = http.createServer(apps)
const io = socket(server)
apps.use(express.static(path.join(__dirname, 'app')))
const opt = {
mongo: JSON.parse(fs.readFileSync('./option.json', 'utf-8')).mongo,
serv_port: 1350
}
//opt.url = `mongodb://${opt.mongo.account}:${opt.mongo.passwd}@localhost/${opt.mongo.dbname}`
opt.url = `mongodb://${opt.mongo.account}:${opt.mongo.passwd}@merry.ee.ncku.edu.tw:27017/${opt.mongo.dbname}`
const app = {
db: null,
file: {
preload: JSON.parse(fs.readFileSync('./app/assets/data/preload.json', 'utf-8'))
}
}
//////////////////////////////////////////////////////////////////////////////////
// classes
const Card = function (init) {
//-! this = JSON.parse(JSON.stringify(init))
this.id = null
this.name = init.name
this.type = init.type
this.energy = (this.type.base === 'artifact')? 2: 1
this.bond = null
if (this.type.base === 'artifact') {
this.overheat = false
this.socket = {}
}
if (this.type.base === 'spell' && this.type.effect.trigger) {
this.lock = true
}
let rlt = this.checkMultiType()
if (Object.keys(rlt).length) {
this.curr_eff = null
this.eff_choice = rlt
}
this.field = init.field
this.cover = true
this.owner = init.owner
this.curr_own = init.owner
}
Card.prototype.checkMultiType = function () {
let eff_tp = Object.keys(this.type.effect)
if (eff_tp.length == 1 && this.type.effect[eff_tp[0]] == 1) return {}
if (eff_tp.length == 2 && this.type.effect.counter) return {}
if (this.name === 'vanish') return {}
if (eff_tp.length == 1) eff_tp = [`${eff_tp[0]}_1`, `${eff_tp[0]}_2`]
let eff_str = game.default.all_card[this.name].text.split('\n')
let rlt = {}
for (let i of [0, 1]) rlt[eff_tp[i]] = eff_str[2*i+1] + '\n' + eff_str[2*i+2]
return rlt
}
const Game = function () {
this.default = {
all_card : {},
all_stat : {},
// card type
artifact_max: 5,//13,
spell_max : 3,//14,
item_max : 2,//12,
vanish_max : 4,//11
// player attribute
atk_damage : 1,
atk_phase : 1,
action_point: 1,
deck_max : 14, // 50
hand_max : 7,
life_max : 6
}
this.phase_rule = {
// normal action
draw : {},
use : {
choose: {attack: true, effect: true}, // hand
normal: {normal: true, choose: true}
},
trigger: {attack: true, effect: true}, // battle, altar
// specific action
life : {attack: true, effect: true}, // life
grave : {effect: true},
deck : {effect: true}
}
this.choose_eff = {
bleed : true,
block : true, // card you use to block
break : true,
control : true,
drain : true,
discard : true,
damage : true,
equip : true,
heal : true,
receive : true, // card you flip for life loss
retrieve: true,
steal : true,
teleport: true
}
this.card_reveal_target = { //
steal: 'opponent',
retrieve: 'personal',
equip: 'personal'
}
this.pool = {}
this.queue = []
this.room = {}
}
/////////////////////////////////////////////////////////////////////////////////
// !-- build objects
Game.prototype.buildPlayer = function (client) {
// basic
client.hp = this.default.life_max
client.atk_damage = game.default.atk_damage
client.atk_phase = game.default.atk_phase
client.action_point = game.default.action_point
client.deck_max = game.default.deck_max
client.hand_max = game.default.hand_max
client.life_max = game.default.life_max
client.card_amount = {altar: 0, battle: 0, deck: 0, grave: 0, hand: 0, life: 0, socket: 0}
client.choose_deck = {}
// action
client.interrupt = false
// effect
client.atk_enchant = {}
client.aura = { // permenent till be counter or remove
cripple: {}, // can't draw card
dicease: {}, // can't use heal cards
silence: {}, // can't use life field card
fear : {}, // can't attack
solidity: {}, // your artifacts can't be destroy or break
triumph : {}, // atk cant be vanish when artifact > 3 on battle
precise : {}, // atk cant be vanish
stamina : {}, // handcard limit + 2
recycle : {}, // draw 1 card when an artifact send to grave
berserk : {} // equip wont cost action point
}
client.buff = { // next action trigger
mana_tide : false, // next spell this turn won't cost action point
quick_draw: false, // next equip this turn won't cost action point
eagle_eye : false // next attack you perform can't be vanish
}
client.stat = {
charge : false, // add one additional turn
stun : false, // can only use item
petrify : false, // can only draw card
freeze : false // can't attack and use item
}
client.eff_queue = {} // { id_1 : {eff_1: ..., eff_2: ...} ... }
client.dmg_blk = [] // effect damage only
client.chanting = {}
// choose
client.card_pause = {} // card needs another card to effect
// vanish
client.first_conceal = false
// decks
client.deck_slot = {}
client.curr_deck = []
}
/////////////////////////////////////////////////////////////////////////////////
// !-- card adjusting
/*
param = {
personal: {
id:
}
}
rlt = {
id: {
},
}
*/
// personal >> who own this card currently
Game.prototype.cardMove = function (personal, opponent, rlt) {
let player = {personal: personal, opponent: opponent}
let param = {personal: {}, opponent: {}}
let aura_modify = {personal: {}, opponent: {}}
for (let id in rlt) {
let card = game.room[personal._rid].cards[id]
// owner and attribute adjust, rlt[id].new_own set here when the card will be into grave
rlt[id].curr_own = (card.curr_own === personal._pid)? 'personal' : 'opponent'
rlt[id].name = (rlt[id].cover)? 'cardback' : card.name
if (!rlt[id].new_own) rlt[id].new_own = (card.owner === personal._pid)? 'personal' : 'opponent'
if (!rlt[id].to) rlt[id].to = 'grave'
if (rlt[id].to === 'grave' || rlt[id].to === 'hand' || ((rlt[id].to === 'deck' || rlt[id].to === 'life') && card.field !== 'hand') ) {
if (game.default.all_card[card.name].aura) aura_modify.personal[id] = false
if (card.type.base === 'artifact') {
card.overheat = false
card.energy = 2
}
else {
if ('lock' in card) card.lock = true
card.energy = 1
}
}
else {
if (card.field === rlt[id].to && card.curr_own !== player[rlt[id].new_own]._pid) {
if (game.default.all_card[card.name].aura) {
aura_modify.personal[id] = false
aura_modify.opponent[id] = true
}
}
}
if (card.socket && Object.keys(card.socket).length) {
let tmp = game.cardMove(personal, opponent, Object.assign({}, card.socket))
Object.assign(param.personal, tmp.personal)
Object.assign(param.opponent, tmp.opponent)
}
if (rlt[id].on) {
//console.log('skt')
game.room[personal._rid].cards[rlt[id].on].socket[id] = {off: rlt[id].on}
card.bond = rlt[id].on
}
if (rlt[id].off) {
delete game.room[personal._rid].cards[rlt[id].off].socket[id]
card.bond = null
}
// move card
rlt[id].from = card.field
personal.card_amount[rlt[id].from] -= 1
card.field = rlt[id].to
player[rlt[id].new_own].card_amount[rlt[id].to] += 1
card.curr_own = player[rlt[id].new_own]._pid
if (!personal.card_amount.deck) rlt[id].deck_empty = 'personal'
// build return object
param.personal[id] = {}
if (rlt[id].to === 'hand' && rlt[id].new_own === 'opponent') {
rlt[id].cover = true
}
Object.assign(param.personal[id], rlt[id])
param.opponent[id] = {}
rlt[id].curr_own = (rlt[id].curr_own === 'personal')? 'opponent' : 'personal'
rlt[id].new_own = (rlt[id].new_own === 'personal')? 'opponent' : 'personal'
if (rlt[id].deck_empty) rlt[id].deck_empty = (rlt[id].deck_empty === 'personal')? 'opponent' : 'personal'
rlt[id].cover = (rlt[id].off)? true : false
if (rlt[id].to === 'hand' && rlt[id].from === 'deck') {
rlt[id].cover = true
delete rlt[id].name
}
Object.assign(param.opponent[id], rlt[id])
}
if (Object.keys(aura_modify.personal)) game.aura(personal, aura_modify.personal)
if (Object.keys(aura_modify.opponent)) game.aura(opponent, aura_modify.opponent)
//console.log(param.opponent)
//console.log(param.personal)
return param
}
/////////////////////////////////////////////////////////////////////////////////
// !-- changing phase
Game.prototype.attackEnd = function (room) {
room.phase = 'normal'
room.atk_status.hit = false
room.atk_status.attacker.atk_damage = this.default.atk_damage
room.atk_status.attacker.atk_enchant = {}
room.atk_status.attacker = null
room.atk_status.defender = null
for (let pid in room.player) {
let rlt = (pid == room.curr_ply) ? 'your turn' : 'opponent turn'
room.player[pid].emit('phaseShift', {msg: {phase: 'normal phase', action: rlt}})
}
}
Game.prototype.effectEnd = function (room) {
if (room.phase === 'attack') {
if (room.atk_status.hit) {
room.atk_status.defender.eff_queue.attack = {attack: {damage: true}}
room.atk_status.defender.emit('effectLoop', {rlt: {name: 'attack', id: 'attack', eff: 'damage', tp: 'attack'}})
}
else this.attackEnd(room)
}
else {
room.phase = 'normal'
if (room.player[room.curr_ply].interrupt) {
// end turn immediately
//game.endTurn(room.player[room.curr_ply])
game.frontEnd(room.player[room.curr_ply])
}
else {
for (let pid in room.player) {
let rlt = (pid == room.curr_ply) ? 'your turn' : 'opponent turn'
room.player[pid].emit('phaseShift', {msg: {phase: 'normal phase', action: rlt}})
}
}
}
}
//////////////////////////////////////////////////////////////////////////////////
// !-- action
Game.prototype.checkUse = function (client, it, cb) {
// pre-checking ...
let room = game.room[client._rid]
let card = room.cards[it.id]
if (!client.card_pause.choose) {
if (room.phase === 'effect' || room.phase === 'attack' || room.phase === 'end') return cb( { err: 'choose'} )
if (card.field === 'socket' && room.phase === 'counter') return cb( {err: 'choose'} )
if (room.curr_ply !== client._pid) return cb( {err: 'waiting for opponent' } )
if (card.curr_own !== client._pid) return cb( {err: 'cant use opponent card'})
if (card.cover && card.field === 'life') return cb({err: 'cant use covered card'})
if (card.field === 'socket' && room.phase === 'normal') {
client.card_pause.return = it.id
return game.useCard(client)
}
if (!game.phase_rule.use.normal[room.phase]) return cb( { err: `not allowed in ${room.phase} phase`} )
if (!Object.keys(client.card_pause).length) {
if (Object.keys(client.aura.dicease).length && game.default.all_card[card.name].effect.heal) return cb({err: 'cant use heal effect cards when diceased'})
if (room.cards[it.id].type.base === 'vanish') return cb( {err: 'only available in atk phase'} )
if ((client.stat.stun ||client.action_point <= 0) && room.cards[it.id].type.base !== 'item') return cb( {err: 'not enough action point'} )
if (card.field === 'life' && client.card_amount.hand == 0) return cb( {err: 'no handcard to replace'} )
if (card.field === 'life' && Object.keys(client.aura.silence).length) return cb({err: 'cant use life field cards when silenced'})
}
else
if(card.field === 'life') return cb( {err: 'its not a handcard'} )
}
// choose one check ... if true return else continue
if (game.chooseOne(client, it, cb)) return
switch(card.field){
case 'hand':
let tg = (client.card_pause.use)? room.cards[client.card_pause.use] : (card)
let tp = (client.card_pause.use)? 'swap' : 'use'
if (tp === 'use' && tg.type.effect.mosaic && !client.card_amount.battle) return cb({err: 'no artifact to place on'})
client.card_pause[tp] = it.id
if (tg.type.effect.mosaic) {
room.phase = 'socket'
return cb({err: 'choose artifact to place on'})
}
else {
//room.phase = 'normal'
game.useCard(client)
}
break
case 'life':
if (room.cards[it.id].type.effect.mosaic && !client.card_amount.battle) return cb({err: 'no artifact to place on'})
room.phase = 'choose'
client.card_pause.use = it.id
cb({err: 'choose handcard to replace'})
break
default: break
}
}
Game.prototype.useCard = function (client) {
let room = game.room[client._rid]
let rtn_id = client.card_pause.return
let use_id = (rtn_id != null)? rtn_id : (client.card_pause.use)
let swp_id = client.card_pause.swap
let skt_id = client.card_pause.socket
client.card_pause = {}
room.counter_status.use_id[use_id] = true
let param = {}
param[use_id] = {}
switch (room.cards[use_id].type.base) {
case 'artifact':
if (Object.keys(client.aura.berserk).length || client.buff.quick_draw) game.buff(client, {quick_draw: {personal: false}})
else client.action_point -= 1
param[use_id].to = 'battle'
param[use_id].action = 'equip'
break
case 'item' :
let to = (skt_id != null)? 'socket' : ((rtn_id != null)? 'hand' : 'grave')
let act = (skt_id != null)? 'socket' : ((rtn_id != null)? 'return' : 'use')
param[use_id].to = to
param[use_id].action = act
if (skt_id != null) param[use_id].on = skt_id
if (rtn_id != null) param[use_id].off = room.cards[use_id].bond
break
case 'spell' :
if (client.buff.mana_tide) game.buff(client, {mana_tide: {personal: false}})
else client.action_point -= 1
param[use_id].action = 'cast'
if (room.cards[use_id].type.effect.instant) param[use_id].to = 'grave'
else param[use_id].to = 'altar'
break
default : break
}
if (swp_id != null) {
param[swp_id] = {to: 'life'}
}
let rlt = game.cardMove(client, client._foe, param)
let msg = `${param[use_id].action} ${room.cards[use_id].name}${(swp_id != null)? ` by ${room.cards[swp_id].name}` : ''}`
/*
client.emit('plyUseCard', { msg: {phase: 'normal phase', action: msg}, card: rlt.personal })
client._foe.emit('plyUseCard', { msg: {phase: 'normal phase', action: `foe ${msg}`}, card: rlt.opponent, foe: true })
*/
client.emit('plyUseCard', { msg: {phase: 'counter phase', action: msg}, card: rlt.personal })
client._foe.emit('plyUseCard', { msg: {phase: 'counter phase', action: `foe ${msg}`}, card: rlt.opponent, foe: true })
room.phase = 'counter'
room.counter_status.type = 'use'
room.counter_status.start = 'use'
room.counter_status.last_ply = client
}
Game.prototype.triggerCard = function (client, it, cb) {
// pre-checking ...
let room = game.room[client._rid]
let card = room.cards[it.id]
if (room.phase === 'counter' || room.phase === 'effect') return cb({err: 'choose'})
if (room.curr_ply !== client._pid) return cb({err: 'waiting for opponent'})
if (card.curr_own !== client._pid) return cb( {err: 'cant trigger opponent card'})
if (room.phase === 'socket') {
if (card.type.base !== 'artifact') return cb({err: 'can only socket on artifact'})
client.card_pause['socket'] = it.id
return game.useCard(client)
}
if (room.phase !== 'normal') return cb({err: `not allowed in ${room.phase} phase`})
if (card.type.effect.counter && Object.keys(game.default.all_card[card.name].type.effect).length == 1) return cb({err: 'only available in counter phase'})
if (card.type.base === 'spell' && !card.type.effect.trigger) return cb({err: 'no trigger effect'})
// choose one check ... if true return else continue
if (game.chooseOne(client, it, cb)) return
if (card.type.base === 'artifact') {
if (card.overheat) return cb({err: 'artifact overheat'})
if (card.energy == 0) return cb({err: 'energy lacking'})
card.overheat = true
card.energy -= 1
if (card.energy == 0 && game.default.all_card[card.name].aura) {
param = {}
param[it.id] = false
game.aura(client, param)
}
/*
client.emit('playerTrigger', { msg: {phase: 'normal phase', action: `trigger ${card.name}`}, card: {id: it.id, curr_own: 'personal', from: 'battle'}, rlt: {} })
client._foe.emit('playerTrigger', { msg: {phase: 'normal phase', action: `foe trigger ${card.name}`}, card: {id: it.id, curr_own: 'opponent', from: 'battle'}, rlt: {opponent: true, counter: true} })
*/
room.phase = 'counter'
room.counter_status = {start: 'trigger', type: 'trigger', use_id: {}, counter_id: {}}
room.counter_status.use_id[it.id] = true
client.emit('playerTrigger', { msg: {phase: 'counter phase', action: `trigger ${card.name}`}, card: {id: it.id, curr_own: 'personal', from: 'battle'}, rlt: {} })
client._foe.emit('playerTrigger', { msg: {phase: 'counter phase', action: `foe trigger ${card.name}`}, card: {id: it.id, curr_own: 'opponent', from: 'battle'}, rlt: {opponent: true, counter: true}, foe: true })
}
else {
if (card.type.base === 'item' || (card.type.base === 'spell' && card.type.effect.trigger)) {
console.log(card.lock)
if (card.type.base === 'spell' && card.lock) return cb({err: 'trigger spell takes one turn to unseal'})
room.phase = 'effect'
// send to grave
let param = {}
param[it.id] = {to: 'grave'}
let rlt = game.cardMove(client, client._foe, param)
client.emit('playerTrigger', { msg: {phase: 'effect phase', action: `trigger ${card.name}`}, card: rlt.personal })
client._foe.emit('playerTrigger', { msg: {phase: 'effect phase', action: `foe trigger ${card.name}`}, card: rlt.opponent, foe: true })
console.log('send success')
// effect trigger
param = {trigger: {}}
param.trigger[it.id] = {}
let avail_effect = game.judge(client, client._foe, param)
game.effectTrigger(client, client._foe, avail_effect)
}
}
}
Game.prototype.chooseOne = function (client, it, cb) {
let room = game.room[client._rid]
let card = room.cards[it.id]
if (!client.card_pause.choose) {
if (card.eff_choice) {
room.phase = 'choose'
let param = {msg: {phase: 'choose', cursor: `choose an effect to trigger`}, cid: it.id, rlt: card.eff_choice}
client.emit('chooseOne', param)
client._foe.emit('chooseOne', {msg: {phase: 'choose', cursor: 'opponent choosing effect'}})
client.card_pause.choose = it.id
return true
}
else return false
}
else {
if (client.card_pause.choose !== it.id) return
if (!game.default.all_card[card.name].effect[it.eff]) return
card.curr_eff = it.eff
delete client.card_pause.choose
cb({cursor: `${(card.field === 'life')? 'choose a handcard to replace' : ''}`})
return false
}
}
/////////////////////////////////////////////////////////////////////////////////
// !-- effect apply
Game.prototype.effectTrigger = function (personal, opponent, card_list) {
// card_list = {
// type_1: {
// card_id_1: [effect1, effect2 ...],
// card_id_2 ...
// },
// type_2: {}
// }
//
// effect = { effect: { target: { field: { type: value } } } }
let room = this.room[personal._rid]
let player = {personal: personal, opponent: opponent}
console.log(card_list)
// effect phase of attack enchant will count as attack phase
if(room.phase !== 'attack') room.phase = 'effect'
personal.emit('phaseShift', {msg: {phase: `${room.phase} phase`}})
opponent.emit('phaseShift', {msg: {phase: `${room.phase} phase`}})
for (let tp in card_list) {
for (let id in card_list[tp]) {
let card_name = this.room[personal._rid].cards[id].name
for (let avail_effect of card_list[tp][id]) {
let effect_name = avail_effect.split('_')[0]
let effect = this.default.all_card[card_name].effect[tp][avail_effect]
if (this.choose_eff[effect_name]) {
for (let target in effect) {
let tmp = {id: id, name: card_name, eff: avail_effect, tp: tp, tg: target}
if (effect_name === 'damage')
player[target].dmg_blk.push(effect[target])
if (effect_name === 'steal') {
if (!('ext' in tmp)) tmp.ext = {}
tmp.ext.hand = Object.keys(this.room[personal._rid].cards).reduce( (last, curr) => {
if (this.room[personal._rid].cards[curr].curr_own === opponent._pid && this.room[personal._rid].cards[curr].field === 'hand')
last[curr] = this.room[personal._rid].cards[curr].name
return last
}, {})
}
if (effect_name === 'retrieve') {
if (!('ext' in tmp)) tmp.ext = {}
tmp.ext.deck = Object.keys(this.room[personal._rid].cards).reduce( (last, curr) => {
if (this.room[personal._rid].cards[curr].curr_own === personal._pid && this.room[personal._rid].cards[curr].field === 'deck')
last[curr] = this.room[personal._rid].cards[curr].name
return last
}, {})
}
player[target].emit('effectLoop', {rlt: tmp})
if (!(id in player[target].eff_queue)) player[target].eff_queue[id] = {}
if (!(tp in player[target].eff_queue[id])) player[target].eff_queue[id][tp] = {}
player[target].eff_queue[id][tp][avail_effect] = true
}
}
else
game[effect_name](personal, effect)
}
}
}
if (!Object.keys(personal.eff_queue).length && !Object.keys(opponent.eff_queue).length) this.effectEnd(room)
}
Game.prototype.judge = function (personal, opponent, card_list) {
// card_list = {type: {list}}
// console.log(card_list)
let room = this.room[personal._rid]
let player = {personal: personal, opponent: opponent}
let avail_effect = {}
for (let tp in card_list) {
//avail_effect[tp] = {}
for (let id in card_list[tp]) {
let card = room.cards[id]
let tg_tp = (card.curr_eff)? card.curr_eff : (tp)
let judge = this.default.all_card[card.name].judge[tg_tp]
if (!avail_effect[tg_tp]) avail_effect[tg_tp] = {}
avail_effect[tg_tp][id] = []
for (let effect in judge) {
// for effects don't need to judge
if(!Object.keys(judge[effect]).length) {
if (effect !== 'counter') avail_effect[tg_tp][id].push(effect)
}
// for effects with judges
else {
for (let target in judge[effect]) {
for (let condition in judge[effect][target]) {
let curr_val = null
switch (condition) {
case 'hit':
if (room.atk_status.hit) avail_effect[tg_tp][id].push(effect)
break
case 'hp':
curr_val = player[target].hp
break
case 'handcard':
curr_val = player[target].card_amount.hand
break
case 'battle':
curr_val = player[target].card_amount.battle
default:break
}
if (condition !== 'hit')
if (operation(curr_val, judge[effect][target][condition])) avail_effect[tg_tp][id].push(effect)
}
}
}
}
}
}
return avail_effect
}
/////////////////////////////////////////////////////////////////////////////////
// !-- card effects
Game.prototype.bleed = function (personal, param) {
let room = this.room[personal._rid]
let effect = game.default.all_card[param.name].effect[param.tp][param.eff]
let card_pick = Object.keys(param.card_pick)
let rlt = { card: {bleed: {personal: {}, opponent: {}}} }
let bleed = ((personal.hp - effect[param.tg]) < 0)? personal.hp : (effect[param.tg])//effect[Object.keys(effect)[0]]
if (card_pick.length != bleed) return {err: 'error length of card pick'}
// check err
for (let id of card_pick) {
let card = room.cards[id]
if (card == null) return {err: 'no card id'}
if (card.curr_own !== personal._pid) return {err: 'please choose your card'}
if (card.field !== 'life') return {err: 'can only choose life field card'}
if (!card.cover) return {err: 'cant pick card is unveiled'}
}
// effect
for (let id of card_pick) {
let card = room.cards[id]
card.cover = false
rlt.card.bleed.personal[id] = card.name
}
personal.hp -= bleed
personal.emit('effectTrigger', rlt)
personal._foe.emit('effectTrigger', {card: genFoeRlt(rlt.card)})
return {}
}
Game.prototype.block = function (personal, param) {
let room = this.room[personal._rid]
let card_pick = Object.keys(param.card_pick)
// if block only under trigger type effect
if (card_pick.length != 1) return {err: 'can only choose one card'}
for (let id of card_pick) {
let card = room.cards[id]
if (card == null) return {err: 'no card id'}
if (card.curr_own !== personal._pid) return {err: 'please choose your card'}
if (card.field === 'life' || card.field === 'hand') return {err: 'can only choose battle, altar, socket card'}
let eff = game.default.all_card[card.name].effect
if (eff.counter) if(!eff.counter.block) return {err: 'no block effect'}
if (eff.mosaic) if(!eff.mosaic.block) return {err: 'no block effect'}
if (card.type.base === 'artifact') {
if (card.overheat) return {err: 'artifact overheat'}
if (card.energy <= 0) return {err: 'not enough energy'}
}
}
let tmp = { personal: {} }
for (let id of card_pick) {
let card = room.cards[id]
if (card.type.base === 'item') {
let param = {}
param[id] = {from: card.field, to: 'grave'}
if (card.type.effect.mosaic) param[id].off = card.bond
tmp = game.cardMove(personal, personal._foe, param)
}
if (card.type.base === 'artifact') {
card.overheat = true
card.energy -= 1
tmp.personal[id] = {turn_dn: true}
tmp.opponent = tmp.personal
}
personal.dmg_blk.shift()
}
personal.emit('effectTrigger', {card:{block:{ personal: tmp.personal, opponent: {} }}})
personal._foe.emit('effectTrigger', {card:{block:{ personal: {}, opponent: tmp.opponent }}})
return {}
}
Game.prototype.aura = function (personal, card_list) { // card_list = {cid: true, ...}
let player = {personal: personal, opponent: personal._foe}
let rlt = { stat: {personal: {}, opponent: {}} }
let room = this.room[personal._rid]
for (let cid in card_list) {
let eff = game.default.all_card[room.cards[cid].name].aura
for (let tp in eff) {
for (let tg in eff[tp]) {
if (card_list[cid]) {
player[tg].aura[tp][cid] = true
rlt.stat[tg][tp] = true
}
else {
delete player[tg].aura[tp][cid]
rlt.stat[tg][tp] = false
}
/*
if (player[tg].aura[tp][cid]) {
delete player[tg].aura[tp][cid]
rlt.stat[tg][tp] = false
}
else {
player[tg].aura[tp][cid] = true
rlt.stat[tg][tp] = true
}
*/
}
}
}
personal.emit('effectTrigger', rlt)
personal._foe.emit('effectTrigger', genFoeRlt(rlt))
console.log(personal.aura.cripple)
return {}
}
Game.prototype.buff = function (personal, effect) {
let player = {personal: personal, opponent: personal._foe}
let rlt = { stat: {personal: {}, opponent: {}} }
for (let name in effect) {
for (let target in effect[name]) {
player[target].buff[name] = effect[name][target]
rlt.stat[target][name] = effect[name][target]
}
}
personal.emit('effectTrigger', rlt)
personal._foe.emit('effectTrigger', genFoeRlt(rlt))
return {}
}
Game.prototype.stat = function (personal, effect) {
let player = {personal: personal, opponent: personal._foe}
let rlt = { stat: {personal: {}, opponent: {}} }
for (let name in effect) {
for (let target in effect[name]) {
let tp = (name === 'all')? Object.keys(player[target].stat) : [name]
for (let stat_name of tp) {
player[target].stat[stat_name] = effect[name][target]
rlt.stat[target][stat_name] = effect[name][target]
}
}
}
personal.emit('effectTrigger', rlt)
personal._foe.emit('effectTrigger', genFoeRlt(rlt))
return {}
}
Game.prototype.control = function (personal, param) {
let room = this.room[personal._rid]
let effect = game.default.all_card[param.name].effect[param.tp][param.eff]
let card_pick = Object.keys(param.card_pick)
let rlt = {}
if (card_pick.length != 1) return {err: 'can only choose one card'}
for (let id of card_pick) {
let card = room.cards[id]
if (card == null) return {err: 'no card id'}
if (card.curr_own !== personal._foe._pid) return {err: 'please choose opponent card'}
if (!effect.personal[card.field]) return {err: 'wrong type of chosen card field'}
if (!effect.personal[card.field][card.type.base]) return {err: 'wrong type of chosen card type'}
let param = {}
param[id] = {from: card.field, to: card.field, new_own: 'opponent'}
rlt = this.cardMove(personal._foe, personal, param)
}
personal.emit('effectTrigger', {card:{control:{ personal: rlt.opponent, opponent: {} }}})
personal._foe.emit('effectTrigger', {card:{control:{ personal: {}, opponent: rlt.personal }}})
return {}
}
// break = choose card to send to grave
Game.prototype.break = function (personal, param) {
let room = this.room[personal._rid]
let effect = Object.assign({}, game.default.all_card[param.name].effect[param.tp][param.eff][param.tg])
let card_pick = Object.keys(param.card_pick)
let total_len = 0
for (let tp in effect) {
total_len += effect[tp]
}
if (card_pick.length != total_len) return {err: 'error break length'}
for (let id in param.card_pick) {
let card = room.cards[id]
if (card == null) return {err: 'no card id'}
if (card.curr_own !== personal._foe._pid) return {err: 'please choose opponent card'}
if (card.field !== 'battle' && card.field !== 'altar') return {err: 'error chosen card field'}
if (!('card' in effect) && !(card.type.base in effect)) return {err: 'error card type'}
if (!effect[('card' in effect)? 'card' : card.type.base]) return {err: 'error type length'}
effect[('card' in effect)? 'card' : card.type.base] --
param.card_pick[id] = {new_own: 'personal', to: 'grave'}
}
let rlt = this.cardMove(personal._foe, personal, param.card_pick)
personal.emit('effectTrigger', {card: {break: { personal: rlt.opponent, opponent: {} }}})
personal._foe.emit('effectTrigger', {card: {break: { personal: {}, opponent: rlt.personal }}})
return {}
}
// destroy = send all cards in specific field to grave
Game.prototype.destroy = function (personal, effect) {
let room = this.room[personal._rid]
let player = {personal: personal, opponent: personal._foe}
let mod_eff = Object.assign({}, effect)
//let rlt = { card: { destroy: { personal: {}, opponent: {} } } }
// remove effect which is canceled by aura
let rlt = {}
for (let tg in mod_eff) {
if (Object.keys(player[tg].aura.solidity).length) delete mod_eff[tg].battle
}
let tmp = {personal: {}, opponent: {}}
for (let id in room.cards) {
let card = room.cards[id]
let curr_own = (card.curr_own === personal._pid)? 'personal' : 'opponent'
if (!mod_eff[curr_own]) continue
if (!mod_eff[curr_own][card.field]) continue
tmp[curr_own][id] = {from: card.field, to: 'grave'}
}
for (let tg in mod_eff) {
if (!Object.keys(mod_eff[tg]).length) continue
rlt = this.cardMove(player[tg], player[tg]._foe, tmp[tg])
player[tg].emit('effectTrigger', {card: {destroy: { personal: rlt.personal, opponent: {} }}})
player[tg]._foe.emit('effectTrigger', {card: {destroy: { personal: {}, opponent: rlt.opponent }}})
}
return {}
}
Game.prototype.discard = function (personal, param) {
let room = this.room[personal._rid]
let effect = (room.phase === 'end')
? {card: personal.card_amount.hand + Object.keys(personal.aura.stamina).length*2 - personal.hand_max}
: Object.assign({}, game.default.all_card[param.name].effect[param.tp][param.eff][param.tg])
let card_pick = Object.keys(param.card_pick)
let total_len = 0
for (let tp in effect) {
total_len += effect[tp]
}
if (card_pick.length != total_len) return {err: 'error discard length'}
for (let id in param.card_pick) {
let card = room.cards[id]
if (card == null) return {err: 'no card id'}
if (card.curr_own !== personal._pid) return {err: 'please choose your card'}
if (card.field !== 'hand') return {err: 'please choose hand card'}
if (!('card' in effect) && !(card.type.base in effect)) return {err: 'error card type'}
if (!effect[('card' in effect)? 'card' : card.type.base]) return {err: 'error type length'}
effect[('card' in effect)? 'card' : card.type.base] --
}
let rlt = this.cardMove(personal, personal._foe, param.card_pick)
personal.emit('effectTrigger', {card: {discard: { personal: rlt.personal, opponent: {} }}})
personal._foe.emit('effectTrigger', {card: {discard: { personal: {}, opponent: rlt.opponent }}})
return {}
}
Game.prototype.drain = function (personal, param) {
// check artifact aura
let effect = game.default.all_card[param.name].effect[param.tp][param.eff]
let rlt = { card: {} }
for (let target in effect) {
for (let object in effect[target]) {
for (let type in effect[target][object]) {
rlt.card['drain'] = {}
}
}
}
personal.emit('effectTrigger', rlt)
personal._foe.emit('effectTrigger', rlt)
return {}
}
Game.prototype.draw = function (personal, effect) {
let room = this.room[personal._rid]
let player = {personal: personal, opponent: personal._foe}
let rlt = {personal: {}, opponent: {}}
for (let target in effect) {
for (let object in effect[target]) {
let val = effect[target][object]
let tmp = {}
for (let id in room.cards) {
let card = room.cards[id]
if (card.field === 'deck' && card.curr_own === player[target]._pid) {
tmp[id] = {to: 'hand'}
val --
}
if (!val || (val && (val == effect[target][object] - player[target].card_amount.deck)) ) break
}
let rtn = game.cardMove(player[target], player[target]._foe, tmp)
Object.assign(rlt[target], rtn.personal)
Object.assign(rlt[(target === 'personal')? 'opponent' : 'personal'], rtn.opponent)
}
}
personal.emit('effectTrigger', {card: {draw: {personal: rlt.personal, opponent: {} } } })
personal._foe.emit('effectTrigger', {card: {draw: {opponent: rlt.opponent, personal: {} } } })
return {}
}
Game.prototype.equip = function(personal, param) {
// check artifact aura
let effect = game.default.all_card[param.name].effect[param.tp][param.eff]
let rlt = { card: {} }
for (let target in effect) {
for (let object in effect[target]) {
for (let type in effect[target][object]) {
rlt.card['equip'] = {}
}
}
}
personal.emit('effectTrigger', rlt)
personal._foe.emit('effectTrigger', rlt)
return {}
}
Game.prototype.heal = function (personal, param) {
let room = this.room[personal._rid]
let effect = game.default.all_card[param.name].effect[param.tp][param.eff]