Forwarded from Allawi ✘ Python
/python3
#GameNameGenerator
#Join @AllawiXPython
#By @XAllawiX
import random
f=["Campaign","Evil","Machine","Source","Golden","Counter","Ghost","Command","War","Rage","Dark","Crush","Galaxy","First","Big","Alien","Red","Smart","System","Arm","Skulls","Cloud"]
s=["Demon","Killer","Man","Truth","Fear","Kill","Thunder","Dragon","Shadow","Infect","Runner","Blood","Knight","Adventurer","Warrior","Dream","Assault","Cry"]
fg = random.choice(f)
sg = random.choice(s)
fs = fg+" "+sg
print("Game Name :", fs)
#GameNameGenerator
#Join @AllawiXPython
#By @XAllawiX
import random
f=["Campaign","Evil","Machine","Source","Golden","Counter","Ghost","Command","War","Rage","Dark","Crush","Galaxy","First","Big","Alien","Red","Smart","System","Arm","Skulls","Cloud"]
s=["Demon","Killer","Man","Truth","Fear","Kill","Thunder","Dragon","Shadow","Infect","Runner","Blood","Knight","Adventurer","Warrior","Dream","Assault","Cry"]
fg = random.choice(f)
sg = random.choice(s)
fs = fg+" "+sg
print("Game Name :", fs)