Calculator Tools Calculator Tools
Create

RPS - 15

Jan 8, 2024

About this app

Rock Paper Scissors game with 15 options

RPS - 15 Rock Paper Scissors - 15 Choose an option: Play Again

Related apps

Put this on your site

Source

                    <html>
<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>RPS - 15</title>
<meta name="description" content="Rock Paper Scissors game with 15 options">
<meta name="keywords" content="Rock Paper Scissors, game, 15 options">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
document.addEventListener("DOMContentLoaded", function() {
const options = ['rock', 'paper', 'scissors', 'lizard', 'spock', 'fire', 'water', 'air', 'dragon', 'devil', 'lightning', 'gun', 'tree', 'wolf', 'sponge'];
const resultText = document.getElementById('result-text');
const userChoiceText = document.getElementById('user-choice');
const computerChoiceText = document.getElementById('computer-choice');
const playAgainButton = document.getElementById('play-again-button');

playAgainButton.addEventListener('click', playAgain);

function playAgain() {
resultText.textContent = '';
userChoiceText.textContent = '';
computerChoiceText.textContent = '';
playGame();
}

function playGame() {
const userChoice = prompt("Choose your option: " + options.join(", "));
if (userChoice === null) {
return;
}
const computerChoice = getRandomChoice();
userChoiceText.textContent = "Your choice: " + userChoice;
computerChoiceText.textContent = "Computer's choice: " + computerChoice;

const result = getResult(userChoice, computerChoice);
resultText.textContent = result;

setTimeout(playGame, 2000);
}

function getRandomChoice() {
return options[Math.floor(Math.random() * options.length)];
}

function getResult(userChoice, computerChoice) {
if (userChoice === computerChoice) {
return "It's a tie!";
}
if (
(userChoice === 'rock' && (computerChoice === 'scissors' || computerChoice === 'lizard')) ||
(userChoice === 'paper' && (computerChoice === 'rock' || computerChoice === 'spock')) ||
(userChoice === 'scissors' && (computerChoice === 'paper' || computerChoice === 'lizard')) ||
(userChoice === 'lizard' && (computerChoice === 'paper' || computerChoice === 'spock')) ||
(userChoice === 'spock' && (computerChoice === 'rock' || computerChoice === 'scissors')) ||
(userChoice === 'fire' && (computerChoice === 'tree' || computerChoice === 'wolf')) ||
(userChoice === 'tree' && (computerChoice === 'water' || computerChoice === 'dragon')) ||
(userChoice === 'water' && (computerChoice === 'fire' || computerChoice === 'dragon')) ||
(userChoice === 'dragon' && (computerChoice === 'devil' || computerChoice === 'lightning')) ||
(userChoice === 'devil' && (computerChoice === 'tree' || computerChoice === 'sponge')) ||
(userChoice === 'lightning' && (computerChoice === 'gun' || computerChoice === 'wolf')) ||
(userChoice === 'gun' && (computerChoice === 'tree' || computerChoice === 'sponge')) ||
(userChoice === 'wolf' && (computerChoice === 'tree' || computerChoice === 'sponge')) ||
(userChoice === 'sponge' && (computerChoice === 'gun' || computerChoice === 'lightning'))
) {
return "You win!";
} else {
return "You lose!";
}
}

playGame();
});

} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>

<style>
/* App CSS Goes Here */
body {
background-color: #f8f9fa;
}

#main-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}

h1 {
font-family: 'Google Sans', sans-serif;
font-size: 26px;
color: #333;
margin-bottom: 30px;
}

p {
font-family: 'Google Sans', sans-serif;
font-size: 18px;
color: #666;
margin-bottom: 20px;
}

#result-text {
font-family: 'Google Sans', sans-serif;
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 20px;
}

#user-choice,
#computer-choice {
font-family: 'Google Sans', sans-serif;
font-size: 18px;
color: #666;
margin-bottom: 10px;
}

#play-again-button {
font-family: 'Google Sans', sans-serif;
font-size: 18px;
color: #fff;
background-color: #333;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
transition: background-color 0.3s;
}

#play-again-button:hover {
background-color: #555;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Rock Paper Scissors - 15</h1>
<p>Choose an option:</p>
<p id="result-text"></p>
<p id="user-choice"></p>
<p id="computer-choice"></p>
<button id="play-again-button">Play Again</button>
</div>
</body>
</html>