-
Notifications
You must be signed in to change notification settings - Fork 839
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
CREATED THE GAME ELEPHANT ANT MAN #4219
Merged
Merged
Changes from 13 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
3b353ac
Update README.md
tanishkaa08 523396d
created a new game called elephant ant man
tanishkaa08 20bc6b2
Update README.md
tanishkaa08 d9294f2
Update README.md
tanishkaa08 f2a566f
Update README.md
tanishkaa08 615731e
Update README.md
tanishkaa08 8bf1699
Merge branch 'main' of https://github.com/tanishkaa08/GameZone
tanishkaa08 4a616d0
Update README.md
tanishkaa08 4976c9b
Merge branch 'main' of https://github.com/tanishkaa08/GameZone
tanishkaa08 a04ae99
Update Pixel_Painter.png
tanishkaa08 1be60ce
DELETED THE UNNESECARY FILE
tanishkaa08 4491131
Merge branch 'main' of https://github.com/tanishkaa08/GameZone
tanishkaa08 6a6a915
Update README.md
tanishkaa08 5f2a44d
Merge branch 'main' into main
ishita-43 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# **Elephant_ant_man** | ||
|
||
--- | ||
|
||
<br> | ||
|
||
## **Description 📃** | ||
|
||
It is a cuter version of the classic game rock paper scissors. It is inspired by the famous bedtime story the ant and the elephant where the ant despite his small size teaches a lesson to the elephant. | ||
- | ||
|
||
## **Functionalities 🎮** | ||
|
||
->the user can select one of the three choices and a message will display on the screen if the user won or lost. if the user lost the computer gets the point and vice versa. | ||
- | ||
<br> | ||
|
||
## **How to play? 🕹️** | ||
|
||
click on any of the three images | ||
the computer will randomly select a choice of his own | ||
score will be updated as you won or lost | ||
its a endless game enjoy playing | ||
|
||
<br> | ||
|
||
## **Screenshots 📸** | ||
|
||
<br> | ||
|
||
[image](screenshot.png) | ||
|
||
|
||
<br> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>ROCK,PAPER and SCISSORS</title> | ||
<link rel="stylesheet" href="style.css"/> | ||
</head> | ||
<body> | ||
<h1>Ant, Boy and Elephant</h1> | ||
<div class="choices"> | ||
<div class="choice" id="Boy"> | ||
<img src="boyy.jpg"> | ||
</div> | ||
<div class="choice" id="Elephant"> | ||
<img src="elephant.jpg"> | ||
</div> | ||
<div class="choice" id="Ant"> | ||
<img src="ant.jpg"> | ||
</div> | ||
</div> | ||
<div class="scoreboard"> | ||
<div class="score"> | ||
<p id="userscore">0</p> | ||
<p>You</p> | ||
</div> | ||
<div class="score"> | ||
<p id="compscore">0</p> | ||
<p>Computer</p> | ||
</div> | ||
</div> | ||
<div class="msgcontainer"> | ||
<p id="msg">Play your move!</p> | ||
</div> | ||
<script src="script.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
let userScore=0; | ||
let compScore=0; | ||
|
||
const choices = document.querySelectorAll(".choice"); | ||
const msg=document.querySelector("#msg"); | ||
const userScorePara=document.querySelector("#userscore"); | ||
const compScorePara=document.querySelector("#compscore"); | ||
|
||
const genCompChoice = () => { | ||
const options=["Boy","Elephant","Ant"]; | ||
const randIdx=Math.floor(Math.random()*3); | ||
return options[randIdx]; | ||
} | ||
const drawGame=()=>{ | ||
console.log("It's a tie. Play again!") | ||
msg.innerText="It's a tie. Play again!" | ||
msg.style.backgroundColor="rgb(109, 130, 100)" | ||
} | ||
const showWinner=(userWin, userChoice, compChoice)=>{ | ||
if(userWin){ | ||
console.log("Congratulations! You won.") | ||
userScore++; | ||
userScorePara.innerText =userScore; | ||
msg.innerText=`Congratulations! You won. ${userChoice} beats the ${compChoice}` | ||
msg.style.backgroundColor="green"; | ||
} | ||
else{ | ||
console.log("Sorry you lost, better luck next time.") | ||
compScore++; | ||
compScorePara.innerText=compScore; | ||
msg.innerText=`Sorry you lost, better luck next time. ${userChoice} lost to the ${compChoice}` | ||
msg.style.backgroundColor="red"; | ||
} | ||
} | ||
|
||
const playGame= (userChoice)=>{ | ||
console.log("userchoice = ", userChoice); | ||
const compChoice=genCompChoice(); | ||
console.log("compChoice= ", compChoice); | ||
|
||
if (userChoice==compChoice){ | ||
drawGame(); | ||
}else{ | ||
let userWin=true; | ||
if(userChoice=="Boy"){ | ||
userWin=compChoice==="Elephant"? false:true; | ||
} | ||
else if(userChoice=="Elephant"){ | ||
userWin=compChoice==="Ant"? false:true; | ||
} | ||
else{ | ||
userWin=compChoice==="Boy"? false:true; | ||
} | ||
showWinner(userWin, userChoice, compChoice); | ||
|
||
} | ||
}; | ||
|
||
choices.forEach((choice)=>{ | ||
choice.addEventListener("click",()=>{ | ||
const userChoice= choice.getAttribute("id"); | ||
playGame(userChoice); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
*{ | ||
margin:0; | ||
padding:0; | ||
text-align: center; | ||
background-color: rgb(217, 251, 223); | ||
} | ||
h1 { | ||
background-color: rgb(109, 130, 100); | ||
color: azure; | ||
height: 80px; | ||
line-height: 80px; | ||
font: 80px; | ||
|
||
} | ||
.choice:hover{ | ||
opacity: 0.5; | ||
cursor:grab; | ||
} | ||
.choice{ | ||
height: 200px; | ||
width: 200px; | ||
border-radius: 50%; | ||
} | ||
img{ | ||
height:175px; | ||
width:175px; | ||
border-radius: 50%; | ||
object-fit: cover; | ||
|
||
} | ||
.choices{ | ||
display:flex; | ||
justify-content: center; | ||
align-items: center; | ||
gap:50px; | ||
margin-top: 90px; | ||
} | ||
|
||
.scoreboard{ | ||
display:flex; | ||
justify-content: center; | ||
align-items: center; | ||
gap:100px; | ||
margin-top:40px; | ||
font-size:40px; | ||
color:rgb(53, 76, 53) | ||
} | ||
#userscore,#compscore{ | ||
font-size:60px; | ||
} | ||
#msg{ | ||
background-color: rgb(109, 130, 100); | ||
color:azure; | ||
font-size:35px; | ||
font-style:italic; | ||
height:60px; | ||
display:inline; | ||
padding: 20px; | ||
border-radius: 1rem; | ||
|
||
} | ||
.msgcontainer{ | ||
margin-top: 60px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -310,6 +310,7 @@ This repository also provides one such platforms where contributers come over an | |
| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | | ||
| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | | ||
|[Color The Page](https://github.com/kunjgit/GameZone/tree/main/Games/Color_The_Page)| | ||
|
||
|[Carrom Board Game](https://github.com/kunjgit/GameZone/tree/main/Games/carrom)| | ||
| [Number_Recall_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Recall_Game) | | ||
| [Hit_the_hamster] (https://github.com/kunjgit/GameZone/tree/main/Games/Hit_the_hamster) | | ||
|
@@ -320,13 +321,14 @@ This repository also provides one such platforms where contributers come over an | |
|[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | | ||
| [Tic-Tac-Toe Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tic-Tac-Toe) | | ||
| [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) | ||
|[Elephant_ant_man](https://github.com/tanishkaa08/GameZone/tree/main/Games/Elephant_ant_man) | | ||
|
||
|
||
|
||
|
||
</center> | ||
|
||
<br> | ||
<br> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add this line again |
||
|
||
<div align="center"> | ||
<h2><font size="6"><img src="https://raw.githubusercontent.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/master/Emojis/Objects/Page%20with%20Curl.png" alt="Page with Curl" width="40" height="40" /> Contributing Guideline </font></h2> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. rename your image name as per naming conventions in contribution guidelines. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
follow other entries format while providing the link it should start with kunjgit instead of tanishkaa