Example #1
0
def Lumburn(Lumburn):
    u = Lumburn
    uSTR = u + "STR"
    uSPR = u + "SPR"
    uSKL = u + "SKL"
    uABL = u + "ABL"
    uAGI = u + "AGI"
    uEVA = u + "EVA"
    uTGH = u + "TGH"
    uRES = u + "RES"
    uLCK = u + "LCK"
    choice = input(
        "Select a thing!\n [S]tat check!\n [BA] Breath Attack!\n [FB] Flame Blast!\n [F] Fireball!\n "
    )
    if choice == "S" or choice == "s" or choice == "ST" or choice == "st":
        print("These are the stats for", u, "so far!")
        print("-----------------")
        print("Strength:", (WSD[uSTR]))
        print("Spirit:", (WSD[uSPR]))
        print("Skill:", (WSD[uSKL]))
        print("Ability:", (WSD[uABL]))
        print("Agility:", (WSD[uAGI]))
        print("Evasion:", (WSD[uEVA]))
        print("Toughness:", (WSD[uTGH]))
        print("Resistance:", (WSD[uRES]))
        print("Luck:", (WSD[uLCK]))
        print("-----------------")
    elif choice == "BA" or choice == "ba":
        SLB.BreathAttack("Lumburn", "Flame")
    elif choice == "FB" or choice == "fb":
        SLB.FlameBlast("Lumburn", "NormalIvoryRod1")
    elif choice == "BS" or choice == "bs":
        SLB.Bodyslam("Lumburn")
    elif choice == "F" or choice == "f":
        SLB.Fireball("Lumburn", "NormalIvoryRod1")
Example #2
0
def Liveflame(Liveflame):
    u = Liveflame
    uSTR = u + "STR"
    uSPR = u + "SPR"
    uSKL = u + "SKL"
    uABL = u + "ABL"
    uAGI = u + "AGI"
    uEVA = u + "EVA"
    uTGH = u + "TGH"
    uRES = u + "RES"
    uLCK = u + "LCK"
    uPAR = u + "PAR"
    uMAR = u + "MAR"
    choice = input(
        "Select a thing!\n [S]tat check!\n [BA] Breath Attack!\n [FB] Flame Blast!\n "
    )
    if choice == "ST" or choice == "st" or choice == "s" or choice == "S":
        print("These are the stats for", u, "as they currently stand!")
        print("\n-----------------")
        print("Strength:", (WSD[uSTR]))
        print("Spirit:", (WSD[uSPR]))
        print("Skill:", (WSD[uSKL]))
        print("Ability:", (WSD[uABL]))
        print("Agility:", (WSD[uAGI]))
        print("Evasion:", (WSD[uEVA]))
        print("Toughness:", (WSD[uTGH]))
        print("Resistance:", (WSD[uRES]))
        print("Luck:", (WSD[uLCK]))
        print("Physical Resist: ", (WSD[uPAR]))
        print("Magical Resist: ", (WSD[uMAR]))
        print("-----------------\n")
    elif choice == "BA" or choice == "ba":
        SLB.BreathAttack("Livefalme", "Flame")
    elif choice == "FB" or choice == "fb":
        SLB.FlameBlast("Liveflame", "NormalIvoryRod1")
    elif choice == "BS" or choice == "bs":
        SLB.Bodyslam("Liveflame")
Example #3
0
def Faerider(Fae):
    choice = input(
        "Select an Action!\n [ST] Statcheck!\n [FB] Faewood Bow!\n [FW] Faewood Wand!\n [FC] Faewood Cane!\n "
    )
    u = Fae
    uSTR = u + "STR"
    uSPR = u + "SPR"
    uSKL = u + "SKL"
    uABL = u + "ABL"
    uAGI = u + "AGI"
    uEVA = u + "EVA"
    uTGH = u + "TGH"
    uRES = u + "RES"
    uLCK = u + "LCK"
    uPAR = u + "PAR"
    uMAR = u + "MAR"
    if choice == "ST" or choice == "st":
        print("These are the stats for", u, "as they currently stand!")
        print("\n-----------------")
        print("Strength:", (WSD[uSTR]))
        print("Spirit:", (WSD[uSPR]))
        print("Skill:", (WSD[uSKL]))
        print("Ability:", (WSD[uABL]))
        print("Agility:", (WSD[uAGI]))
        print("Evasion:", (WSD[uEVA]))
        print("Toughness:", (WSD[uTGH]))
        print("Resistance:", (WSD[uRES]))
        print("Luck:", (WSD[uLCK]))
        print("Physical Resist: ", (WSD[uPAR]))
        print("Magical Resist: ", (WSD[uMAR]))
        print("PAR:", (WSD[uPAR]))
        print("MAR:", (WSD[uMAR]))
        print("-----------------\n")
    elif choice == "FB" or choice == "fb" or choice == "Bow" or choice == "bow":
        choice = input(
            "Select a Bow Action!\n ==ATTACKS==\n [W]eak!\n [N]ormal!\n [S]trong!\n ==SKILLS==\n [L]ongshot!\n [C]lipshot!\n "
        )
        if choice == "W" or choice == "w":
            TLB.BowShotQ("Faerider", "CobaltBow2")
        elif choice == "N" or choice == "n":
            TLB.BowShotN("Faerider", "CobaltBow2")
        elif choice == "S" or choice == "s":
            TLB.BowShotH("Faerider", "CobaltBow2")
        elif choice == "C" or choice == "c":
            SLB.Clipshot("Faerider", "CobaltBow2")
        elif choice == "L" or choice == "l":
            SLB.Longshot("Faerider", "CobaltBow2")
    elif choice == "FW" or choice == "fw" or choice == "Wand" or choice == "wand":
        choice = input(
            "Select a Wand Action!\n ==ATTACKS==\n [W]eak Ray!\n [N]ormal Ray!\n [S]trong Ray!\n ==SKILLS==\n [W]ater Grenade!\n [F]lame Blast!\n "
        )
        if choice == "W" or choice == "w":
            TLB.WandRayQ("Faerider", "NormalIvoryWand7")
        elif choice == "N" or choice == "n":
            TLB.WandRayN("Faerider", "NormalIvoryWand7")
        elif choice == "S" or choice == "s":
            TLB.WandRayH("Faerider", "NormalIvoryWand7")
        elif choice == "Flame" or choice == "flame" or choice == "fire" or choice == "Fire":
            SLB.FlameBlast("Faerider", "NormalIvoryWand7")
        elif choice == "Water" or choice == "water":
            SLB.WaterGrenade("Faerider", "NormalIvoryWand7")
    elif choice == "FC" or choice == "fc":
        choice = input(
            "Select a Cane action!\n [Q]uick Attack!\n [N]ormal Attack!\n [H]ard Attack!\n "
        )
        if choice == "Q" or choice == "q":
            TLB.CaneWhackQ("Faerider", "TungstenCane2")
        elif choice == "N" or choice == "n":
            TLB.CaneWhackN("Faerider", "TungstenCane2")
        elif choice == "H" or choice == "h":
            TLB.CaneWhackH("Faerider", "TungstenCane2")
Example #4
0
def AHLoriana(AHLoriana):
    u = AHLoriana
    uSTR = u + "STR"
    uMHP = u + "MHP"
    uENE = u + "ENE"
    uSTR = u + "STR"
    uSPR = u + "SPR"
    uSKL = u + "SKL"
    uABL = u + "ABL"
    uAGI = u + "AGI"
    uEVA = u + "EVA"
    uTGH = u + "TGH"
    uRES = u + "RES"
    uLCK = u + "LCK"
    uPAR = u + "PAR"
    uMAR = u + "MAR"
    choice = input(
        "Select something!\n [ST] Statcheck!\n [WL] Weapons List!\n")
    if choice == "ST" or choice == "st":
        print("These are Loriana's stats, so far!")
        print("-----------------")
        print("Health Pool:", (WSD[uMHP]))
        print("Energy Pool:", (WSD[uENE]))
        print("Strength:", (WSD[uSTR]))
        print("Spirit:", (WSD[uSPR]))
        print("Skill:", (WSD[uSKL]))
        print("Ability:", (WSD[uABL]))
        print("Agility:", (WSD[uAGI]))
        print("Evasion:", (WSD[uEVA]))
        print("Toughness:", (WSD[uTGH]))
        print("Resistance:", (WSD[uRES]))
        print("Luck:", (WSD[uLCK]))
        print("Physical Resist: ", (WSD[uPAR]))
        print("Magical Resist: ", (WSD[uMAR]))
        print("-----------------")
    elif choice == "WL" or choice == "wl":
        choice = input(
            "Select a Weapon!\n [IW] Ivory Wand!\n [GR] Gold Rod!\n ")
        if choice == "IW" or choice == "iw" or choice == "Ivory Wand" or choice == "ivory wand":
            choice = input(
                "Select an action!\n [W] Weak Magic Blast!\n [S] Split Magic Blast!\n [N] Normal Magic Blast!\n [FB] Flame Blast!\n [WW] Windy Whip!\n "
            )
            if choice == "W" or choice == "w" or choice == "Weak" or choice == "weak":
                TLB.MagicBlastW("Loriana", "NormalIvoryWand0")
            elif choice == "S" or choice == "s" or choice == "Split" or choice == "split":
                TLB.MagicBlastS("Loriana", "NormalIvoryWand0")
            elif choice == "N" or choice == "n" or choice == "Normal" or choice == "normal":
                TLB.MagicBlastN("Loriana", "NormalIvoryWand0")
            if choice == "WW" or choice == "ww" or choice == "Windy Whip" or choice == "windy whip":
                SLB.WindyWhip("Loriana", "NormalIvoryWand0")
            elif choice == "FB" or choice == "fb" or choice == "Flame Blast" or choice == "flame blast":
                SLB.FlameBlast("Loriana", "NormalIvoryWand0")
        elif choice == "GR" or choice == "gr" or choice == "Gold Rod" or choice == "Golden Rod" or choice == "gold rod" or choice == "golden rod":
            choice = input(
                "Select an action!\n [W] Weak Magic Blast!\n [S] Split Magic Blast!\n [N] Normal Magic Blast!\n [FB] Flame Blast!\n [WW] Windy Whip!\n "
            )
            if choice == "W" or choice == "w" or choice == "Weak" or choice == "weak":
                TLB.MagicBlastW("Loriana", "NormalGoldRod0")
            elif choice == "S" or choice == "s" or choice == "Split" or choice == "split":
                TLB.MagicBlastS("Loriana", "NormalGoldRod0")
            elif choice == "N" or choice == "n" or choice == "Normal" or choice == "normal":
                TLB.MagicBlastN("Loriana", "NormalGoldRod0")
            if choice == "WW" or choice == "ww" or choice == "Windy Whip" or choice == "windy whip":
                SLB.WindyWhip("Loriana", "NormalGoldRod0")
            elif choice == "FB" or choice == "fb" or choice == "Flame Blast" or choice == "flame blast":
                SLB.FlameBlast("Loriana", "NormalGoldRod0")
Example #5
0
def Roselyn(Roselyn):
    u = Roselyn
    uMHP = u + "MHP"
    uENE = u + "ENE"
    uSTR = u + "STR"
    uSPR = u + "SPR"
    uSKL = u + "SKL"
    uABL = u + "ABL"
    uAGI = u + "AGI"
    uEVA = u + "EVA"
    uTGH = u + "TGH"
    uRES = u + "RES"
    uLCK = u + "LCK"
    uPAR = u + "PAR"
    uMAR = u + "MAR"
    choice = input(
        "Select something!\n [ST] Statcheck!\n [IW] Ivory Wand!\n [BC] Battlecannon!\n [I] Inventory!\n "
    )
    if choice == "ST" or choice == "st":
        choice = input("Select one!\n [P]layer!\n [E]quipment!\n ")
        if choice == "P" or choice == "p":
            print("These are the stats of", u, "so far!")
            print("-----------------")
            print("Health Pool:", (WSD[uMHP]))
            print("Energy Pool:", (WSD[uENE]))
            print("Strength:", (WSD[uSTR]))
            print("Spirit:", (WSD[uSPR]))
            print("Skill:", (WSD[uSKL]))
            print("Ability:", (WSD[uABL]))
            print("Agility:", (WSD[uAGI]))
            print("Evasion:", (WSD[uEVA]))
            print("Toughness:", (WSD[uTGH]))
            print("Resistance:", (WSD[uRES]))
            print("Luck:", (WSD[uLCK]))
            print("Physical Resist: ", (WSD[uPAR]))
            print("Magical Resist: ", (WSD[uMAR]))
            print("-----------------")
        elif choice == "E" or choice == "e":
            choice = input(
                "Which items stats are we checking?\n [IW] Ivory Wand?\n [BC] Battlecannon?\n [BS] Bronze Shield?\n [AS] Armor Set?\n "
            )
            if choice == "IW" or choice == "iw":
                print("-----------------")
                print(OmniWeapData["NormalIvoryWand0"][6])
                print("Physical Damage is",
                      OmniWeapData["NormalIvoryWand0"][0])
                print("Magical Damage is", OmniWeapData["NormalIvoryWand0"][1])
                print("Weapon Accuracy is",
                      OmniWeapData["NormalIvoryWand0"][2])
                print("Weapon Weight is", OmniWeapData["NormalIvoryWand0"][3])
                print("Can be sold for", OmniWeapData["NormalIvoryWand0"][5])
                print("-----------------")
            elif choice == "BC" or choice == "bc":
                print("-----------------")
                print(OmniWeapData["NormalCobaltBattlecannon0"][6])
                print("Physical Damage is",
                      OmniWeapData["NormalCobaltBattlecannon0"][0])
                print("Magical Damage is",
                      OmniWeapData["NormalCobaltBattlecannon0"][1])
                print("Weapon Accuracy is",
                      OmniWeapData["NormalCobaltBattlecannon0"][2])
                print("Weapon Weight is",
                      OmniWeapData["NormalCobaltBattlecannon0"][3])
                print("Can be sold for",
                      OmniWeapData["NormalCobaltBattlecannon0"][5])
                print("-----------------")
            elif choice == "BS" or choice == "bs":
                print("-----------------")
                print("Physical Resist is",
                      OmniArmorData["NormalBronzeSmallshield0"][0])
                print("Magical Resist is",
                      OmniArmorData["NormalBronzeSmallshield0"][1])
                print("Weight is",
                      OmniArmorData["NormalBronzeSmallshield0"][2])
                print("Can be sold for",
                      OmniArmorData["NormalBronzeSmallshield0"][4])
                print("-----------------")
    elif choice == "IW" or choice == "iw":
        choice = input("Select your Action!\n [At]tacks!\n [Sk]ills!\n ")
        if choice == "AT" or choice == "at" or choice == "At":
            TLB.WandRay("Roselyn", "IvoryWand0", "Flame")
        elif choice == "SK" or choice == "Sk" or choice == "sk":
            choice = input(
                "Select a Skill!\n [FB] Flame Blast!\n [FI] Fireball!\n ")
            if choice == "FB" or choice == "Fb" or choice == "fb":
                SLB.FlameBlast("Roselyn", "IvoryWand0")
            elif choice == "FI" or choice == "Fi" or choice == "fi":
                SLB.Fireball("Roselyn", "IvoryWand0")
    elif choice == "BC" or choice == "bc":
        TLB.UnlearnedBattlecannon("Roselyn", "NormalCobaltBattlecannon0",
                                  "Flame")