-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (65 loc) · 3.02 KB
/
Copy pathindex.html
File metadata and controls
70 lines (65 loc) · 3.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Metin2 - Catch the King helper</title>
<link href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/i18next@21.7.0/dist/umd/i18next.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/i18next-http-backend@1.2.0/i18nextHttpBackend.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/i18next-browser-languagedetector@6.1.1/i18nextBrowserLanguageDetector.min.js"></script>
<script src="helper.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
<script src="https://cdn.jsdelivr.net/npm/clipboard@2/dist/clipboard.min.js"></script>
<script src="//cookieinfoscript.com/js/cookieinfo.min.js" type="text/javascript" id="cookieinfo"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-152625022-1"></script>
<script>
if (/wadeira.github.io\/ctk-helper/.test(location.href)) {
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-152625022-1');
}
</script>
</head>
<body>
<div class="container" id="app">
<img src="./2g.png" class="logo">
<h2 data-i18n="title"></h2>
<div id="canvas-holder"></div>
<ul class="alerts">
<li v-if="warnAt4" data-i18n="remind_play_cards_below4"></li>
</ul>
<div class="controls">
<i onclick="undo()" class="fa fa-undo" i18n-title="undo"></i>
<i onclick="redo()" class="fa fa-redo" i18n-title="redo"></i>
<i onclick="restart()" class="fas fa-eraser" i18n-title="clear"></i>
<i onclick="_savegame()" class="fas fa-save" i18n-title="save"></i>
<i onclick="_loadgame()" class="fas fa-file-upload" i18n-title="import"></i>
<i onclick="openInstructions()" class="fas fa-question" i18n-title="help"></i>
</div>
<div>
<p data-i18n="remaining_cards"></p>
<table class="remaining-cards">
<tr>
<td v-for="card of Object.keys(cards_remaining)" :style="remainingCardStyle(card)">{{ card == '6' ? 'K' : card }}</td>
</tr>
<tr>
<td v-for="card of cards_remaining" style="background: black">{{ card }}</td>
</tr>
</table>
</div>
<hr>
<div class="footer">
<p>Made with <i class="fas fa-heart"></i> for <img src="./plague.png"> <i>Plague</i></p>
<a href="https://github.com/wadeira/ctk-helper"><i class="fab fa-github"></i> Github</a>
</div>
</div>
</body>
</html>