-
-
Save wynand1004/b5c521ea8392e9c6bfe101b025c39abe to your computer and use it in GitHub Desktop.
| # Rock Paper Scissors ASCII Art | |
| # Rock | |
| print(""" | |
| _______ | |
| ---' ____) | |
| (_____) | |
| (_____) | |
| (____) | |
| ---.__(___) | |
| """) | |
| # Paper | |
| print(""" | |
| _______ | |
| ---' ____)____ | |
| ______) | |
| _______) | |
| _______) | |
| ---.__________) | |
| """) | |
| # Scissors | |
| print(""" | |
| _______ | |
| ---' ____)____ | |
| ______) | |
| __________) | |
| (____) | |
| ---.__(___) | |
| """) |
Great Job
Big Thanks for the figures of RPS.
Man u awesome!! I mention u in my game project.
Love you brother. My mom bless you
thank you
Many thanks!!
thank you so much!!
Nice! I made the game with it :) https://replit.com/@maxwellnewage/python-rock-paper-scissors-game
Thank you!!! :D
THANKS MAN ,I MADE THE GAME WITH IT
hey man, Thanks for the ASCII art! i was able to create a game with it using C# for a school project + i also made an ASCII ART Combining the 3 using your art!
Here's the game: https://github.com/Harleythetech/RPS-Game
ASCII ART:
_______ _______ _______
---' ____) ---' ____)____ ---' ____)____
(_____) ______) ______)
(_____) _______) __________)
(____) _______) (____)
---.__(___) ---.__________) ---.__(___)
ROCK PAPER Scissors
_______ _______
---' ____) (____ '---
(_____) (_____)
(_____) (_____)
(____) (____)
---.__(___) (___)__.---
Rock VS Rock
_______ _______
---' ____)____ ____(____ '----
______) (______
_______) (_______
_______) (_______
---.__________) (_________.---
Paper VS Paper
_______ _______
---' ____)____ ____(____ '---
______) (______
__________) (__________
(____) (____)
---.__(___) (___)__.---
Scissor vs Scissor
Thanks so much bro
Thanks so much bro
Thank You
thank you bro
Awesome
so helpful
Awesome. Thank you.
thanks
thankss
thanks bri,
Rocks_!_
Thanks very much! here is all the 9 combinations
rock_vs_rock = r"""
_______ _______
---' ____) (____ '---
(_____) (_____)
(_____) (_____)
(____) (____)
---.__(___) (___)__.---
Rock VS Rock
"""
paper_vs_paper = r"""
_______ _______
---' ____)____ ____(____ '----
______) (______
_______) (_______
_______) (_______
---.__________) (_________.---
Paper VS Paper
"""
scissor_vs_scissor = r"""
_______ _______
---' _____)___ ____(____ '---
_________) (______
__________) (__________
(____) (____)
---.__(___) (___)__.---
Scissor VS Scissor
"""
rock_vs_paper = r"""
_______ _______
---' ____) ____(____ '----
(_____) (______
(_____) (_______
(____) (_______
---.(___) (_________.---
Rock VS Paper
"""
rock_vs_scissor = r"""
_______ ____
---' ____) _____(____ '---
(_____) (_______
(_____) (__________)
(____) (____)
---.(___) (___)__.---
Rock VS Scissor
"""
paper_vs_rock = r"""
_______ ______
---' ____)____ (___ '---
_________) (_____)
_________) (_____)
_________) (____)
---.__________) (___)__.---
Paper VS Rock
"""
paper_vs_scissor = r"""
_______ _______
---' ____)____ ______(____ '---
________) (_______
_________) (_________
_________) (____)
---.__________) (___)__.---
Paper VS Scissor
"""
scissor_vs_rock = r"""
_______ _______
---' ____)_____ (____ '---
_________) (_____)
______________) (_____)
_______) (____)
---.__(___) (___)__.---
Scissor VS Rock
"""
scissor_vs_paper = r"""
_______ ______
---' ____)______ (____ '----
__________) (______
__________) (_______
(____) (_______
---.__(___) (____.---
Scissor VS Paper
"""
rps_ascii_sequence= [
rock_vs_rock, # 0
paper_vs_paper, # 1
scissor_vs_scissor, # 2
rock_vs_paper, # 3
rock_vs_scissor, # 4
paper_vs_rock, # 5
paper_vs_scissor, # 6
scissor_vs_rock, # 7
scissor_vs_paper, # 8
]
thx man, i really needed this to make a "rock,paper, scissors" game in python ๐
thx man, i really needed this to make a "rock,paper, scissors" game in python ๐
youbare most welcome!
Simple games like rock paper scissors are great examples of how classic ideas can still be fun even in digital form. Many developers now turn them into mobile versions, and I recently checked https://1winbonus-in.com/mobile/ while exploring different mobile gaming options.
Thanks dude