PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#Copyright 2018 Pro_eXe
#Enter the name of the character you want to use
#Please like the code
#Difficulty: unknown
#V.2
#Future update: Adding new characters, performance improvements, adding this as a bonus level in my game
X=[]
import random
#Random star wars character health
w=(550)
#Your health
y=(500)
v=(100)
h=(10)
evil=('Darth vader ', 'Darth maul ', 'Darth sidious ', 'Boba fett ')
c = random.choice(evil)
op=[]
pow=[]
de=[]
e=[]
line=("_"*50)
try:
i=(input('')).lower()
except EOFError:
print('You will fight '+ (c))
#---------------------------------------------------------------
#All characters available to choose.
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run