Skip to content

Instantly share code, notes, and snippets.

@savolla
Last active February 28, 2017 00:25
Show Gist options
  • Save savolla/89f2b6b607c4f2b9c5de33a9a72541ad to your computer and use it in GitHub Desktop.
Save savolla/89f2b6b607c4f2b9c5de33a9a72541ad to your computer and use it in GitHub Desktop.
def character_creation():
print("""
please select your class:
type "w" for witch
type "s" for shadow
type "r" for ranger
type "d" for duelist
type "m" for marauder
type "t" for termplar
""")
clas = input("-->")
if clas == "w":
print("witch is selected. now she needs a name..")
name = input("-->")
print(name, "is ready to burn wreaclast in ascii way!")
elif clas == "s":
print("shadow is selected. now he needs a name..")
name = input("-->")
print(name, "is ready to butcher zombies in ascii way!")
elif clas == "r":
print("ranger is selected. now she needs a name..")
name = input("-->")
print(name, "is ready to quickscope Hillock in ascii way!")
elif clas == "d":
print("duelist is selected. now he needs a name..")
name = input("-->")
print(name, "is ready to block all spells in ascii way!")
elif clas == "m":
print("marauder is selected. now he needs a name..")
name = input("-->")
print(name, "is ready to hitting his own head with a maul in ascii way!")
elif clas == "t":
print("templar is selected. now he needs a name..")
name = input("-->")
print(name, "is ready to take Dominus' throne in ascii way!")
else:
print("oooh we have a new class huh? :D")
character_creation()
print("""
.. . . . . . . . . . . . . . . _
. . . . . . . . . ._. . . . . /^\ _
.. . . . . . . . ./^\ ___o___< I >___o___ /^\
. . . . . . . . .< S >_-- ___ \v/ ___ --_< D >
.. . . . . . .x__/\v/ ``````````````````` \v/\__x
. .__^__. . .#/```__________ `. ```. ________ . \# . . __^__
o__/ _o_\_ .#/``` // .____ .| `` . ` // .____\ . \# ._/___ \__o
.o\_o__ o \#/o`` // ./___/ / _____ `// ./__ . . .o\#/ _ ____/o
. . #\___ x/`` `// . ____ /// ___ \// . __/. . . .-\# ___/#
.. . .#\__x\ ``// . /```` // /__/ // . /_____ . . `/x__/#
. . . . #\_x\``|__ /```` .\\_____/\\_________\. ``/x_/#
.. . . . . #x\_o___o___o___o___o___o___o___o___o_/x#
. . . . . . . . `````-Oo||-o-o|#|-o-o||oO-````
.. . . . . . . . . #````||-o-o|#|-o-o||````#
. . . . . . . . . . . --XX - /x#x\ - XX--
.. . . . . . . . . . . .\/ . \#x#/ . \/
. . . . . . . . . . . . . . . .v
""")
print("""
==============================================================
Welcome to poe_ascii !
this game has created by Oleksiy Nehlyadyuk in 2017
this is not an official reliese. I just wanted to develop
my programming skills in that way. This is an open source
project. you can change codes and write some new stuff. you can
also add new classes new skills (if you can) and even can change
mirror of kalandra's drop rate :D but please don't do that
because Chris will reduce your RNG in real game lol
===============================================================
""")
character_creation()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment