-
Notifications
You must be signed in to change notification settings - Fork 0
/
HealthPoints.py
41 lines (32 loc) · 1.1 KB
/
HealthPoints.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# coding: utf-8
from HealthPoint import HealthPoint
def get_health_point(health_point : str) -> HealthPoint:
return globals()[health_point].copy()
Heart = HealthPoint("Heart",
['Body Type'],
[],
['Dead'])
Splanch = HealthPoint("Splanch",
['Body Type'],
['Alive'],
[])
Kidney = HealthPoint("Kidney",
['Body Type'],
['Alive'],
[])
Arm = HealthPoint("Arm",
['Body Type'],
['Attack','Normal Attack'],
[])
Spear = HealthPoint("Spear",
['Equipment Type','Weapon Type'],
['Attack','Piercing Attack'],
[])
Phylactery = HealthPoint("Phylactery",
['Equipment Type'],
['Undead'],
[])
SpareMuscles = HealthPoint("Spare Muscles",
['Body Type'],
['Bonus Damage'],
[])