-
Notifications
You must be signed in to change notification settings - Fork 0
/
battle-screen.html
150 lines (150 loc) · 5.69 KB
/
battle-screen.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
<!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" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Bungee&family=Goldman:wght@700&family=Orbitron:wght@800&family=Righteous&family=Teko:wght@600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="style.css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<script
src="https://kit.fontawesome.com/6cd6827a69.js"
crossorigin="anonymous"
></script>
<title>Pokemon Battles</title>
</head>
<body>
<div class="loading-screen align-center">
<div class="loading-screen__image-wrapper">
<img class="loading-screen__image" src="" />
<p>Loading...</p>
</div>
</div>
<div class="battle-container">
<div class="backpack">
<ul class="yourPkmnList"></ul>
<div class="bag">
<h3>Press Select to Pick An Item</h3>
<ul class="bag-title">
<li class="bag-title__item">
<span></span>
<span></span>
<span>Item</span>
<span>Effect</span>
</li>
</ul>
<ul class="bag-list">
<li class="bag-list__item bag-item--selected">
<span></span>
<span class="bag-item-img exit-img bag-item-img--selected"
><i class="fa-solid fa-xmark"></i
></span>
<span>Exit</span>
<span></span>
</li>
<li class="bag-list__item">
<span></span>
<img class="bag-item-img potion-img" />
<span>Potion</span>
<span>Restores a Pokémon's HP by 15.</span>
</li>
<li class="bag-list__item">
<span></span>
<img class="bag-item-img super-potion-img" />
<span>Super Potion</span>
<span>Restores a Pokémon's HP by 25.</span>
</li>
<li class="bag-list__item">
<span></span>
<img class="bag-item-img pokeball-img" />
<span>Pokeball</span>
<span>Use to capture pokemon.</span>
</li>
</ul>
<p>Note: You can only use 5 item per turn.</p>
</div>
</div>
<div class="sky-background">
<div class="opponent-health">
<p class="opponent-health__name"></p>
<div class="opponent-health__panel">
<div class="opponent-health__wrapper">
<span class="opponent-health__title">HP</span>
<span class="opponent-health__bar">
<div class="opponent-health__bar--fill"></div>
</span>
</div>
<span class="opponent-health__point"
><span class="opponent-health__active"></span>/<span
class="opponent-health__total"
></span
></span>
</div>
</div>
</div>
<div class="grass-background">
<div class="opponent">
<i class="opponent-energy"></i>
<img src="" class="opponent__img" />
<div class="opponent__circle"></div>
</div>
</div>
<div class="player-wrapper">
<div class="player">
<i class="player-energy"></i>
<img src="" class="player__img" />
<div class="player__circle"></div>
</div>
<div class="player-health">
<p class="player-health__name"></p>
<div class="player-health__panel">
<div class="player-health__wrapper">
<span class="player-health__title">HP</span>
<span class="player-health__bar">
<div class="player-health__bar--fill"></div>
</span>
</div>
<span class="player-health__point"
><span class="player-health__active"></span>/<span
class="player-health__total"
></span
></span>
</div>
</div>
</div>
<div class="infobox">
<div class="infobox__container infobox__container--yellow">
<p class="infobox__text">...</p>
</div>
<div class="infobox__container infobox__container--red option-grid">
<span class="option option--attack"
><span class="arrow arrow--selected">►</span>attack</span
>
<span class="option option--bag"
><span class="arrow">►</span>bag</span
>
<span class="option option--pokemon"
><span class="arrow">►</span>pkmon</span
>
<span class="option option--run"
><span class="arrow">►</span>run</span
>
</div>
<!-- <div class="infobox__container infobox__container--red option-grid">
<span class="option-attack option-attack--1"><span class="arrow arrow--selected">►</span>Electric</span>
<span class="option-attack option-attack--2"><span class="arrow">►</span>Charge</span>
<span class="option-attack option-attack--3"><span class="arrow">►</span>Stun</span>
<span class="option-attack option-attack--4"><span class="arrow">►</span>Tailwhip</span>
</div> -->
</div>
</div>
<script src="./src/battleground.js"></script>
</body>
</html>