forked from EntropiaFox/astranauta.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makecards.html
99 lines (83 loc) · 3.76 KB
/
makecards.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--5ETOOLS_CMP-->
<!--5ETOOLS_ANALYTICS-->
<!--5ETOOLS_ADCODE-->
<meta charset="utf-8">
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Make RPG Cards JSON - 5etools</title>
<link rel="manifest" href="manifest.webmanifest">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/jquery-ui-slider-pips.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="favicon.png">
<script>if ("serviceWorker" in navigator) navigator.serviceWorker.register("/sw.js");</script>
<script type="text/javascript" src="js/styleswitch.js"></script>
<script type="text/javascript" src="js/navigation.js"></script>
<script type="text/javascript" src="js/browsercheck.js"></script>
<style>
input[type=checkbox] {
margin: 0;
}
label {
margin-bottom: 0;
display: block;
}
/* region typeahead */
ul.typeahead li a {
display: flex;
align-items: center;
}
/* endregion */
</style>
</head>
<body>
<div class="viewport-wrapper">
<header class="hidden-xs hidden-sm page__header">
<div class="container">
<h1 class="page__title">RPG Cards JSON Builder</h1>
<p class="page__subtitle">Build and export card JSON data.</p>
</div>
</header>
<nav class="container page__nav" id="navigation"><ul class="nav page__nav-inner" id="navbar"></ul></nav>
<div class="cancer__wrp-leaderboard"><!--5ETOOLS_AD_LEADERBOARD--></div>
<div class="cancer__wrp-sidebar-rhs"><!--5ETOOLS_AD_RIGHT_1--><div class="cancer__sidebar-rhs-inner"><!--5ETOOLS_AD_RIGHT_2--></div></div>
<div class="container view-col-wrapper mt-2">
<div class="view-col overflow-y-auto" style="flex: 3;">
<p>This tool can be used to create data compatible with the <a href="https://crobi.github.io/rpg-cards/generator/generate.html" rel="noopener">RPG Cards</a> app.</p>
<p>Icons are taken from the open-source <i>RPG Cards</i> code, which is in turn sources icons from <a href="https://game-icons.net/" rel="noopener">Game-icons.net</a>. Most of the icons available there should be available here.</p>
<hr class="hr-0">
<h4>Configuration</h4>
<div id="wrp_config"></div>
</div>
<div id="wrp_main" class="view-col flex-col" style="flex: 7;"></div>
</div>
</div>
<!--5ETOOLS_SCRIPT_ANCHOR-->
<!--5ETOOLS_AD_ADHESION-->
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/utils-ui.js"></script>
<script type="text/javascript" src="lib/localforage.js"></script>
<script type="text/javascript" src="js/omnidexer.js"></script>
<script type="text/javascript" src="js/omnisearch.js"></script>
<script type="text/javascript" src="js/render.js"></script>
<script type="text/javascript" src="js/render-card.js"></script>
<script type="text/javascript" src="js/scalecreature.js"></script>
<script type="text/javascript" src="js/filter.js"></script>
<script type="text/javascript" src="js/filter-bestiary.js"></script>
<script type="text/javascript" src="js/filter-items.js"></script>
<script type="text/javascript" src="js/filter-spells.js"></script>
<script type="text/javascript" src="js/makecards.js"></script>
<script type="text/javascript" src="lib/jquery.js"></script>
<script type="text/javascript" src="lib/jquery-ui.js"></script>
<script type="text/javascript" src="lib/jquery-ui-slider-pip.js"></script>
<script type="text/javascript" src="js/list2.js"></script>
<script type="text/javascript" src="lib/elasticlunr.js"></script>
<script type="text/javascript" src="lib/bootstrap-typeahead.js"></script>
<script type="text/javascript" src="https://crobi.github.io/rpg-cards/generator/js/icons.js"></script>
</body>
</html>