-
Notifications
You must be signed in to change notification settings - Fork 0
/
mokemon.js
124 lines (124 loc) · 3.33 KB
/
mokemon.js
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
120
121
122
123
124
const mokemon = {
"Apismanion": {
frameCount: {x: 1, y: 1},
width: .875,
height: 1,
walkSpeed: 1,
runSpeed: 3,
fleeRadius: 10,
foodValue: 160,
hunger: 16,
max_hp: 10,
immuneResponse: 1,
description: "A creature of the swamp. Shy, and faster than it looks. Its legs don't make sense, but it's cute.",
frequency: {},
},
"Dezzy": {
frameCount: {x: 1, y: 1},
width: .75,
height: 1.2,
walkSpeed: 1,
runSpeed: 2,
fleeRadius: 10,
foodValue: 140,
hunger: 8,
max_hp: 9,
immuneResponse: 2,
description: "A fun-loving flipper-flopper, hardy and disease resistant. Doesn't eat much.",
frequency: {},
},
"Mallowbear": {
frameCount: {x: 1, y: 1},
width: 1,
height: 1.2,
walkSpeed: 1,
runSpeed: 2,
fleeRadius: 6,
foodValue: 220,
hunger: 34,
max_hp: 20,
immuneResponse: .3,
description: "Strong, sturdy, and stoic. Eats a lot. Susceptible to disease.",
frequency: {},
},
"Marlequin": {
frameCount: {x: 1, y: 1},
width: .9,
height: 1.1,
walkSpeed: 1,
runSpeed: 3,
fleeRadius: 10,
foodValue: 90,
randomMotion: 3,
foodValue: 190,
hunger: 10,
max_hp: 13,
immuneResponse: .9,
description: "Enigmatic and rare. Might have special powers, or maybe it just wants you to think that.",
frequency: {},
},
"Wingmat": {
frameCount: {x: 1, y: 1},
width: 1.75,
height: 1,
walkSpeed: 1,
runSpeed: 1.7,
fleeRadius: 10,
foodValue: 250,
hunger: 16,
max_hp: 10,
immuneResponse: 1.5,
description: "Looks like it could maybe fly, but can't. Pretty good to eat in a pinch.",
frequency: {},
},
"Zyant": {
frameCount: {x: 1, y: 1},
width: 1.2,
height: 1.2,
walkSpeed: 1,
runSpeed: 3.5,
fleeRadius: 10,
foodValue: 220,
hunger: 14,
max_hp: 18,
immuneResponse: 1.8,
description: "This mysterious deer-thing is found in the woods, lurking behind a tree. Strong, resilient and very quiet.",
frequency: {},
},
"Shadowdragon": {
frameCount: {x: 1, y: 2},
width: 2,
height: 1.75,
walkSpeed: .75,
runSpeed: 3,
chaseRadius: 10,
attackVerb: "strikes",
damage: 75,
foodValue: 350,
hunger: 50,
max_hp: 25,
immuneResponse: 1,
description: "Part dragon, part dog, part mantis, pretty big, definitely worth a lot of money. Eats a ton.",
frequency: {},
},
"Fragglegod": {
frameCount: {x: 2, y: 2},
width: 1.4,
height: 1.4,
thumbnailWidth: 0.8,
walkSpeed: .75,
runSpeed: 1.5,
fleeRadius: 10,
chaseRadius: 5,
attackRange: 2,
attackVerb: "smites",
damage: 100,
foodValue: 150,
hunger: 10,
max_hp: 5,
immuneResponse: 1,
description: "Loyal and powerful, but not tough. Bring this one out when you need a pinch hitter.",
frequency: {},
}
}
module.exports = mokemon