예제 #1
0
파일: voodoo.py 프로젝트: Ardnived/Regicide
 def __init__(self):
     Action.__init__(self,
         name = "Purge",
         targets = [Tile.TARGET_ENTITY],
         description = "Attempts to remove a chosen spirit from the target.",
         tags = ['spell', 'voodoo']
     )
예제 #2
0
파일: voodoo.py 프로젝트: Ardnived/Regicide
 def __init__(self):
     Action.__init__(self,
         name = "Possess",
         targets = [Tile.TARGET_ENTITY],
         description = "Take control of an enemy.",
         tags = ['spell', 'voodoo'],
         target_range = 3,
     )
예제 #3
0
파일: misc.py 프로젝트: Ardnived/Regicide
 def __init__(self):
     Action.__init__(self,
         name = "Move",
         targets = [Tile.TARGET_PASSABLE],
         description = "",
     )
예제 #4
0
파일: misc.py 프로젝트: Ardnived/Regicide
 def __init__(self):
     Action.__init__(self,
         name = "Attack",
         targets = [Tile.TARGET_ENTITY],
         description = "",
     )
예제 #5
0
파일: voodoo.py 프로젝트: Ardnived/Regicide
 def __init__(self, name, description, blueprint):
     Action.__init__(self, name, description, 
         targets = [Tile.TARGET_ENTITY, Tile.TARGET_ITEM], 
         tags = ['spell', 'voodoo', 'spirit']
     )
     self.blueprint = blueprint