400 lines
17 KiB
Python
400 lines
17 KiB
Python
import commands
|
|
from colorama import init, Fore, Back, Style
|
|
# Coloroma autoreset
|
|
init(autoreset=True)
|
|
|
|
|
|
def ss():
|
|
print("TEQ Super Saiyan God SS Vegito")
|
|
stage = input('What stage would you like to complete(519002 Sublime Blue!) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def sss():
|
|
print("PHY Super Saiyan Broly")
|
|
stage = input('What stage would you like to complete(548001 The Greatest Saiyan Adversary) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def ssss():
|
|
print("STR Super Gogeta")
|
|
stage = input('What stage would you like to complete(505003 Fusion Reborn!) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(2): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def s():
|
|
print("AGL Super Saiyan Gogeta")
|
|
stage = input('What stage would you like to complete(549001 The Omnipotent Saiyan Warrior) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def a():
|
|
print("INT SSJ3 Bardock")
|
|
stage = input('What stage would you like to complete(534001 The Unknown Battle : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def aa():
|
|
print("STR SSJ4 Goku")
|
|
stage = input('What stage would you like to complete(525001 The Scarlet Hero! Super Saiyan 4! : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def aaa():
|
|
print("INT UI Goku")
|
|
stage = input('What stage would you like to complete(538001 Kaboom! Ultra Instinct : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def aaaa():
|
|
print("AGL SSJ4 Vegeta")
|
|
stage = input('What stage would you like to complete(526001 The Crimson Flash! Super Saiyan 4 : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def b():
|
|
print("PHY FP Frieza")
|
|
stage = input('What stage would you like to complete(507002 Full-Power Final Battle : ')
|
|
difficulty = input('Enter the difficulty|(2:Z-Hard): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def bb():
|
|
print("TEQ Golden Frieza")
|
|
stage = input('What stage would you like to complete(516001 Emperors Obsession Area : ')
|
|
difficulty = input('Enter the difficulty|(3:Super): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def bbb():
|
|
print("AGL SSJ3 Goku")
|
|
stage = input('What stage would you like to complete(504002 Ultimate Finishing Move Area : ')
|
|
difficulty = input('Enter the difficulty|(2:Z-Hard): ')
|
|
loop = input('Enter how many times to execute(10): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def bbbb():
|
|
print("TEQ SSJ4 Gogeta")
|
|
stage = input('What stage would you like to complete(532001 The Ultimate Super Gogeta : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def c():
|
|
print("INT Super Gogeta")
|
|
stage = input('What stage would you like to complete(505003 Fusion Reborn!) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def cc():
|
|
print("SSJ3 Gotenks")
|
|
stage = input('What stage would you like to complete(513002 Super Gotenks) : ')
|
|
difficulty = input('Enter the difficulty|(3:Super): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
def ccc():
|
|
print("TEQ FP SSJ4 Goku")
|
|
stage = input('What stage would you like to complete(542001 Transcend Super Saiyan 4) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def cccc():
|
|
print("STR Jiren")
|
|
stage = input('What stage would you like to complete(540002 Confronting the Strongest of All Universes) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def d():
|
|
print("INT Golden Frieza")
|
|
stage = input('What stage would you like to complete(533002 The True Golden Frieza) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def dd():
|
|
print("PHY Android 17")
|
|
stage = input('What stage would you like to complete(543001 Superb Ranger) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def ddd():
|
|
print("TEQ Hit")
|
|
stage = input('What stage would you like to complete(547001 The Deadliest Assassin) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def dddd():
|
|
print("AGL SSBE Vegeta")
|
|
stage = input('What stage would you like to complete(524002 Battle for Honor and Pride) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def e():
|
|
print("PHY Kid Buu")
|
|
stage = input('What stage would you like to complete(524003 Regression to Evil) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def ee():
|
|
print("INT Kid Buu")
|
|
stage = input('What stage would you like to complete(524003 Regression to Evil) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def eee():
|
|
print("TEQ SSJ3 Goku (Angel)")
|
|
stage = input('What stage would you like to complete(528001 Mighty Warrior: 24-Hour Revival) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def eeee():
|
|
print("PHY Goku Black")
|
|
stage = input('What stage would you like to complete(518002 Dark Nightmare) : ')
|
|
difficulty = input('Enter the difficulty|(3:Super): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def f():
|
|
print("INT Goku Black")
|
|
stage = input('What stage would you like to complete(518003 Black Harbinger of Destruction) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def ff():
|
|
print("TEQ SSG Goku")
|
|
stage = input('What stage would you like to complete(549001 The Omnipotent Saiyan Warrior) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def ffx():
|
|
print("STR SSG Vegeta")
|
|
stage = input('What stage would you like to complete(549001 The Omnipotent Saiyan Warrior) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def fff():
|
|
print("AGL SSGSS Goku")
|
|
stage = input('What stage would you like to complete(514001 Ceaseless Combat) : ')
|
|
difficulty = input('Enter the difficulty|(3:Super): ')
|
|
loop = input('Enter how many times to execute(5): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def ffff():
|
|
print("STR Toppo")
|
|
stage = input('What stage would you like to complete(524002 Battle for Honor and Pride) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(5): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def g():
|
|
print("STR Rose Goku Black")
|
|
stage = input('What stage would you like to complete(520002 Searing Rose-Colored Fury) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def gg():
|
|
print("PHY SSGSS Vegito")
|
|
stage = input('What stage would you like to complete(519001 Fusion in Blue) : ')
|
|
difficulty = input('Enter the difficulty|(3:Super): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def ggg():
|
|
print("STR SSJ3 Goku")
|
|
stage = input('What stage would you like to complete(504002 Ultimate Finishing Move Area : ')
|
|
difficulty = input('Enter the difficulty|(2:Z-Hard): ')
|
|
loop = input('Enter how many times to execute(10): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def gggx():
|
|
print("TEQ SSJ3 Broly")
|
|
stage = input('What stage would you like to complete(531001 All-Time Nastiest Evolution : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def gggg():
|
|
print("AGL Transgoku")
|
|
stage = input('What stage would you like to complete(544001 Ever-Evolving Power : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def h():
|
|
print("STR SSJ3 Vegeta")
|
|
stage = input('What stage would you like to complete(510002 The Most Powerful Blow : ')
|
|
difficulty = input('Enter the difficulty|(2:Z-Hard): ')
|
|
loop = input('Enter how many times to execute(10): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def hh():
|
|
print("PHY SSJ3 Gotenks")
|
|
stage = input('What stage would you like to complete(513003 One Powerful Super Fusion! : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def hhh():
|
|
print("AGL Turles")
|
|
stage = input('What stage would you like to complete(539001 Arrival of the Universe-Crusher! : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def hhhh():
|
|
print("STR Janemba")
|
|
stage = input('What stage would you like to complete(506003 Overwhelming Force of Evil! : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def j():
|
|
print("INT Janemba")
|
|
stage = input('What stage would you like to complete(506003 Overwhelming Force of Evil! : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(2): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def jj():
|
|
print("TEQ TransFrieza")
|
|
stage = input('What stage would you like to complete(545001 Ever-Evolving Evil : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(11): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|
|
|
|
#####################################################################################################################
|
|
def jjj():
|
|
print("AGL Broly")
|
|
stage = input('What stage would you like to complete(548001 The Greatest Saiyan Adversary) : ')
|
|
difficulty = input('Enter the difficulty|(4:Super2): ')
|
|
loop = input('Enter how many times to execute(5): ')
|
|
for i in range(int(loop)):
|
|
commands.complete_stage(stage, difficulty)
|
|
|