Version - 1 - 1-38

This commit is contained in:
2023-11-29 22:29:18 +01:00
commit 2b81a65227
396 changed files with 19689 additions and 0 deletions

155
Version - 33/shop.html Normal file
View File

@@ -0,0 +1,155 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BRB - Shop</title>
<!-- By MrEidam & Standa Chlup -->
<!-- Custom Styles -->
<link rel="stylesheet" href="shop.css">
</style>
</head>
<body>
<!-- BRB -->
<header>
<p class="link">
<a href="index.html" id="clickbrb">Go to BRB!</a>
</p>
<!-- Clicks -->
<div id="logclick">
<img src="https://i.postimg.cc/gntQwZth/Click.png" id="imgcli" draggable="false">
<p id="disclick"></p>
</div>
</header>
<!-- I T E M S -->
<main>
<!-- Dog -->
<div id="logdog">
<img src="https://i.postimg.cc/87F3Lzx0/Dog.png" draggable="false" id="imgdog">
<button id="buydog" onclick="buydog()">
Buy a Dog for 100 clicks
</button>
<button id="maxdog" onclick="mxdg()">
MAX
</button>
<p id="disdog"></p>
</div>
<!-- Cat -->
<div id="logcat">
<img src="https://i.postimg.cc/SJxHNrdq/Cat.png" draggable="false" id="imgcat">
<button id="buycat" onclick="buycat()">
Buy a Cat for 10 dogs
</button>
<button id="maxcat" onclick="mxct()">
MAX
</button>
<p id="discat"></p>
</div>
<!-- Lemons -->
<div id="loglem">
<img src="https://i.postimg.cc/kVKphhJN/Lemons.png" draggable="false" id="imglem">
<button id="buylem" onclick="buylem()">
Buy a Lemon for ### cats
</button>
<button id="maxlem" onclick="mxlm()">
MAX
</button>
<p id="dislem"></p>
</div>
<!-- Fox -->
<div id="logfox">
<img src="https://i.postimg.cc/MnhL58SK/Fox.png" draggable="false" id="imgfox">
<button id="buyfox" onclick="buyfox()">
Buy a Fox for 15 dogs
</button>
<button id="maxfox" onclick="mxfx()">
MAX
</button>
<p id="disfox"></p>
</div>
<!-- Wolf -->
<div id="logwol">
<img src="https://i.postimg.cc/0MvBgdjT/Wolf.png" draggable="false" id="imgwol">
<button id="buywol" onclick="buywol()">
Buy a Wolf for 6 dogs and 5 foxes
</button>
<button id="maxwol" onclick="mxwl()">
MAX
</button>
<p id="diswol"></p>
</div>
<!-- Lemn t3-->
<div id="logLt3">
<img src="https://i.postimg.cc/DJcY7Jb8/Lemt3.png" draggable="false" id="imglt3">
<button id="buyLt3" onclick="buylt3()">
Buy a Lemon Tree for 5 lemons
</button>
<button id="maxLt3" onclick="mxlt()">
MAX
</button>
<p id="dislt3"></p>
</div>
<!-- Hamster -->
<div id="logham">
<img src="" draggable="false" id="imgham">
<button id="buyham" onclick="buyham()">
Buy a Hamster for 1 wolf and 2 cats
</button>
<button id="maxham" onclick="mxhm()">
MAX
</button>
<p id="disham"></p>
</div>
<!-- Whales -->
<div id="logwha">
<img src="" draggable="false" id="imgwha">
<button id="buywha" onclick="buywha()">
Buy a Whale for 2 wolfs
</button>
<button id="maxwha" onclick="mxwh()">
MAX
</button>
<p id="diswha"></p>
</div>
<!-- Cappybarra -->
<div id="logcap">
<img src="" draggable="false" id="imgcap">
<button id="buycap" onclick="buycap()">
Buy a Cappybarra for 1 whale and 4 cats
</button>
<button id="maxcap" onclick="mxcp()">
MAX
</button>
<p id="discap"></p>
</div>
</main>
<!-- By MrEidam -->
<script src="shop.js"></script>
</body>
</html>