forked from DhSufi/PokemonTeamListCreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Legacy-index.html
123 lines (111 loc) · 5.05 KB
/
Legacy-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Team List Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--<h2>This counter will be incremented manually each time a user complains about receiving a penalty for not checking the list generated by this web: <span>0</span></h2>-->
<h2>Team List Creator from Showdown paste</h2>
<div id="general">
<div id="area1">
<textarea id="paste" placeholder="Paste your team here =)"></textarea>
</div>
<div id="area2">
<div id="data">
<input id="playerName" class="info" placeholder="Player Name" type="text">
<input id="trainerName" class="info" placeholder="Trainer Name in Game" type="text">
<input id="teamName" class="info" placeholder="Battle Team Number / Name" type="text">
<input id="switchName" class="info" placeholder="Switch Profile Name" type="text">
<input id="playerId" class="info" placeholder="Player ID" type="text">
<input id="birth" class="info" placeholder="Date of Birth" type="text">
</div>
<div id="division">
<div>
<input type="radio" id="Junior" name="ageDivision" value="0">
<label for="Junior">Junior</label><br>
</div>
<div>
<input type="radio" id="Senior" name="ageDivision" value="1">
<label for="Senior">Senior</label><br>
</div>
<div>
<input type="radio" id="Master" name="ageDivision" value="2">
<label for="Master">Master</label>
</div>
</div>
<div id="teamlist">
<div>
<input type="radio" id="open" name="sheet" value="open">
<label for="open">Open Team List</label><br>
</div>
<div>
<input type="radio" id="close" name="sheet" value="close">
<label for="close">Staff Team List</label><br>
</div>
</div>
<div id="listLang">
<div class="pool">
<div>
<input type="radio" id="cht" name="radioLang" value="Cht">
<label for="cht">Traditional Chinese</label><br>
</div>
<div>
<input type="radio" id="chs" name="radioLang" value="Chs">
<label for="chs">Simplified Chinese</label><br>
</div>
<div>
<input type="radio" id="en" name="radioLang" value="En">
<label for="en">English</label><br>
</div>
<div>
<input type="radio" id="es" name="radioLang" value="Es">
<label for="es">Spanish</label><br>
</div>
<div>
<input type="radio" id="fre" name="radioLang" value="Fre">
<label for="fre">French</label><br>
</div>
</div>
<div class="pool">
<div>
<input type="radio" id="ger" name="radioLang" value="Ger">
<label for="ger">German</label><br>
</div>
<div>
<input type="radio" id="ita" name="radioLang" value="Ita">
<label for="ita">Italian</label><br>
</div>
<div>
<input type="radio" id="jpn" name="radioLang" value="Jpn">
<label for="jpn">Japanese</label><br>
</div>
<div>
<input type="radio" id="jpnkanji" name="radioLang" value="JpnKanji">
<label for="jpnkanji">Japanese Kanji</label><br>
</div>
<div>
<input type="radio" id="kor" name="radioLang" value="Kor">
<label for="kor">Korean</label><br>
</div>
<div>
</div>
<button id="printButton" onclick="generatePdf(this)">PRINT SELECTED</button>
<h5 id="error"></h5>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="Resources/Pokes/TranslatorPokes.js" ></script>
<script type="text/javascript" src="Resources/Abilities/TranslatorAbilities.js" ></script>
<script type="text/javascript" src="Resources/Items/TranslatorItems.js" ></script>
<script type="text/javascript" src="Resources/Moves/TranslatorMoves.js" ></script>
<script type="text/javascript" src="Resources/Types/TranslatorTypes.js" ></script>
<script type="text/javascript" src="Resources/Showdown/pokedex.js" ></script>
<script type="text/javascript" src="Resources/Showdown/natures.js" ></script>
<script src="./MultiLangFont.js"></script>
<script src="script.js" type="module"></script>
<script src="jspdf.js" type="text/javascript"></script>
<!-- <script src="script.js" type="text/javascript"></script>-->
</html>