Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solved #1050- Slay the spire game #1051

Merged
merged 4 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions SinglePlayer - Games/Slay the Spire/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Card Battle Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Card Battle Game</h1>
<div id="player">
<h2>Player</h2>
<p id="playerHealth">Health: 50</p>
<div id="playerDeck"></div>
</div>
<div id="enemy">
<h2>Enemy</h2>
<p id="enemyHealth">Health: 30</p>
</div>
<button id="drawCardButton">Draw Card</button>
</div>
<script src="script.js"></script>
</body>
</html>
41 changes: 41 additions & 0 deletions SinglePlayer - Games/Slay the Spire/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
document.addEventListener('DOMContentLoaded', () => {
const playerHealthElement = document.getElementById('playerHealth');
const enemyHealthElement = document.getElementById('enemyHealth');
const playerDeckElement = document.getElementById('playerDeck');
const drawCardButton = document.getElementById('drawCardButton');

let playerHealth = 50;
let enemyHealth = 30;

const cards = [
{ name: 'Attack', damage: 10 },
{ name: 'Heal', heal: 10 }
];

function updateHealth() {
playerHealthElement.textContent = `Health: ${playerHealth}`;
enemyHealthElement.textContent = `Health: ${enemyHealth}`;
}

function drawCard() {
const randomCard = cards[Math.floor(Math.random() * cards.length)];
const cardElement = document.createElement('div');
cardElement.classList.add('card');
cardElement.textContent = randomCard.name;
cardElement.addEventListener('click', () => playCard(randomCard, cardElement));
playerDeckElement.appendChild(cardElement);
}

function playCard(card, cardElement) {
if (card.damage) {
enemyHealth -= card.damage;
} else if (card.heal) {
playerHealth += card.heal;
}
updateHealth();
cardElement.remove();
}

drawCardButton.addEventListener('click', drawCard);
updateHealth();
});
37 changes: 37 additions & 0 deletions SinglePlayer - Games/Slay the Spire/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5;
}

.container {
text-align: center;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#player, #enemy {
margin: 20px 0;
}

#playerDeck {
display: flex;
justify-content: center;
gap: 10px;
}

.card {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
cursor: pointer;
}

.card:hover {
background-color: #f0f0f0;
}