-
Notifications
You must be signed in to change notification settings - Fork 1
/
fakemonGen.html
141 lines (139 loc) · 4.85 KB
/
fakemonGen.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Pokemon D&D Resources - Fakemon Gen - 2</title>
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<hr>
<div class="fullSection">
<h3>Name & Level</h3>
<div class="inputSection">
<div class="nameLvlInp">
<input id="pokemonName" placeholder="Name of Pokemon">
<input id="pokemonLevel" placeholder="Level of Pokemon">
</div>
<h3>Base Stats</h3>
<div class="statInp">
<input id="basehp" placeholder="Base HP">
<input id="baseatk" placeholder="Base Attack">
<input id="basedef" placeholder="Base Defense">
<input id="basespatk" placeholder="Base Sp. Attack">
<input id="basespdef" placeholder="Base Sp. Defense">
<input id="basespeed" placeholder="Base Speed">
</div>
<h4>IVs</h4>
<div class="statInp">
<input class="ivInp" id="hpIV" type="number" min="0" max="31" placeHolder="HP" />
<input class="ivInp" id="atkIV" type="number" min="0" max="31" placeHolder="Atk" />
<input class="ivInp" id="defIV" type="number" min="0" max="31" placeholder="Def" />
<input class="ivInp" id="spatkIV" type="number" min="0" max="31" placeholder="SpAtk">
<input class="ivInp" id="spdefIV" type="number" min="0" max="31" placeholder="SpDef" />
<input class="ivInp" id="speedIV" type="number" min="0" max="31" placeholder="Speed" />
</div>
<h4>EVs</h4>
<div class="statInp">
<input class="ivInp" id="hpEV" type="number" min="0" max="255" placeHolder="HP" />
<input class="ivInp" id="atkEV" type="number" min="0" max="255" placeHolder="Atk" />
<input class="ivInp" id="defEV" type="number" min="0" max="255" placeholder="Def" />
<input class="ivInp" id="spatkEV" type="number" min="0" max="255" placeholder="SpAtk">
<input class="ivInp" id="spdefEV" type="number" min="0" max="255" placeholder="SpDef" />
<input class="ivInp" id="speedEV" type="number" min="0" max="255" placeholder="Speed" />
</div>
<h4>Nature:</h4>
<select class="natInp" id="pokemonNature">
<option value="Adamant">
Adamant
</option>
<option value="Bashful">
Bashful (Neutral)
</option>
<option value="Bold">
Bold
</option>
<option value="Brave">
Brave
</option>
<optionvalue="Calm">
Calm
</option>
<option value="Careful">
Careful
</option>
<option value="Docile">
Docile (Neutral)
</option>
<option value="Gentle">
Gentle
</option>
<option value="Hardy">
Hardy (Neutral)
</option>
<option value="Hasty">
Hasty
</option>
<option value="Impish">
Impish
</option>
<option value="Jolly">
Jolly
</option>
<option value="Lax">
Lax
</option>
<option value="Lonely">
Lonely
</option>
<option value="Mild">
Mild
</option>
<option value="Modest">
Modest
</option>
<option value="Naive">
Naive
</option>
<option value"Naughty">
Naughty
</option>
<option value="Quiet">
Quiet
</option>
<option value="Quirky">
Quirky (Neutral)
</option>
<option value="Rash">
Rash
</option>
<option value="Relaxed">
Relaxed
</option>
<option value="Sassy">
Sassy
</option>
<option value="Serious">
Serious (Neutral)
</option>
<option value="Timid">
Timid
</option>
</select>
<br>
<button class="button" onclick="checkMon()">Create Fakemon!</button>
</div>
<hr>
<div id="pokeGen">
<!--Table data from JS will be produced here-->
</div>
</div>
<footer>
Created By: Garrett Everts
</footer>
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/data.js"></script>
<script type="text/javascript" src="js/newScript.js"></script>
</body>
</html>