Secret RPG game :D

This commit is contained in:
2024-03-14 23:44:05 +01:00
parent 200efc2a4b
commit 4f49a47d52
4 changed files with 481 additions and 0 deletions

34
RPG/index.html Normal file
View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BRB - Secret RPG</title>
<link rel="stylesheet" href="../css/rpg.css">
<link rel="shortcut icon" href="../img/rpg.svg" type="image/x-icon">
</head>
<body>
<div id="game">
<div id="stats">
<span class="stat">XP: <strong><span id="xpText">0</span></strong></span>
<span class="stat">Health: <strong><span id="hpText">100</span></strong></span>
<span class="stat">Gold: <strong><span id="goldText">50</span></strong></span>
</div>
<div id="controls">
<button id="button1">Go to Store</button>
<button id="button2">Go to Cave</button>
<button id="button3">Fight the Dragon</button>
</div>
<div id="monsterStats">
<span class="stat">Monster Name: <strong><span id="monsterName"></span></strong></span>
<span class="stat">Health: <strong><span id="monsterHp"></span></strong></span>
</div>
<div id="text">
Welcome to BRB - Secret RPG. You must defeat the dragon that is preventing people from leaving the town. You are in the town square. Where do you want to go? Use the buttons above.
</div>
</div>
<script src="../js/rpg.js"></script>
</body>
</html>