-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenemies.json
More file actions
119 lines (118 loc) · 3.11 KB
/
enemies.json
File metadata and controls
119 lines (118 loc) · 3.11 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"enemies": {
"easy": [
{
"name": "large angry wolf",
"room": "cave floor with bones and fur"
},
{
"name": "giant hungry rat",
"room": "small bones and fur on nasty floor"
},
{
"name": "sneaky greedy goblin",
"room": "disorganized room with cooking pot"
},
{
"name": "rusty emotionless robot",
"room": "floor with dirt, rust and bolts"
},
{
"name": "giant chaotic frog",
"room": "floor with eggs and saliva dripping"
},
{
"name": "giant spider with large fangs",
"room": "floor and ceiling with eggs in cave"
},
{
"name": "giant fast beetle",
"room": "hiding under dirt with stink"
},
{
"name": "giant slimy worm",
"room": "digs out from under dusty floor"
},
{
"name": "group of vampire bats",
"room": "smelly room with bones on floor"
}
],
"medium": [
{
"name": "angry wailing ghost",
"room": "room with puddles of tears on floor"
},
{
"name": "fast viscous basilisk",
"room": "room with dead rats"
},
{
"name": "screeching furious harpy",
"room": "room with talon marks on walls"
},
{
"name": "emotionless fire elemental",
"room": "room with scorched rocks"
},
{
"name": "gluttonous ooze",
"room": "room covered in green sticky ooze"
},
{
"name": "undead knight",
"room": "empty, windy room with dead goblins"
},
{
"name": "giant cobra",
"room": "cave ground, dripping venom"
},
{
"name": "prideful genie",
"room": "inside a bottle"
},
{
"name": "dnd mimic monster",
"room": "lying on cave ground"
}
],
"hard": [
{
"name": "angry dumb cave troll",
"room": "cave cooking meat and eating"
},
{
"name": "hydra with eight heads",
"room": "crumbling stone walls around"
},
{
"name": "proud minotaur with club and axe",
"room": "refined well-made room"
},
{
"name": "purple sturdy crystal golem",
"room": "room made of purple crystal"
},
{
"name": "sneaky fastidious vampire",
"room": "haunted house with large dining room"
},
{
"name": "animated lion skeleton",
"room": "emerges from large pile of bones"
},
{
"name": "giant emotionless scorpion",
"room": "asleep on floor cooling off"
},
{
"name": "vicious vain gorgon",
"room": "stone small animals around on floor"
},
{
"name": "powerful instinctual chimera",
"room": "eating a small meal it caught"
}
]
}
}