Files
BRB-History/Version - 29/shop.html
2023-11-29 22:29:18 +01:00

120 lines
2.6 KiB
HTML

<!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 -->
<a href="index.html" id="clickbrb">Go to BRB!</a>
<hr id="hr0">
<!-- Clicks -->
<div id="logclick">
<img src="https://i.postimg.cc/gntQwZth/Click.png" id="imgcli" draggable="false">
<p id="disclick">
</div>
<!-- I T E M S -->
<!-- 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="dogmvalue()">
MAX
</button>
<p id="disdog">
</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="catmvalue()">
MAX
</button>
<p id="discat">
</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>
<p id="dislem">
</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="foxmvalue()">
MAX
</button>
<p id="disfox">
</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>
<p id="diswol">
</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>
<p id="dislt3">
</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>
<p id="disham">
</div>
<!-- Whales -->
<div id="logwha">
<img src="" draggable="false" id="imgwha">
<button id="buywha" onclick="buywha()">
Buy a Whale for 2 wolfs
</button>
<p id="diswha">
</div>
<!-- By MrEidam -->
<script src="shop.js"></script>
</body>
</html>