-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfaq.html
More file actions
108 lines (103 loc) · 5.39 KB
/
faq.html
File metadata and controls
108 lines (103 loc) · 5.39 KB
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
<html>
<head>
<meta charset="UTF-8" />
<title>FAQ - Heroes Patch Notes</title>
<link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.6/flatly/bootstrap.min.css" rel="stylesheet" integrity="sha384-XYCjB+hFAjSbgf9yKUgbysEjaVLOXhCgATTEBpCqT1R3jvG5LGRAK5ZIyRbH5vpX" crossorigin="anonymous">
<link rel="stylesheet" href="http://localhost:8000/css/front.css" type="text/css" />
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#collapsed-nav">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://localhost:8000">Heroes Patch Notes</a>
</div>
<div class="collapse navbar-collapse" id="collapsed-nav">
<ul class="nav navbar-nav">
<li><a href="http://localhost:8000/faq.html">FAQ</a></li>
</ul>
</div>
</div>
</nav>
<article class="container">
<div class="row">
<div class="col-lg-12">
<h2>FAQ</h2>
<div class="panel panel-primary">
<div class="panel-heading">
<strong>What am I looking at?</strong>
</div>
<div class="panel-body">
<p>Blizzard periodically releases updates and changes for Heroes of the Storm as patch notes. I parse these patch notes for talents, abilities, and hero names, and link sections to relevant heroes. You can then select a hero and see the changes affecting them through patch history.</p>
</div>
</div>
<hr>
<div class="panel panel-primary">
<div class="panel-heading">
<strong>Does this have ALL the changes?</strong>
</div>
<div class="panel-body">
<p>No, currently I only pull Hero, Design and Gameplay, and Talents sections from patch notes. The idea is to show changes that will have the biggest impact to gameplay.</p>
</div>
</div>
<hr>
<div class="panel panel-primary">
<div class="panel-heading">
<strong>I already read the patch notes, will this help me?</strong>
</div>
<div class="panel-body">
<p>Probably not, this is aimed more at player's who want to quickly see why a hero feels different. Let's say I haven't played Raynor in a while (which is true), I can quickly go back through his most recent changes without digging through several long patch note files.</p>
</div>
</div>
<hr>
<div class="panel panel-primary">
<div class="panel-heading">
<strong>What if I want to see patch notes in their entirety?</strong>
</div>
<div class="panel-body">
<p>Cool, I will direct you to a great post by <a href="https://www.reddit.com/user/Vekkul">/u/Vekkul</a> over at the Blizzard forums, <a href="http://us.battle.net/heroes/en/forum/topic/18301004598">The Patch History</a> for a list of all patch notes.</p>
</div>
</div>
<hr>
<div class="panel panel-primary">
<div class="panel-heading">
<strong>I've found a problem, how can I get it fixed?</strong>
</div>
<div class="panel-body">
<p>Excellent, send me an email with as much detail as possible and it'll get updated.</p>
</div>
</div>
<hr>
<div class="panel panel-primary">
<div class="panel-heading">
<strong>Why is there no mention of scaling changes/increased structure damage/battleground changes?</strong>
</div>
<div class="panel-body">
<p>If a change doesn't mention a hero, talent, or ability, it is not linked to a hero. This site shows changes related to heroes. If the community desires sections with these more 'meta' changes, I may find a way to add them in the future.</p>
</div>
</div>
<hr>
<div class="panel panel-primary">
<div class="panel-heading">
<strong>Why no Bug Fixes section?</strong>
</div>
<div class="panel-body">
<p>In my mind, bug fixes occasionally change gameplay (Ex: Chen's Flying Kick) but more often correct things that are not normal gameplay (Ex: Zeratul's Void Prison causing the Punisher to fly off the map). If there are strong feelings toward including bug fixes I might look to do this in the future.</p>
</div>
</div>
</div>
</div>
</article>
<footer class="container">
<p>All patch notes and character info copyright © Blizzard Entertainment · This website is not affiliated with Blizzard Entertainment in any way</p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</body>
</html>