示例#1
0
def Robes(Unit):
    u = Unit
    uHP = WSD[Unit].HP
    uENE = WSD[Unit].ENE
    uSTR = WSD[Unit].STR
    uSPR = WSD[Unit].SPR
    uSKL = WSD[Unit].SKL
    uABL = WSD[Unit].ABL
    uAGI = WSD[Unit].AGI
    uEVA = WSD[Unit].EVA
    uTGH = WSD[Unit].TGH
    uRES = WSD[Unit].RES
    uLCK = WSD[Unit].LCK
    uPAR = WSD[Unit].PAR
    uMAR = WSD[Unit].MAR
    uWT = WSD[Unit].ArmorWT
    choice = input(
        "Select an action type!\n [St]atcheck!\n [B]attlestaff!\n [I]nventory!\n "
    )
    if choice == "ST" or choice == "St" or choice == "st":
        print("-----------------")
        print("HP:", uHP)
        print("ENE:", uENE)
        print("STR:", uSTR)
        print("SPR:", uSPR)
        print("SKL:", uSKL)
        print("ABL:", uABL)
        print("AGI:", uAGI)
        print("EVA:", uEVA)
        print("TGH:", uTGH)
        print("RES:", uRES)
        print("LCK:", uLCK)
        print("PAR:", uPAR)
        print("MAR:", uMAR)
        print("WT:", uWT)
        print("-----------------")
    elif choice == "B" or choice == "b":
        choice = input("Select an action!\n [Q]uick!\n [N]ormal!\n [H]ard!\n ")
        if choice == "Q" or choice == "q":
            AttacksOO.Battlestaff("NormalBronzeBattlestaff2", "Robes", Wind, 1,
                                  0).QATK
        elif choice == "N" or choice == "n":
            AttacksOO.Battlestaff("NormalBronzeBattlestaff2", "Robes", Wind, 1,
                                  0).NATK
        elif choice == "H" or choice == "h":
            AttacksOO.Battlestaff("NormalBronzeBattlestaff2", "Robes", Wind, 1,
                                  0).HATK
    elif choice == "I" or choice == "i":
        choice = input(
            "Select an Item!\n [G]reen Apple!\n [O]range!\n [T]hrowing Stars!\n "
        )
        if choice == "G" or choice == "g":
            Items.GreenApple("Robes")
        elif choice == "O" or choice == "o":
            Items.SweetOrange("Robes")
        elif choice == "T" or choice == "t":
            Items.ThrowingStar("Robes")
示例#2
0
def Robes(Robes):
    u = Robes
    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 an action type!\n [St]atcheck!\n [B]attlestaff!\n [I]nventory!\n "
    )
    if choice == "ST" or choice == "St" or choice == "st":
        print("These are the stats for", u, "as they currently stand!")
        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 == "B" or choice == "b":
        TLB.Staff("Robes", "NormalBronzeBattlestaff2", "Wind")
    elif choice == "I" or choice == "i":
        choice = input(
            "Select an Item!\n [G]reen Apple!\n [O]range!\n [T]hrowing Stars!\n "
        )
        if choice == "G" or choice == "g":
            Items.GreenApple("Robes")
        elif choice == "O" or choice == "o":
            Items.SweetOrange("Robes")
        elif choice == "T" or choice == "t":
            Items.ThrowingStar("Robes")