Ejemplo n.º 1
0
 def log_skill(self, amount, target, old_value, new_value):
     utils.slow_type(
         "%s: [%s] on %s dealing %s dmg. (%d -> %d)\n" % (
             utils.bold(utils.color_green(self.caster.name)),
             utils.color_yellow(str(self)),
             target.name, utils.bold(str(amount)),
             old_value, target.hp))
     utils.slow_type(
         "%s: [%s] on %s decreases DEF/SPR.\n" % (
             utils.bold(utils.color_green(self.caster.name)),
             utils.color_yellow(str(self)), target.name))
Ejemplo n.º 2
0
 def log_skill(self, amount, target, old_value, new_value):
     utils.slow_type(
         "%s: [%s] on %s restoring MP.\n" % (
             utils.bold(utils.color_green(self.caster.name)),
             utils.color_yellow(str(self)), target.name))
Ejemplo n.º 3
0
 def log_skill(self, amount, target, old_value, new_value):
     utils.slow_type(
         "%s: [%s] on self increase ATK and DEF.\n" % (
             utils.bold(utils.color_green(self.caster.name)),
             utils.color_yellow(str(self))))
Ejemplo n.º 4
0
 def log_skill(self, amount, target, old_value, new_value):
     utils.slow_type("%s: [%s] on %s for %s HP. (%d -> %d)\n" % (
         utils.bold(utils.color_green(self.caster.name)),
         utils.color_yellow(str(self)),
         target.name, utils.bold(str(amount)), old_value, new_value))