-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2097 lines (1942 loc) · 123 KB
/
index.html
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
<!DOCTYPE html>
<html class="" lang="en-US" data-ng-app="app">
<head>
<meta charset="utf-8">
<title>Merge: Eternal Battlegrounds - First Real Video Game On Distributed Ledger</title>
<!-- <meta http-equiv="X-UA-Compatible" content="IE=edge"> -->
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- <link rel="icon" type="image/png" href="http://www.favicon.cc/favicon/726/834/favicon.png"> -->
<!-- <link rel='shortcut icon' type='image/x-icon'/ href='assets/img/favicon.ico' > -->
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE"/>
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon-16x16.png">
<link rel="manifest" href="assets/img/site.webmanifest">
<link rel="mask-icon" href="assets/img/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="assets/img/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="assets/img/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet">
<meta property="og:image" content="assets/img/fb-nfp1200x630.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:description" content="Enter the world of brutal fights, impolite politics, and violent magic. A world generous to the strong and unforgiving to the weak. Enjoy the wildest threesome of video, card and miniature games, based on the distributed ledger.">
<meta property="og:title" content="Merge: Eternal Battlegrounds - First Real Video Game On Distributed Ledger">
<!--<meta property="og:url" content="http://example.com">-->
<!--<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.2.2/css/swiper.min.css">-->
<!--<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/rangeslider.js/2.3.2/rangeslider.min.css">-->
<!--<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" crossorigin="anonymous">-->
<link rel="stylesheet" href="./assets/css/app.css?fileVersion=4">
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-PF2QQX9');</script>
<!-- End Google Tag Manager -->
</head>
<body id="body" data-spy="scroll" data-target="#main-menu" data-offset="180">
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PF2QQX9"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="off-canvas-bg"></div>
<div class="off-canvas-holder">
<div class="off-canvas off-canvas-side-menu">
<button class="off-canvas__close btn-x -dark">
<span>x</span>
</button>
<div class="off-canvas__container">
<ul class="menu-vertical">
<li class="">
<a class="nav-link" href="#intro-section">intro</a>
</li>
<li class="">
<a class="nav-link" href="#solution-section"> solution</a>
</li>
<li class="">
<a class="nav-link" href="#game-section">the game</a>
</li>
<!--<li class="">-->
<!--<a class="nav-link" href="#mechanics-section">game mechanics</a>-->
<!--</li>-->
<li class="">
<a class="nav-link" href="#model-section">Business Model</a>
</li>
<li class="">
<a class="nav-link" href="#cashflow-section">Cash flow</a>
</li>
<li class="">
<a class="nav-link" href="#timeline-section">Roadmap</a>
</li>
<li class="">
<a class="nav-link" href="#team-section">Team/Advisors</a>
</li>
<li class="">
<a class="nav-link" href="#blog-section">Blog</a>
</li>
</ul>
</div>
</div>
</div>
<nav class="menu" id="main-menu">
<div class="container-fluid container-primary h-rel">
<div class="menu__left">
<a class="nav-link" href="#intro-section">intro</a>
<a class="nav-link" href="#solution-section"> solution</a>
<a class="nav-link" href="#game-section">the game</a>
<!--<a class="nav-link" href="#mechanics-section">game mechanics</a>-->
<a class="nav-link" href="#model-section">Business Model</a>
</div>
<a href="/">
<img class="logo" src="assets/img/[email protected]" alt="">
</a>
<div class="menu__right">
<a class="nav-link" href="#cashflow-section">Cash flow</a>
<a class="nav-link" href="#timeline-section">Roadmap</a>
<a class="nav-link" href="#team-section">Team/Advisors</a>
<a class="nav-link" href="#blog-section">blog</a>
</div>
</div>
</nav>
<div class="hamburger">
<div class="hamburger__lines"></div>
</div>
<a href="https://t.me/mergeeb" target="_blank" class="telegram-big icon-telegram-big"></a>
<div class="app-modal modal fade" id="videoModal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal">×</button>
<div class="aspect-ratio-yt">
<iframe width="100%" src=""></iframe>
</div>
</div>
</div>
</div>
</div>
<div class="page-wrapper">
<div class="section section-1" id="section-1">
<div class="section-1__bg-hdl">
<div class="section__bg"></div>
</div>
<div class="section__divider"></div>
<div class="section__content">
<!-- <div class="fog h-z-2 lazyload">-->
<!-- <div class="fog__s3"></div>-->
<!--<img class="fog__s1 lazyload" src="#" data-src="assets/img/smoke-1.png" alt="">-->
<!--<img class="fog__s2 lazyload" src="#" data-src="assets/img/smoke-4.png" alt="">-->
<!-- </div>-->
<div class="orc-container">
<div class="orc h-z-4 ">
<div class="orc__hdl">
<div id="orcParallax">
<img class="orc__s2" src="assets/img/spark-2.png" data-depth="0.2" alt="">
<img class="orc__s3" src="assets/img/spark-big.png" data-depth="0.3" alt="">
<img class="orc__s1" src="assets/img/eth-spark.png" data-depth="0.4" alt="">
</div>
<img class="orc__smoke" src="assets/img/orc-bg2.png" data-depth="0.5" alt="">
<img
class="orc__orcy"
data-sizes="auto"
srcset="assets/img/orc.png 600w,
assets/img/[email protected] 1200w"
src="assets/img/[email protected]"
data-depth="0.7"
alt=""
>
</div>
</div>
<div class="section-1__shadow -t2 h-rel h-z-6"></div>
</div>
<div class="section-1__shadow -t1 h-z-6"></div>
<div class="section-1__texts container-fluid container-primary h-rel h-z-10">
<div class="row no-gutters">
<div class="col-lg-7 offset-lg-5 col-xl-6 offset-xl-6">
<div class="section-1__about">
<h1 id="">
First Real Video Game On Distributed Ledger
</h1>
<h4>
Become A Changer Of A $109 Billion Market
</h4>
<p>Join Rebel Forces To Get The Latest News</p>
<div class="subscribe">
<form>
<input type="email" placeholder="Enter your email address">
<button type="submit">Sign Up</button>
</form>
</div>
<div class="section-1__counter">
<span>Subscribers:</span>
<div class="js-subscribers"></div>
</div>
<div class="section-1__btns">
<a href="assets/merge-one-pager-v1.pdf" class="button -primary">
READ ONE PAGER
</a>
<a href="assets/merge_whitepaper.pdf" class="button -primary">
READ WHITE PAPER
</a>
<a href="" class="button -primary" data-toggle="modal" data-target="#videoModal">
<svg class="icon-yt-btn button__left-icon">
<use xlink:href="#icon-yt-btn"></use>
</svg>
<span>
WATCH INTRO
</span>
</a>
</div>
<div class="social">
<p class="par">
You can find us on:
</p>
<a href="https://t.me/mergeeb" target="_blank" class="button ">
<svg class="icon-telegram">
<use xlink:href="#icon-telegram"></use>
</svg>
</a>
<a href="https://discord.gg/whtwqJk" target="_blank" class="button ">
<svg class="icon-discord">
<use xlink:href="#icon-discord"></use>
</svg>
</a>
<a href="https://twitter.com/mergeeb" target="_blank" class="button">
<svg class="icon-tw">
<use xlink:href="#icon-twitter"></use>
</svg>
</a>
<a href="https://www.facebook.com/mergeeb" target="_blank" class="button">
<svg class="icon-fb">
<use xlink:href="#icon-facebook"></use>
</svg>
</a>
<a href="https://www.linkedin.com/company/mergeeb/" target="_blank" class="button">
<svg class="icon-ln">
<use xlink:href="#icon-linkedin"></use>
</svg>
</a>
<a href="https://www.instagram.com/mergeeb/" target="_blank" class="button">
<svg class="icon-insta">
<use xlink:href="#icon-instagram"></use>
</svg>
</a>
<a href="https://www.youtube.com/channel/UCaCWJcXPcu3Guql8blVpm0A" target="_blank" class="button">
<svg class="icon-yt-vertical">
<use xlink:href="#icon-yt-vertical"></use>
</svg>
</a>
<!--<a href="" target="_blank" class="button">-->
<!--<svg class="icon-btc">-->
<!--<use xlink:href="#icon-bitcoin"></use>-->
<!--</svg>-->
<!--</a>-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section section-seen" id="seen-section">
<div class="section__divider"></div>
<div class="section__content">
<div class="container-fluid container-primary">
<h2 class="h-text-center">As Seen On</h2>
<div class="divider -primary"></div>
<div class="section-seen__logos">
<a href="https://www.newsbtc.com/press-releases/free-market-token-economy-to-reinvent-109-billion-gaming-industry/" target="_blank">
<img src="assets/img/newsbtc.png" style="max-width: 243px" alt="">
</a>
<a href="https://nulltx.com/first-blockchain-project-solving-real-gaming-industry-problems/" target="_blank">
<img src="assets/img/nulltx-logo-white-short.png" style="max-width: 68px" alt="">
</a>
<a href="https://cryptonews.com/icos/blockchain-leads-the-change-of-the-usd-109-billion-gaming-in-1997.htm" target="_blank">
<img src="assets/img/crypto_news_logo.png" style="max-width: 243px" alt="">
</a>
<a href="https://www.coinspeaker.com/2018/06/12/last-blockchain-properly-used-reinvent-game-industry/" target="_blank">
<img src="assets/img/logo_coinspeaker.png" style="max-width: 243px" alt="">
</a>
<!--<a href="https://www.buzzfeed.com/waqarblogger/109-billion-game-industry-to-be-changed-by-blockc-3bc4s" target="_blank">
<img src="assets/img/buzzfeed.svg" style="max-width: 150px" alt="">
</a>-->
<a href="https://www.cryptoandgamers.com/single-post/MERGE---Eternal-Battlegrounds-a-turn-based-tactical-arena-skirmish-game" target="_blank">
<img src="assets/img/cryptoandgamers_logo.png" style="max-width: 150px" alt="">
</a>
</div>
</div>
</div>
</div>
<div class="section section-2" id="intro-section">
<div class="section__divider"></div>
<div class="section__content">
<div class="container-fluid container-primary">
<div class="row align-items-center">
<div class="col-md-6">
<div class="section-2__text">
<h2 id="tst">Intro</h2>
<div class="divider -primary -push"></div>
<p class="par">
<i class="yl-logo">
1
</i>
<span>
DISCOVER how Distributed Ledger solves real gaming problems, including in-game asset ownership.
</span>
</p>
<p class="par">
<i class="yl-logo">
2
</i>
CRUSH YOUR ENEMIES in Merge: Eternal Battlegrounds, a turn-based tactical arena skirmish game created for true gamers - by true gamers.
</p>
<p class="par">
<i class="yl-logo">
3
</i>
EXPLORE the post-apocalyptic world where engaging PvP battles go hand in hand with a great story and exclusively rich lore.
</p>
<!---->
<!--<p class="par">-->
<!--Enter the world of brutal fights, impolite politics, and violent magic. A world generous to the strong and unforgiving to the weak. </p>-->
<!--<p class="par">-->
<!--Enjoy the wild threesome of video, card, and miniature games, based on distributed ledger.-->
<!--</p>-->
<!--<div class="par">-->
<!--Unleash your darkest side to survive the night.-->
<!--</div>-->
<!--<div class="divider -secondary"></div>-->
</div>
<!--<div class="text-slider">-->
<!--<div class="swiper-container">-->
<!--<div class="swiper-wrapper">-->
<!--<div class="swiper-slide">-->
<!--<div class="text-slider__text">-->
<!--CRUSH YOUR ENEMIES in Merge: Eternal Battlegrounds, a turn-based tactical arena skirmish game created for true gamers - by true gamers.-->
<!--</div>-->
<!--</div>-->
<!--<div class="swiper-slide">-->
<!--<div class="text-slider__text">-->
<!--EXPLORE the post-apocalyptic world where engaging PvP battles go hand in hand with a great story and exclusively rich lore.-->
<!--</div>-->
<!--</div>-->
<!--<div class="swiper-slide">-->
<!--<div class="text-slider__text">-->
<!--DISCOVER how Distributed Ledger solves real gaming problems, including in-game asset ownership.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="swiper-pagination"></div>-->
<!--</div>-->
<!--</div>-->
</div>
<div class="col-md-6">
<div class="section-2__yt">
<img src="#" class="lazyload" data-src="assets/img/youtube.jpg" alt="">
<button class="button -play" data-toggle="modal" data-target="#videoModal"></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section section-4" id="solution-section">
<div class="section__bg lazyload" data-bg="assets/img/drawings.jpg"></div>
<div class="section__divider"></div>
<div class="section__content">
<div class="container-fluid container-primary">
<div class="row align-items-xl-center">
<div class=" col-md-6">
<div class="section-4__left">
<div class="shield-minus"></div>
<h2>Flaws Of The Gaming Industry</h2>
<div class="divider -primary -push"></div>
<div class="section-4__desc">
<h5>
Developers Are The Owners Of Your In-Game Assets
</h5>
<p class="par">
In most cases, a game forbid players to share or trade items. Even when players pay real money, all in-game assets legally belong to the game developer.
</p>
<div class="divider -secondary"></div>
</div>
<div class="section-4__desc">
<h5>
Dangers Of The Grey Market
</h5>
<p class="par">
Many players are forced to trade in the grey market, and become victims of scammers. If caught by the game developer, their accounts are suspended.
</p>
<div class="divider -secondary"></div>
</div>
<div class="section-4__desc">
<h5>
Exploitation Of Distributed Ledger
</h5>
<p class="par">
Recent explosion of cryptopet games is a greedy misuse of decentralization possibilities. An obvious money-grab pretending to be a game.
</p>
</div>
</div>
</div>
<div class="col-md-6 ">
<div class="section-4__right">
<div class="shield-plus"></div>
<h2>Our Solutions</h2>
<div class="divider -primary -push"></div>
<div class="section-4__desc">
<h5>
You Are The Property Owner
</h5>
<p class="par">
All Merge: Eternal Battlegrounds in-game items are stored on Distributed Ledger. Players maintain complete ownership of their assets and are free to trade them as they wish.
</p>
<div class="divider -secondary"></div>
</div>
<div class="section-4__desc">
<h5>
Trade Freely And Safely
</h5>
<p class="par">
Merge: Eternal Battlegrounds allows you to sell or buy assets inside and outside the game. This will eliminate risks for gamers and sweep out the scammers.
</p>
<div class="divider -secondary"></div>
</div>
<div class="section-4__desc">
<h5>
A Thrilling, Full-Blooded Game
</h5>
<p class="par">
Merge: Eternal Battlegrounds is a highly competitive video game with stunning 3D models, marvellous animations and most importantly, strong gameplay.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section section-3" id="game-section">
<div class="section__divider"></div>
<div class="section__content">
<div class="container-fluid container-primary">
<div class="row align-items-end -no-gutters">
<div class="col-lg-6 offset-lg-6 h-rel h-z-10">
<div class="section-3__text">
<h2>The GAME</h2>
<div class="divider -primary -push"></div>
<p class="par">
Take the role of an Immortal, an undying being irresistibly compelled to battle others of your kind on the battlegrounds of post-apocalyptic magical Earth. An Earth where Humans, Orcs,
Dwarves and Elves struggle to establish their dominance. A world where new forms of
wildlife rule the land and unknown monsters roam the seas, while civilization is scarce and
scattered around the globe.
</p>
<p class="par">
Control a Warband of 5 characters and fight other Immortals in Player versus Player battles. Experience the wonders of magical Earth via deep storytelling and rich lore in Single Player Campaigns that span multiple episodes.
</p>
<div class="section-3__powered">
<div>Powered by:</div>
<a href="https://unity3d.com/" target="_blank">
<img src="assets/img/unity.png" style="width: 167px" alt="">
</a>
</div>
</div>
</div>
</div>
<div class="paladin h-z-2" id="paladinSmoke">
<img class="paladin__bg lazyload lazypreload" src="#" data-src="assets/img/paladin-smoke.jpg" alt="">
</div>
<!--<div class="fog h-z-4 lazyload">
<div class="fog__s3"></div> -->
<!--<img class="fog__s1 lazyload" src="#" data-src="assets/img/smoke-1.png" alt="">-->
<!--<img class="fog__s2 lazyload" src="#" data-src="assets/img/smoke-4.png" alt="">-->
<!--</div>-->
<div class="paladin h-z-6" id="paladinSkirma">
<img
class="paladin__main lazyload lazypreload"
data-srcset="assets/img/palading.png 600w,assets/img/[email protected] 1100w"
data-src="assets/img/[email protected]"
alt=""
>
<img class="paladin__aura lazyload lazypreload" src="#" data-src="assets/img/red-aura.png" alt="">
</div>
</div>
</div>
</div>
<div class="section section-5" id="mechanics-section">
<div class="section__divider"></div>
<div class="section__content">
<div class="container-fluid container-primary">
<div class="row align-items-md-center no-gutters">
<div class="col-md-5">
<div class="accordion" id="accordion">
<div class="accordion__block">
<img class="accordion__border d-none d-sm-block lazyload" src="#" data-src="assets/img/[email protected]" alt="">
<img class="accordion__border d-sm-none lazyload" src="#" data-src="assets/img/border-line.png" alt="">
<div class="accordion__head" data-toggle="collapse" data-target="#collapse-1">
<buttton class="button -iron-toggle"></buttton>
<h3>Combine</h3>
</div>
<div class="collapse accordion__body collapse show" id="collapse-1" data-parent="#accordion">
<div class="accordion__inner">
<p class="par">
Acquire Characters by combining the 3 different Aspects of Class, Race and Element. For example, combining the Rogue Class with Human Race and Wind Element will create a Human Wind Rogue Character. Each Aspect will have its own minimum and maximum values. These values will be randomized when combined, so each Character will have different stats and skill sets.
</p>
<p class="par">
You will also combine your previously created Characters to get more powerful variations. Combining options will be infinite. This will create boundless possibilities for unique Characters and Battle tactics.
</p>
<img class="lazyload lazypreload" src="#" data-src="assets/img/combine-5.png" alt="">
</div>
</div>
<img class="accordion__border d-none d-sm-block lazyload" src="#" data-src="assets/img/[email protected]" alt="">
<img class="accordion__border d-sm-none lazyload" src="#" data-src="assets/img/border-line.png" alt="">
</div>
<div class="accordion__block">
<div class="accordion__head collapsed" data-toggle="collapse" data-target="#collapse-2">
<buttton class="button -iron-toggle"></buttton>
<h3>Fight</h3>
</div>
<div class="collapse accordion__body" id="collapse-2" data-parent="#accordion">
<div class="accordion__inner">
<p class="par">
Control a warband of 5 characters and fight your opponents in turned-based tactical battles.
</p>
<p class="par">
The action will take place on a custom Battleground created by both players. You will have to establish your dominance by inventing unique tactics and strategies.
</p>
<img class="lazyload lazypreload" src="#" data-src="assets/img/vs.jpg" alt="">
</div>
</div>
<img class="accordion__border d-none d-sm-block lazyload" src="#" data-src="assets/img/[email protected]" alt="">
<img class="accordion__border d-sm-none lazyload" src="#" data-src="assets/img/border-line.png" alt="">
</div>
<div class="accordion__block">
<div class="accordion__head collapsed" data-toggle="collapse" data-target="#collapse-3">
<buttton class="button -iron-toggle"></buttton>
<h3>Compete</h3>
</div>
<div class="collapse accordion__body" id="collapse-3" data-parent="#accordion">
<div class="accordion__inner">
<p class="par">
Compete in two types of seasonal ladders (Normal and Hardcore) and win unique prizes.
</p>
<p class="par">
Each season will last for 3 months and will feature trophies designed for that particular season only.
</p>
<img class="lazyload lazypreload" src="#" data-src="assets/img/board2.jpg" alt="">
</div>
</div>
<img class="accordion__border d-none d-sm-block lazyload" src="#" data-src="assets/img/[email protected]" alt="">
<img class="accordion__border d-sm-none lazyload" src="#" data-src="assets/img/border-line.png" alt="">
</div>
</div>
</div>
<div class="col-md-7">
<div class="accordion-imgs">
<img class="lazyload" src="#" data-src="assets/img/combine-5.png" alt="">
<img class="lazyload" src="#" data-src="assets/img/vs.jpg" alt="">
<img class="lazyload" src="#" data-src="assets/img/board2.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section section-sub lazyload" data-bg="assets/img/texture-1.jpg">
<div class="section__divider"></div>
<div class="section__bg lazyload" data-bg="assets/img/shadow-long.png"></div>
<div class="section__content">
<h3 class="h-text-center">
Join Rebel Forces To Get The Latest News
</h3>
<div class="subscribe">
<form>
<input type="email" placeholder="Enter your email address">
<button type="submit">Sign Up</button>
</form>
</div>
<div class="social">
<p class="par">
You can find us on:
</p>
<a href="https://t.me/mergeeb" target="_blank" class="button ">
<svg class="icon-telegram">
<use xlink:href="#icon-telegram"></use>
</svg>
</a>
<a href="https://discord.gg/whtwqJk" target="_blank" class="button ">
<svg class="icon-discord">
<use xlink:href="#icon-discord"></use>
</svg>
</a>
<a href="https://twitter.com/mergeeb" target="_blank" class="button">
<svg class="icon-tw">
<use xlink:href="#icon-twitter"></use>
</svg>
</a>
<a href="https://www.facebook.com/mergeeb" target="_blank" class="button">
<svg class="icon-fb">
<use xlink:href="#icon-facebook"></use>
</svg>
</a>
<a href="https://www.linkedin.com/company/mergeeb/" target="_blank" class="button">
<svg class="icon-ln">
<use xlink:href="#icon-linkedin"></use>
</svg>
</a>
<a href="https://www.instagram.com/mergeeb/" target="_blank" class="button">
<svg class="icon-insta">
<use xlink:href="#icon-instagram"></use>
</svg>
</a>
<a href="https://www.youtube.com/channel/UCaCWJcXPcu3Guql8blVpm0A" target="_blank" class="button">
<svg class="icon-yt-vertical">
<use xlink:href="#icon-yt-vertical"></use>
</svg>
</a>
<!--<a href="" target="_blank" class="button">-->
<!--<svg class="icon-btc">-->
<!--<use xlink:href="#icon-bitcoin"></use>-->
<!--</svg>-->
<!--</a>-->
</div>
</div>
</div>
<div class="section section-6 lazyload" data-bg="assets/img/drawings-2.jpg" id="model-section">
<div class="section__divider"></div>
<div class="section__content">
<div class="container-fluid container-primary">
<h2 class="h-text-center">Business Model</h2>
<div class="divider -primary"></div>
<p class="section-6__sub par">
Distributed Ledger technology will allow us to disrupt the traditional Trading Card Game business model. As well as to introduce a new financing philosophy with a fresh approach to the modern economy.
</p>
<div class="shield-slider swiper-container">
<!-- Additional required wrapper -->
<div class="swiper-wrapper">
<!-- Slides -->
<div class="swiper-slide">
<div class="shield-1 lazyload"></div>
<h3>A Brand New Approach</h3>
<p class="par">
The traditional TCG business model builds wealth by selling as much cards as possible.
Merge: Eternal Battlegrounds won’t sell any cards. Instead, the players will acquire the cards by playing the game and enjoying the full gaming experience for free.
</p>
</div>
<div class="swiper-slide">
<div class="shield-2 lazyload"></div>
<h3>Free Market Benefits</h3>
<p class="par">
All in-game deals will be processed in our Tokens. Players will trade in-game items in a
decentralized free market. By not selling cards ourselves, we are not setting their price. The
Invisible hand of the free market will take care of that.
</p>
</div>
<div class="swiper-slide">
<div class="shield-3 lazyload"></div>
<h3>Monetization</h3>
<p class="par">
Merge: Eternal Battlegrounds will provide an in-game Auction House, where players will be able to sell their
items for a small fee. Furthermore, we’ll sell unique cosmetic items and various services,
which will not affect gameplay.
</p>
</div>
</div>
<!-- If we need pagination -->
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
<div class="section section-cashflow lazyload" id="cashflow-section">
<div class="section__divider"></div>
<div class="section__content">
<div class="container-fluid container-primary h-rel h-z-10">
<div class="row">
<div class="col-lg-5">
<h2 class="h-text-center">Cash Flow Projection</h2>
<div class="divider -primary"></div>
<div class="calc ">
<div class="calc__rows">
<div class="calc__row">
<div>
In game transaction cut
</div>
<div>
<span class="transaction-cut">
0
</span>
<span> €</span>
</div>
</div>
<img class="calc__divider lazyload" src="#" data-src="assets/img/[email protected]" alt="">
<div class="calc__row">
<div>
Cosmetics
</div>
<div>
<span class="cosmetics">
0
</span>
<span> €</span>
</div>
</div>
<img class="calc__divider lazyload" src="#" data-src="assets/img/[email protected]" alt="">
<div class="calc__row">
<div>
Ladder entrance fee
</div>
<div>
<span class="ladder-entrance">0</span>
<span> €</span>
</div>
</div>
<img class="calc__divider lazyload" src="#" data-src="assets/img/[email protected]" alt="">
<div class="calc__row">
<div>
Ransom
</div>
<div>
<span class="ransom">
0
</span>
<span> €</span>
</div>
</div>
</div>
<div class="calc__range-slider">
<input
type="range"
min="2019"
max="2023"
step="0.005"
value="2019"
data-orientation="horizontal"
>
<img class="calc__grads lazyload" src="#" data-src="assets/img/[email protected]" alt="">
<div class="calc__years">
<span>2019</span>
<span>2020</span>
<span>2021</span>
<span>2022</span>
<span>2023</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="horizont">
<div class="horizont__hdl">
<img class="horizont__view lazyload " src="#" data-src="assets/img/horizont.png" alt="">
<img class="horizont__view lazyload js-horizont-view" src="#" data-src="assets/img/horizont.png" alt="">
</div>
</div>
<div class="section-cashflow__shadow h-full-abs lazyload" data-bg="assets/img/cash-shadow.png"></div>
<div class="horizont">
<div class="horizont__hdl">
<img class="horizont__s1 lazyload" src="#" data-src="assets/img/cash-smoke-4.png" alt="">
<img class="horizont__s2 lazyload" src="#" data-src="assets/img/cash-smoke-2.png" alt="">
<img class="horizont__paladin lazyload" src="#" data-src="assets/img/paladin-cash.png" alt="">
<img class="horizont__s4 lazyload" src="#" data-src="assets/img/cash-smoke-1.png" alt="">
</div>
</div>
</div>
</div>
<!--<div class="section section-crowdsale lazyload" id="crowdsale-section">
<div class="section__divider"></div>
<div class="section__content">
<h2 class="h-text-center">Crowdsale Waves And Token Distribution</h2>
<div class="divider -primary -push" style="margin-bottom: 50px"></div>
<div class="container-fluid container-primary h-rel h-z-10">
<div class="row">
<div class="col-md-6">
<div class="section-crowdsale__graph-hdl h-rel">
<div class="section-crowdsale__title">
<img class=" lazyloaded h-block" src="assets/img/[email protected]" data-src="assets/img/[email protected]" alt="">
<h4>
Crowdsale Stages
</h4>
<img class="lazyloaded h-block" src="assets/img/[email protected]" data-src="assets/img/[email protected]" alt="">
</div>
<img class=" section-crowdsale__graph lazyload" data-src="assets/img/bars.png" alt="">
<img class="section-crowdsale__brd lazyloaded" src="assets/img/[email protected]" data-src="assets/img/[email protected]" alt="">
</div>
</div>
<div class="col-md-6 h-rel">
<div class="section-crowdsale__graph-hdl h-rel">
<div class="section-crowdsale__title">
<img class=" lazyloaded h-block" src="assets/img/[email protected]" data-src="assets/img/[email protected]" alt="">
<h4>
Distribution of Merge: Eternal Battlegrounds Tokens
</h4>
<img class="lazyloaded h-block" src="assets/img/[email protected]" data-src="assets/img/[email protected]" alt="">
</div>
<img class=" section-crowdsale__graph lazyload" data-src="assets/img/circles.png" alt="">
<img class="section-crowdsale__brd lazyloaded" src="assets/img/[email protected]" data-src="assets/img/[email protected]" alt="">
</div>
</div>
</div>
</div>
</div>
</div> -->
<div class="section section-7" id="timeline-section">
<div class="section__divider"></div>
<div class="section__content">
<div class="timeline">
<div class="timeline__circle lazyload">
<h2>Roadmap</h2>
</div>
<div class="timeline__milestone -t1">
<div class="no -t1 lazyload"></div>
<h3>2017 October</h3>
<p class="par">
Merge: Eternal Battlegrounds Idea
</p>
<div class="timeline__check">
<span class="icon-check"></span>
<span>Completed</span>
</div>
</div>
<div class="timeline__milestone -t2">
<div class="no -t2 lazyload"></div>
<h3>2017 November </h3>
<p class="par">
Secured 150k Eur Budget
</p>
<div class="timeline__check">
<span class="icon-check"></span>
<span>Completed</span>
</div>
</div>
<div class="timeline__milestone -t3">
<div class="no -t3 lazyload"></div>
<h3>
2017 December
</h3>
<p class="par">
Start Working On Game Design And Prototyping
</p>
<div class="timeline__check">
<span class="icon-check"></span>
<span>Completed</span>
</div>
</div>
<div class="timeline__milestone -t4">
<div class="no -t4 lazyload"></div>
<h3>2018 Q3</h3>
<p class="par">
Game Design Blueprint Finished
</p>
<div class="timeline__check">
<span class="icon-check"></span>
<span>Completed</span>
</div>
</div>
<div class="timeline__milestone -t5">
<div class="no -t5 lazyload"></div>
<h3>2019 Q1 </h3>
<p class="par">
Start Of Game Development
</p>
</div>
<div class="timeline__milestone -t6">
<div class="no -t6 lazyload"></div>
<h3>2019 Q3</h3>
<p class="par">
Finalising Base Game Mechanics
</p>
</div>
<div class="timeline__milestone -t7">
<div class="no -t7 lazyload"></div>
<h3>2019 Q4</h3>
<p class="par">
First Pre-Alpha Playable Build
</p>
</div>
<div class="timeline__milestone -t8">
<div class="no -t8 lazyload"></div>
<h3>2020 and Beyond</h3>
<p class="par">
Development of Different Play Modes And New Game Features
</p>
</div>
</div>
</div>
</div>
<div class="section section-8 lazyload" id="team-section">
<div class="section__divider"></div>
<div class="section__content">
<h2>Team</h2>
<div class="divider -primary"></div>
<div class="container-fluid container-primary">
<div class="row justify-content-center">
<div class="col-md-4">
<div class="person">
<div class="person__img-hold">
<img class="lazyload" src="#" data-src="assets/img/m14.png" alt="">
</div>
<!--<img src="assets/img/mst.png" alt="" class="person__img">-->
<div class="person__name">
Šarūnas Ledas
</div>
<div class="person__sub">
<span>
CTO
</span>
<a target="_blank" href=" https://www.linkedin.com/in/sledas/">
<svg class="icon-ln">
<use xlink:href="#icon-linkedin"></use>
</svg>
</a>
</div>
<p class="person__desc par">
Always looking for fresh solutions and aiming for highest quality in games and visual apps, Šarūnas is a well-known figure in the gaming industry. He is a Co-founder and CEO of Tag of Joy, a game development studio that has garnered international success with games like Monster Buster: World Invasion and Bear Care, as well as numerous awards for other products. A passionate gamer himself, Šarūnas also teaches coding at Vilnius University and is a board member of Lithuanian Game Developers Association.
</p>
<div class="person__socials">
<a target="_blank" href=" https://www.linkedin.com/in/sledas/">
<svg class="icon-ln">
<use xlink:href="#icon-linkedin"></use>
</svg>
</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="person">
<div class="person__img-hold">
<img class="lazyload" src="#" data-src="assets/img/m15.png" alt="">
</div>
<!--<img src="assets/img/mst.png" alt="" class="person__img">-->