Exemple #1
0
 def testBadTargets(self):
     spells = ["passdoor", "enchant"]
     badTargets = [self.targetCharObj, self.targetCreaObj]
     charObj = self.charDict.get("mage")
     charObj.setLevel(10)
     for spellName in spells:
         chant = magic.getSpellChant(spellName)
         for target in badTargets:
             spellObj = magic.Spell(charObj, target, spellName, chant)
             assert not spellObj.cast(charObj)
     spells = [
         "vigor",
         "heal",
         "fireball",
         "lightning",
         "hurt",
         "disintegrate",
         "turn",
         "curepoison",
         "befuddle",
         "teleport",
         "enchant",
         "bless",
         "protect",
         "curse",
         "poison",
         "intoxicate",
         "vuln",
     ]
     badTargets = [self.targetDoorObj]
     for spellName in spells:
         chant = magic.getSpellChant(spellName)
         for target in badTargets:
             spellObj = magic.Spell(charObj, target, spellName, chant)
             assert not spellObj.cast(charObj)
Exemple #2
0
 def testBadLevels(self):
     spells = ["lightning", "identify", "disintegrate"]
     goodLvls = {
         "mage": {
             "lightning": [4, 7, 10],
             "identify": [5, 7, 10],
             "disintegrate": [7, 10],
         },
         "fighter": {
             "lightning": [8, 10],
             "identify": [10],
             "disintegrate": []
         }
     }
     badLvls = {
         "mage": {
             "lightning": [1, 3],
             "identify": [1, 4],
             "disintegrate": [1, 3, 6],
         },
         "fighter": {
             "lightning": [1, 3, 7],
             "identify": [1, 4, 9],
             "disintegrate": [1, 100],
         },
     }
     target = self.targetCharObj
     for className in goodLvls.keys():
         charObj = self.charDict.get(className)
         for spellName in spells:
             chant = magic.getSpellChant(spellName)
             for level in goodLvls[className][spellName]:
                 charObj.setLevel(level)
                 spellObj = magic.Spell(charObj, target, spellName, chant)
                 lvlReq = str(spellObj.levelRequired)
                 assert spellObj.cast(charObj), (
                     "level " + str(charObj.getLevel()) + " " +
                     charObj.getClassName() + " should be able to cast " +
                     spellObj.spellName + " which requires level " +
                     str(lvlReq) + "\n" + spellObj.debug())
             for level in badLvls[className][spellName]:
                 charObj.setLevel(level)
                 spellObj = magic.Spell(charObj, target, spellName, chant)
                 lvlReq = str(spellObj.levelRequired)
                 assert not spellObj.cast(charObj), (
                     "level " + str(charObj.getLevel()) + " " +
                     charObj.getClassName() + " should not be able to " +
                     "cast " + spellObj.spellName +
                     " which requires level " + str(lvlReq))
Exemple #3
0
 def testFailedChants(self):
     spells = magic.SpellList
     charObj = self.charDict.get("mage")
     target = self.targetCharObj
     chant = "I don't know the chant"
     for spellName in spells:
         if spellName == "":
             continue
         spellObj = magic.Spell(charObj, target, spellName, chant)
         assert not spellObj.succeeded
Exemple #4
0
    def testMana(self):
        spells = [
            "vigor",
            "heal",
            "fireball",
            "lightning",
            "hurt",
            "disintegrate",
            "curepoison",
            "befuddle",
            "teleport",
            "protect",
            "poison",
            "intoxicate",
            "vuln",
        ]
        badMana = 1
        goodMana = 99
        charObj = self.charDict.get("mage")
        target = self.targetCharObj
        for spellName in spells:
            if spellName == "":
                continue
            charObj.setMana(goodMana)
            chant = magic.getSpellChant(spellName)
            # cast with plenty of mana - should pass
            spellObj = magic.Spell(charObj, target, spellName, chant)
            msg = ("ManaPass: spell=" + spellName + " - charHas=" +
                   str(charObj.getMana()) + " - spellReq: " +
                   str(spellObj.getMana()))
            assert spellObj.succeeded, msg

            # cast with insufficient mana - should fail
            charObj.setMana(badMana)
            spellObj = magic.Spell(charObj, target, spellName, chant)
            msg = ("ManaFail: spell=" + spellName + " - charHas=" +
                   str(charObj.getMana()) + " - spellReq: " +
                   str(spellObj.getMana()))
            assert not spellObj.succeeded, msg
Exemple #5
0
 def testHealthSpells(self):
     spells = ["vigor", "heal"]
     target = self.targetCharObj
     for charClass in self.charDict.keys():
         charObj = self.charDict[charClass]
         for level in [1, 3, 7, 10]:
             charObj.setLevel(level)
             for spellName in spells:
                 chant = magic.getSpellChant(spellName)
                 spellObj = magic.Spell(charObj, target, spellName, chant)
                 msg = ("testHealthSpells - class=" + charClass +
                        " - level=" + str(level) + " - spell=" + spellName +
                        " - damage=" + str(spellObj.health))
                 assert spellObj.health != 0, msg
Exemple #6
0
 def testDamageSpells(self):
     spells = ["fireball", "lightning", "hurt", "disintegrate"]
     target = self.targetCharObj
     for charClass in self.charDict.keys():
         charObj = self.charDict[charClass]
         for level in [1, 3, 7, 10]:
             charObj.setLevel(level)
             for spellName in spells:
                 chant = magic.getSpellChant(spellName)
                 spellObj = magic.Spell(charObj, target, spellName, chant)
                 msg = ("testDamageSpells - class=" + charClass +
                        " - level=" + str(level) + " - spell=" + spellName +
                        " - damage=" + str(spellObj.damage))
                 assert spellObj.damage != 0, msg
Exemple #7
0
 def testDoorSpells(self):
     spells = ["passdoor"]
     target = self.targetCharObj
     for charClass in self.charDict.keys():
         charObj = self.charDict[charClass]
         for level in [1, 3, 7, 10]:
             charObj.setLevel(level)
             for spellName in spells:
                 chant = magic.getSpellChant(spellName)
                 spellObj = magic.Spell(charObj, target, spellName, chant)
                 msg = ("testDoorSpells - class=" + charClass +
                        " - level=" + str(level) + " - spell=" + spellName +
                        " - succeeded=" + str(spellObj.succeeded))
                 # assert spellObj.succeeded != 0, msg
                 msg = msg  # remove when we complete the assert
Exemple #8
0
print("\n\n")
'''print(game.Bcolors.OKBLUE + game.Bcolors.BOLD + "NAME                    HP                                         MP" + game.Bcolors.ENDC)

print("                        -------------------------                 ---------- ")

print(game.Bcolors.OKORANGE +"JARVIS:        460/460 |                         |         65/65 |██████████|"+game.Bcolors.ENDC)

print("                        -------------------------                 ---------- ")
print(game.Bcolors.OKORANGE +"Vision:        460/460 |                         |         65/65 |██████████|"+game.Bcolors.ENDC)

print("                        -------------------------                 ---------- ")
print(game.Bcolors.OKORANGE +"JARVIS:        460/460 |                         |         65/65 |██████████|"+game.Bcolors.ENDC)

'''
#Create black magic
fire = magic.Spell("Fire", 25, 600, "black")
thunder = magic.Spell("Thunder", 25, 600, "black")
blizzard = magic.Spell("Blizzard", 25, 600, "black")
meteor = magic.Spell("Meteor", 40, 1200, "black")
quake = magic.Spell("Quake", 14, 140, "black")

#Create white magic
cure = magic.Spell("Cure", 25, 600, "white")
cura = magic.Spell("Cura", 32, 1200, "white")

#Create Items
potion = Item("Potion", "potion", "Heals 50 HP ", 50)
hipotion = Item("Hi-Potion", "potion", "Heals 100 HP", 100)
superpotion = Item("Super Potion", "potion", "Heals 1000 HP", 1000)
elixer = Item("Elixer", "elixer", "Fully restores HP/MP of one party member",
              9999)