forked from chain-counter/chain-counter.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmore.html
58 lines (56 loc) · 2.21 KB
/
more.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
<!DOCTYPE html>
<html>
<head>
<title>Chain Counter</title>
<meta name="description" content="Chain Counter - A Tool for Counting SOS Chains in Pokemon!">
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/pokesprite.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="js/pokesprite.min.js"></script>
<script src="js/bootstrap.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-57282086-4', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="padding">
<br>
<h3>IVs</h3>
<ul>
<li>0 - 4: No guaranteed IVs</li>
<li>5 - 9: 1 perfect IV</li>
<li>10 - 19: 2 perfect IVs</li>
<li>20 - 29: 3 perfect IVs</li>
<li>30 - 255: 4 perfect IVs</li>
</ul>
<h3>Hidden abilities</h3>
<ul>
<li>0 - 9: 0% chance</li>
<li>10 - 19: 5% chance</li>
<li>20 - 29: 10% chance</li>
<li>30 - 255: 15% chance</li>
</ul>
<h3>Shiny - <span class="pkspr pkmn-charizard color-shiny"></span></h3>
<p>70 - 255 gives you a 1/1024 chance of encountering a shiny. If you have the shiny charm, it is 1/683.</p>
<br>
<p>All of these statistics are given to you live under the counter!</p>
<h5>Pro tips</h5>
<ul>
<li><h6>Keyboard shortcuts</h6><ul>
<li>Press the space bar or the right arrow key to increment the counter by one!</li>
<li>Press the backspace key or the left arrow key to decrement the counter by one!</li>
<li>Press the escape key to reset the counter!</li>
</ul></li>
<li>All shiny odds shown under the counter assume you don't have the shiny charm.</li>
</ul>
<script type="text/javascript">
PkSpr.process_dom();
</script>
</body>
</html>