forked from O-Nemet/bgknowhow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintroduction.php
More file actions
30 lines (28 loc) · 3.68 KB
/
introduction.php
File metadata and controls
30 lines (28 loc) · 3.68 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
<?php
include_once('header.php');
?>
<h2 class="page_title">Introduction</h2>
<p class="intro">
<b style="font-weight: bold;">“Seven fresh opponents. Are you ready?”</b>
<br><br>
The game of Hearthstone Battlegrounds is a fascinating one... From the hero selection, the minion type bans, the matchup lottery, the tavern rolls all the way to the random attacks, every game of Battlegrounds is a different beast of odds, which all of us players aim to tame. The ebbs and flows of randomness strike us again and again, and yet we can not do anything but return, always hoping to get kissed by lady luck again.
<br><br>
While playing and while watching streams, I picked up many small tidbits of information that improved me as a player. But with over 80 heroes, over 160 minions and the next game always around the corner, this strategic insight was kinda fleeting. I wanted a place to store and find this knowledge quickly, and a Google Doc was just not good enough anymore. Therefore, I did create this website to be a hub of knowledge and know-how.
<br><br>
If you happen to be totally new to Battlegrounds, I suggest reading about the basics in this excellent <a href="https://hearthstone.fandom.com/wiki/Battlegrounds" target="_blank">introduction article</a> on Hearthstone Wiki, first. But if you are looking for strategies or are already experienced enough to provide your own input about the know-how of any hero or minion, head over to the <a href="https://bgknowhow.com/bgstrategy/?show=heroes">strategy section</a> to read, vote or contribute.
<br><br>
I hacked this website together during my latest vacation. Therefore, it is pretty basic, not very mobile friendly and there will be bugs of course. But I wanted to get it out there and provide the community with some tools that were missing up until now. Over time, many enhancements will be implemented, but rest assured that all the data you enter today will still be here tomorrow.
<br><br>
If you want to engage in a discussion about this site, how to improve it (it is open source after all), additional features and stuff like that, consider checking out the <a href="https://github.com/O-Nemet/bgknowhow/discussions" target="_blank">discussion board on GitHub</a> or join the Competitive Battleground Discord server via <a href="https://discord.gg/RUsfdacMwA" target="_blank">https://discord.gg/RUsfdacMwA</a>.
<br><br>
One of the key features of this website is the provisioning of data, defining the different Battleground entities (heroes, minions, buddies) and their properties in JSON/CSV format. You can find these files and basic examples of implementation under the <a href="https://bgknowhow.com/bgjson/index.php">BGJSON</a> link. Feel free to use this for any content you'd like to produce. If you do stumble upon a bug, please be so kind to submit a <a href="https://github.com/O-Nemet/bgknowhow/issues" target="_blank">bug report on GitHub</a>.
<br><br>
This project was inspired by <a href="https://mtgjson.com" target="_blank">MTGJSON</a> and supported by data and images provided by <a href="https://hearthstonejson.com" target="_blank">HearthstoneJSON</a> and the <a href="https://hearthstone.fandom.com/" target="_blank">Hearthstone Wiki</a>. Also, a special shout-out to <a href="https://twitch.tv/rdulive" target="_blank">Rdu</a> and <a href="https://twitch.tv/xqn_thesad" target="_blank">XQN</a>, whose streams are always inspiring and informative.
<br><br>
“Have a good battle, friend!”
<br>
<i style="font-style: italic">- Oliver aka blade on BNet/Discord</i>
</p>
<?php
include_once('footer.php');
?>