dd-next-encounters 2.0.2 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 945f7c7dc15f7dd4da37446954305b1d330c1999
4
- data.tar.gz: 0a31270373af1b5c1f0fe2da1e205f156d2a5ec6
3
+ metadata.gz: 00bca69e8f9ef2b72a7f571920b8cdab32b4ce9f
4
+ data.tar.gz: c851c9d98d161e672a08df02eea9b8cb037a0529
5
5
  SHA512:
6
- metadata.gz: '01969b7da0690b39e603eab5df993f2b0dbb1d08e342d5afe7de69c0285db89af86fac230d67f903d8123e4402d56c3b1202ec1a5dc02fea79dfbfff60fcafb3'
7
- data.tar.gz: 93b56eb44580a38b4987ba5f38666c30cc60ecdb9667bab48793a47df8f7f19cea6f8839caa8530fcd14133cd7a524c8f1c7ded02a3bc312ec587b6469c10d6f
6
+ metadata.gz: ad08a5cfcf4c8774653212f5df31e6cd3ccc82fe6dfd3bff24209d0b9b8744f8858ac6b122e522843650a120c80438b7927d0f517270c5c5cbe3e5b9191a0696
7
+ data.tar.gz: 18f35a81bb89c77ce09541bafb45aa1fffb735be266801ba43e6e7dab9cef77c410bb2893c33e0c5ebf54079c489a101199e261460e00bfd44069e5a65e4d338
data/README.md CHANGED
@@ -7,4 +7,41 @@ An encounter generator for DD next
7
7
 
8
8
  # Compatibility
9
9
 
10
- Require ruby 2.4.3 or higher.
10
+ Require ruby 2.4.0 or higher.
11
+
12
+ # Setup
13
+
14
+ ```shell
15
+ gem install dd-next-encounters
16
+ ```
17
+
18
+ Or in your gemfile :
19
+ ```ruby
20
+ gem 'dd-next-encounters'
21
+ ```
22
+
23
+ Then in your code :
24
+ ```ruby
25
+ require 'dd-next-encounters'
26
+ ```
27
+
28
+ # Usage
29
+
30
+ ```ruby
31
+ # Create a lair object for a four five level party at medium difficulty.
32
+ # Difficulty can be :easy, :medium, :hard, :deadly
33
+ # Note that level 15 is the max for now
34
+ l = Lairs.new :medium, [5]*4
35
+
36
+ # Then you can generate encounters for this lair.
37
+ 1.upto(5).each do
38
+ p l.encounter.to_s
39
+ end
40
+
41
+ # Output example :
42
+ # "6 Hobgoblin"
43
+ # "3 Bugbear"
44
+ # "4 Orc"
45
+ # "5 Gnoll"
46
+ # "6 Gnoll"
47
+ ```
@@ -0,0 +1,636 @@
1
+ module EncountersData
2
+ ENCOUNTERS =
3
+ [{:id=>:zombie_1, :monster_key=>:zombie, :amount=>1, :xp_value=>50},
4
+ {:id=>:zombie_2, :monster_key=>:zombie, :amount=>2, :xp_value=>150},
5
+ {:id=>:zombie_3, :monster_key=>:zombie, :amount=>3, :xp_value=>300},
6
+ {:id=>:zombie_4, :monster_key=>:zombie, :amount=>4, :xp_value=>400},
7
+ {:id=>:zombie_5, :monster_key=>:zombie, :amount=>5, :xp_value=>500},
8
+ {:id=>:zombie_6, :monster_key=>:zombie, :amount=>6, :xp_value=>600},
9
+ {:id=>:skeleton_1, :monster_key=>:skeleton, :amount=>1, :xp_value=>50},
10
+ {:id=>:skeleton_2, :monster_key=>:skeleton, :amount=>2, :xp_value=>150},
11
+ {:id=>:skeleton_3, :monster_key=>:skeleton, :amount=>3, :xp_value=>300},
12
+ {:id=>:skeleton_4, :monster_key=>:skeleton, :amount=>4, :xp_value=>400},
13
+ {:id=>:skeleton_5, :monster_key=>:skeleton, :amount=>5, :xp_value=>500},
14
+ {:id=>:skeleton_6, :monster_key=>:skeleton, :amount=>6, :xp_value=>600},
15
+ {:id=>:ghoul_1, :monster_key=>:ghoul, :amount=>1, :xp_value=>200},
16
+ {:id=>:ghoul_2, :monster_key=>:ghoul, :amount=>2, :xp_value=>600},
17
+ {:id=>:ghoul_3, :monster_key=>:ghoul, :amount=>3, :xp_value=>1200},
18
+ {:id=>:ghoul_4, :monster_key=>:ghoul, :amount=>4, :xp_value=>1600},
19
+ {:id=>:ghoul_5, :monster_key=>:ghoul, :amount=>5, :xp_value=>2000},
20
+ {:id=>:ghoul_6, :monster_key=>:ghoul, :amount=>6, :xp_value=>2400},
21
+ {:id=>:shadow_1, :monster_key=>:shadow, :amount=>1, :xp_value=>100},
22
+ {:id=>:shadow_2, :monster_key=>:shadow, :amount=>2, :xp_value=>300},
23
+ {:id=>:shadow_3, :monster_key=>:shadow, :amount=>3, :xp_value=>600},
24
+ {:id=>:shadow_4, :monster_key=>:shadow, :amount=>4, :xp_value=>800},
25
+ {:id=>:shadow_5, :monster_key=>:shadow, :amount=>5, :xp_value=>1000},
26
+ {:id=>:shadow_6, :monster_key=>:shadow, :amount=>6, :xp_value=>1200},
27
+ {:id=>:specter_1, :monster_key=>:specter, :amount=>1, :xp_value=>200},
28
+ {:id=>:specter_2, :monster_key=>:specter, :amount=>2, :xp_value=>600},
29
+ {:id=>:specter_3, :monster_key=>:specter, :amount=>3, :xp_value=>1200},
30
+ {:id=>:specter_4, :monster_key=>:specter, :amount=>4, :xp_value=>1600},
31
+ {:id=>:specter_5, :monster_key=>:specter, :amount=>5, :xp_value=>2000},
32
+ {:id=>:specter_6, :monster_key=>:specter, :amount=>6, :xp_value=>2400},
33
+ {:id=>:ghast_1, :monster_key=>:ghast, :amount=>1, :xp_value=>450},
34
+ {:id=>:ghast_2, :monster_key=>:ghast, :amount=>2, :xp_value=>1350},
35
+ {:id=>:ghast_3, :monster_key=>:ghast, :amount=>3, :xp_value=>2700},
36
+ {:id=>:ghast_4, :monster_key=>:ghast, :amount=>4, :xp_value=>3600},
37
+ {:id=>:ghast_5, :monster_key=>:ghast, :amount=>5, :xp_value=>4500},
38
+ {:id=>:ghast_6, :monster_key=>:ghast, :amount=>6, :xp_value=>5400},
39
+ {:id=>:minotaur_skeleton_1,
40
+ :monster_key=>:minotaur_skeleton,
41
+ :amount=>1,
42
+ :xp_value=>450},
43
+ {:id=>:minotaur_skeleton_2,
44
+ :monster_key=>:minotaur_skeleton,
45
+ :amount=>2,
46
+ :xp_value=>1350},
47
+ {:id=>:minotaur_skeleton_3,
48
+ :monster_key=>:minotaur_skeleton,
49
+ :amount=>3,
50
+ :xp_value=>2700},
51
+ {:id=>:minotaur_skeleton_4,
52
+ :monster_key=>:minotaur_skeleton,
53
+ :amount=>4,
54
+ :xp_value=>3600},
55
+ {:id=>:minotaur_skeleton_5,
56
+ :monster_key=>:minotaur_skeleton,
57
+ :amount=>5,
58
+ :xp_value=>4500},
59
+ {:id=>:minotaur_skeleton_6,
60
+ :monster_key=>:minotaur_skeleton,
61
+ :amount=>6,
62
+ :xp_value=>5400},
63
+ {:id=>:mummy_1, :monster_key=>:mummy, :amount=>1, :xp_value=>700},
64
+ {:id=>:mummy_2, :monster_key=>:mummy, :amount=>2, :xp_value=>2100},
65
+ {:id=>:mummy_3, :monster_key=>:mummy, :amount=>3, :xp_value=>4200},
66
+ {:id=>:mummy_lord_1, :monster_key=>:mummy_lord, :amount=>1, :xp_value=>13000},
67
+ {:id=>:vampire_1, :monster_key=>:vampire, :amount=>1, :xp_value=>10000},
68
+ {:id=>:vampire_2, :monster_key=>:vampire, :amount=>2, :xp_value=>30000},
69
+ {:id=>:vampire_3, :monster_key=>:vampire, :amount=>3, :xp_value=>60000},
70
+ {:id=>:vampire_spawn_1,
71
+ :monster_key=>:vampire_spawn,
72
+ :amount=>1,
73
+ :xp_value=>1800},
74
+ {:id=>:vampire_spawn_2,
75
+ :monster_key=>:vampire_spawn,
76
+ :amount=>2,
77
+ :xp_value=>5400},
78
+ {:id=>:vampire_spawn_3,
79
+ :monster_key=>:vampire_spawn,
80
+ :amount=>3,
81
+ :xp_value=>10800},
82
+ {:id=>:vampire_spellcaster_1,
83
+ :monster_key=>:vampire_spellcaster,
84
+ :amount=>1,
85
+ :xp_value=>13000},
86
+ {:id=>:vampire_spellcaster_2,
87
+ :monster_key=>:vampire_spellcaster,
88
+ :amount=>2,
89
+ :xp_value=>39000},
90
+ {:id=>:vampire_spellcaster_3,
91
+ :monster_key=>:vampire_spellcaster,
92
+ :amount=>3,
93
+ :xp_value=>78000},
94
+ {:id=>:vampire_warrior_1,
95
+ :monster_key=>:vampire_warrior,
96
+ :amount=>1,
97
+ :xp_value=>13000},
98
+ {:id=>:vampire_warrior_2,
99
+ :monster_key=>:vampire_warrior,
100
+ :amount=>2,
101
+ :xp_value=>39000},
102
+ {:id=>:vampire_warrior_3,
103
+ :monster_key=>:vampire_warrior,
104
+ :amount=>3,
105
+ :xp_value=>78000},
106
+ {:id=>:goblin_1, :monster_key=>:goblin, :amount=>1, :xp_value=>50},
107
+ {:id=>:goblin_2, :monster_key=>:goblin, :amount=>2, :xp_value=>150},
108
+ {:id=>:goblin_3, :monster_key=>:goblin, :amount=>3, :xp_value=>300},
109
+ {:id=>:goblin_4, :monster_key=>:goblin, :amount=>4, :xp_value=>400},
110
+ {:id=>:goblin_5, :monster_key=>:goblin, :amount=>5, :xp_value=>500},
111
+ {:id=>:goblin_6, :monster_key=>:goblin, :amount=>6, :xp_value=>600},
112
+ {:id=>:hobgoblin_1, :monster_key=>:hobgoblin, :amount=>1, :xp_value=>100},
113
+ {:id=>:hobgoblin_2, :monster_key=>:hobgoblin, :amount=>2, :xp_value=>300},
114
+ {:id=>:hobgoblin_3, :monster_key=>:hobgoblin, :amount=>3, :xp_value=>600},
115
+ {:id=>:hobgoblin_4, :monster_key=>:hobgoblin, :amount=>4, :xp_value=>800},
116
+ {:id=>:hobgoblin_5, :monster_key=>:hobgoblin, :amount=>5, :xp_value=>1000},
117
+ {:id=>:hobgoblin_6, :monster_key=>:hobgoblin, :amount=>6, :xp_value=>1200},
118
+ {:id=>:bugbear_1, :monster_key=>:bugbear, :amount=>1, :xp_value=>200},
119
+ {:id=>:bugbear_2, :monster_key=>:bugbear, :amount=>2, :xp_value=>600},
120
+ {:id=>:bugbear_3, :monster_key=>:bugbear, :amount=>3, :xp_value=>1200},
121
+ {:id=>:bugbear_4, :monster_key=>:bugbear, :amount=>4, :xp_value=>1600},
122
+ {:id=>:bugbear_5, :monster_key=>:bugbear, :amount=>5, :xp_value=>2000},
123
+ {:id=>:bugbear_6, :monster_key=>:bugbear, :amount=>6, :xp_value=>2400},
124
+ {:id=>:orc_1, :monster_key=>:orc, :amount=>1, :xp_value=>100},
125
+ {:id=>:orc_2, :monster_key=>:orc, :amount=>2, :xp_value=>300},
126
+ {:id=>:orc_3, :monster_key=>:orc, :amount=>3, :xp_value=>600},
127
+ {:id=>:orc_4, :monster_key=>:orc, :amount=>4, :xp_value=>800},
128
+ {:id=>:orc_5, :monster_key=>:orc, :amount=>5, :xp_value=>1000},
129
+ {:id=>:orc_6, :monster_key=>:orc, :amount=>6, :xp_value=>1200},
130
+ {:id=>:kobold_1, :monster_key=>:kobold, :amount=>1, :xp_value=>25},
131
+ {:id=>:kobold_2, :monster_key=>:kobold, :amount=>2, :xp_value=>75},
132
+ {:id=>:kobold_3, :monster_key=>:kobold, :amount=>3, :xp_value=>150},
133
+ {:id=>:kobold_4, :monster_key=>:kobold, :amount=>4, :xp_value=>200},
134
+ {:id=>:kobold_5, :monster_key=>:kobold, :amount=>5, :xp_value=>250},
135
+ {:id=>:kobold_6, :monster_key=>:kobold, :amount=>6, :xp_value=>300},
136
+ {:id=>:winged_kobold_1,
137
+ :monster_key=>:winged_kobold,
138
+ :amount=>1,
139
+ :xp_value=>50},
140
+ {:id=>:winged_kobold_2,
141
+ :monster_key=>:winged_kobold,
142
+ :amount=>2,
143
+ :xp_value=>150},
144
+ {:id=>:winged_kobold_3,
145
+ :monster_key=>:winged_kobold,
146
+ :amount=>3,
147
+ :xp_value=>300},
148
+ {:id=>:winged_kobold_4,
149
+ :monster_key=>:winged_kobold,
150
+ :amount=>4,
151
+ :xp_value=>400},
152
+ {:id=>:winged_kobold_5,
153
+ :monster_key=>:winged_kobold,
154
+ :amount=>5,
155
+ :xp_value=>500},
156
+ {:id=>:winged_kobold_6,
157
+ :monster_key=>:winged_kobold,
158
+ :amount=>6,
159
+ :xp_value=>600},
160
+ {:id=>:gnoll_1, :monster_key=>:gnoll, :amount=>1, :xp_value=>100},
161
+ {:id=>:gnoll_2, :monster_key=>:gnoll, :amount=>2, :xp_value=>300},
162
+ {:id=>:gnoll_3, :monster_key=>:gnoll, :amount=>3, :xp_value=>600},
163
+ {:id=>:gnoll_4, :monster_key=>:gnoll, :amount=>4, :xp_value=>800},
164
+ {:id=>:gnoll_5, :monster_key=>:gnoll, :amount=>5, :xp_value=>1000},
165
+ {:id=>:gnoll_6, :monster_key=>:gnoll, :amount=>6, :xp_value=>1200},
166
+ {:id=>:air_elemental_1,
167
+ :monster_key=>:air_elemental,
168
+ :amount=>1,
169
+ :xp_value=>1800},
170
+ {:id=>:air_elemental_2,
171
+ :monster_key=>:air_elemental,
172
+ :amount=>2,
173
+ :xp_value=>5400},
174
+ {:id=>:air_elemental_3,
175
+ :monster_key=>:air_elemental,
176
+ :amount=>3,
177
+ :xp_value=>10800},
178
+ {:id=>:air_elemental_4,
179
+ :monster_key=>:air_elemental,
180
+ :amount=>4,
181
+ :xp_value=>14400},
182
+ {:id=>:air_elemental_5,
183
+ :monster_key=>:air_elemental,
184
+ :amount=>5,
185
+ :xp_value=>18000},
186
+ {:id=>:air_elemental_6,
187
+ :monster_key=>:air_elemental,
188
+ :amount=>6,
189
+ :xp_value=>21600},
190
+ {:id=>:azer_1, :monster_key=>:azer, :amount=>1, :xp_value=>450},
191
+ {:id=>:azer_2, :monster_key=>:azer, :amount=>2, :xp_value=>1350},
192
+ {:id=>:azer_3, :monster_key=>:azer, :amount=>3, :xp_value=>2700},
193
+ {:id=>:azer_4, :monster_key=>:azer, :amount=>4, :xp_value=>3600},
194
+ {:id=>:azer_5, :monster_key=>:azer, :amount=>5, :xp_value=>4500},
195
+ {:id=>:azer_6, :monster_key=>:azer, :amount=>6, :xp_value=>5400},
196
+ {:id=>:dust_mephit_1, :monster_key=>:dust_mephit, :amount=>1, :xp_value=>100},
197
+ {:id=>:dust_mephit_2, :monster_key=>:dust_mephit, :amount=>2, :xp_value=>300},
198
+ {:id=>:dust_mephit_3, :monster_key=>:dust_mephit, :amount=>3, :xp_value=>600},
199
+ {:id=>:dust_mephit_4, :monster_key=>:dust_mephit, :amount=>4, :xp_value=>800},
200
+ {:id=>:dust_mephit_5,
201
+ :monster_key=>:dust_mephit,
202
+ :amount=>5,
203
+ :xp_value=>1000},
204
+ {:id=>:dust_mephit_6,
205
+ :monster_key=>:dust_mephit,
206
+ :amount=>6,
207
+ :xp_value=>1200},
208
+ {:id=>:earth_elemental_1,
209
+ :monster_key=>:earth_elemental,
210
+ :amount=>1,
211
+ :xp_value=>1800},
212
+ {:id=>:earth_elemental_2,
213
+ :monster_key=>:earth_elemental,
214
+ :amount=>2,
215
+ :xp_value=>5400},
216
+ {:id=>:earth_elemental_3,
217
+ :monster_key=>:earth_elemental,
218
+ :amount=>3,
219
+ :xp_value=>10800},
220
+ {:id=>:earth_elemental_4,
221
+ :monster_key=>:earth_elemental,
222
+ :amount=>4,
223
+ :xp_value=>14400},
224
+ {:id=>:earth_elemental_5,
225
+ :monster_key=>:earth_elemental,
226
+ :amount=>5,
227
+ :xp_value=>18000},
228
+ {:id=>:earth_elemental_6,
229
+ :monster_key=>:earth_elemental,
230
+ :amount=>6,
231
+ :xp_value=>21600},
232
+ {:id=>:fire_elemental_1,
233
+ :monster_key=>:fire_elemental,
234
+ :amount=>1,
235
+ :xp_value=>1800},
236
+ {:id=>:fire_elemental_2,
237
+ :monster_key=>:fire_elemental,
238
+ :amount=>2,
239
+ :xp_value=>5400},
240
+ {:id=>:fire_elemental_3,
241
+ :monster_key=>:fire_elemental,
242
+ :amount=>3,
243
+ :xp_value=>10800},
244
+ {:id=>:fire_elemental_4,
245
+ :monster_key=>:fire_elemental,
246
+ :amount=>4,
247
+ :xp_value=>14400},
248
+ {:id=>:fire_elemental_5,
249
+ :monster_key=>:fire_elemental,
250
+ :amount=>5,
251
+ :xp_value=>18000},
252
+ {:id=>:fire_elemental_6,
253
+ :monster_key=>:fire_elemental,
254
+ :amount=>6,
255
+ :xp_value=>21600},
256
+ {:id=>:fire_snake_1, :monster_key=>:fire_snake, :amount=>1, :xp_value=>200},
257
+ {:id=>:fire_snake_2, :monster_key=>:fire_snake, :amount=>2, :xp_value=>600},
258
+ {:id=>:fire_snake_3, :monster_key=>:fire_snake, :amount=>3, :xp_value=>1200},
259
+ {:id=>:fire_snake_4, :monster_key=>:fire_snake, :amount=>4, :xp_value=>1600},
260
+ {:id=>:fire_snake_5, :monster_key=>:fire_snake, :amount=>5, :xp_value=>2000},
261
+ {:id=>:fire_snake_6, :monster_key=>:fire_snake, :amount=>6, :xp_value=>2400},
262
+ {:id=>:galeb_duhr_1, :monster_key=>:galeb_duhr, :amount=>1, :xp_value=>2300},
263
+ {:id=>:galeb_duhr_2, :monster_key=>:galeb_duhr, :amount=>2, :xp_value=>6900},
264
+ {:id=>:galeb_duhr_3, :monster_key=>:galeb_duhr, :amount=>3, :xp_value=>13800},
265
+ {:id=>:galeb_duhr_4, :monster_key=>:galeb_duhr, :amount=>4, :xp_value=>18400},
266
+ {:id=>:galeb_duhr_5, :monster_key=>:galeb_duhr, :amount=>5, :xp_value=>23000},
267
+ {:id=>:galeb_duhr_6, :monster_key=>:galeb_duhr, :amount=>6, :xp_value=>27600},
268
+ {:id=>:gargoyle_1, :monster_key=>:gargoyle, :amount=>1, :xp_value=>450},
269
+ {:id=>:gargoyle_2, :monster_key=>:gargoyle, :amount=>2, :xp_value=>1350},
270
+ {:id=>:gargoyle_3, :monster_key=>:gargoyle, :amount=>3, :xp_value=>2700},
271
+ {:id=>:gargoyle_4, :monster_key=>:gargoyle, :amount=>4, :xp_value=>3600},
272
+ {:id=>:gargoyle_5, :monster_key=>:gargoyle, :amount=>5, :xp_value=>4500},
273
+ {:id=>:gargoyle_6, :monster_key=>:gargoyle, :amount=>6, :xp_value=>5400},
274
+ {:id=>:ice_mephit_1, :monster_key=>:ice_mephit, :amount=>1, :xp_value=>100},
275
+ {:id=>:ice_mephit_2, :monster_key=>:ice_mephit, :amount=>2, :xp_value=>300},
276
+ {:id=>:ice_mephit_3, :monster_key=>:ice_mephit, :amount=>3, :xp_value=>600},
277
+ {:id=>:ice_mephit_4, :monster_key=>:ice_mephit, :amount=>4, :xp_value=>800},
278
+ {:id=>:ice_mephit_5, :monster_key=>:ice_mephit, :amount=>5, :xp_value=>1000},
279
+ {:id=>:ice_mephit_6, :monster_key=>:ice_mephit, :amount=>6, :xp_value=>1200},
280
+ {:id=>:invisible_stalker_1,
281
+ :monster_key=>:invisible_stalker,
282
+ :amount=>1,
283
+ :xp_value=>2300},
284
+ {:id=>:invisible_stalker_2,
285
+ :monster_key=>:invisible_stalker,
286
+ :amount=>2,
287
+ :xp_value=>6900},
288
+ {:id=>:invisible_stalker_3,
289
+ :monster_key=>:invisible_stalker,
290
+ :amount=>3,
291
+ :xp_value=>13800},
292
+ {:id=>:invisible_stalker_4,
293
+ :monster_key=>:invisible_stalker,
294
+ :amount=>4,
295
+ :xp_value=>18400},
296
+ {:id=>:invisible_stalker_5,
297
+ :monster_key=>:invisible_stalker,
298
+ :amount=>5,
299
+ :xp_value=>23000},
300
+ {:id=>:invisible_stalker_6,
301
+ :monster_key=>:invisible_stalker,
302
+ :amount=>6,
303
+ :xp_value=>27600},
304
+ {:id=>:magma_mephit_1,
305
+ :monster_key=>:magma_mephit,
306
+ :amount=>1,
307
+ :xp_value=>100},
308
+ {:id=>:magma_mephit_2,
309
+ :monster_key=>:magma_mephit,
310
+ :amount=>2,
311
+ :xp_value=>300},
312
+ {:id=>:magma_mephit_3,
313
+ :monster_key=>:magma_mephit,
314
+ :amount=>3,
315
+ :xp_value=>600},
316
+ {:id=>:magma_mephit_4,
317
+ :monster_key=>:magma_mephit,
318
+ :amount=>4,
319
+ :xp_value=>800},
320
+ {:id=>:magma_mephit_5,
321
+ :monster_key=>:magma_mephit,
322
+ :amount=>5,
323
+ :xp_value=>1000},
324
+ {:id=>:magma_mephit_6,
325
+ :monster_key=>:magma_mephit,
326
+ :amount=>6,
327
+ :xp_value=>1200},
328
+ {:id=>:magmin_1, :monster_key=>:magmin, :amount=>1, :xp_value=>100},
329
+ {:id=>:magmin_2, :monster_key=>:magmin, :amount=>2, :xp_value=>300},
330
+ {:id=>:magmin_3, :monster_key=>:magmin, :amount=>3, :xp_value=>600},
331
+ {:id=>:magmin_4, :monster_key=>:magmin, :amount=>4, :xp_value=>800},
332
+ {:id=>:magmin_5, :monster_key=>:magmin, :amount=>5, :xp_value=>1000},
333
+ {:id=>:magmin_6, :monster_key=>:magmin, :amount=>6, :xp_value=>1200},
334
+ {:id=>:mud_mephit_1, :monster_key=>:mud_mephit, :amount=>1, :xp_value=>50},
335
+ {:id=>:mud_mephit_2, :monster_key=>:mud_mephit, :amount=>2, :xp_value=>150},
336
+ {:id=>:mud_mephit_3, :monster_key=>:mud_mephit, :amount=>3, :xp_value=>300},
337
+ {:id=>:mud_mephit_4, :monster_key=>:mud_mephit, :amount=>4, :xp_value=>400},
338
+ {:id=>:mud_mephit_5, :monster_key=>:mud_mephit, :amount=>5, :xp_value=>500},
339
+ {:id=>:mud_mephit_6, :monster_key=>:mud_mephit, :amount=>6, :xp_value=>600},
340
+ {:id=>:salamander_1, :monster_key=>:salamander, :amount=>1, :xp_value=>1800},
341
+ {:id=>:salamander_2, :monster_key=>:salamander, :amount=>2, :xp_value=>5400},
342
+ {:id=>:salamander_3, :monster_key=>:salamander, :amount=>3, :xp_value=>10800},
343
+ {:id=>:salamander_4, :monster_key=>:salamander, :amount=>4, :xp_value=>14400},
344
+ {:id=>:salamander_5, :monster_key=>:salamander, :amount=>5, :xp_value=>18000},
345
+ {:id=>:salamander_6, :monster_key=>:salamander, :amount=>6, :xp_value=>21600},
346
+ {:id=>:smoke_mephit_1,
347
+ :monster_key=>:smoke_mephit,
348
+ :amount=>1,
349
+ :xp_value=>50},
350
+ {:id=>:smoke_mephit_2,
351
+ :monster_key=>:smoke_mephit,
352
+ :amount=>2,
353
+ :xp_value=>150},
354
+ {:id=>:smoke_mephit_3,
355
+ :monster_key=>:smoke_mephit,
356
+ :amount=>3,
357
+ :xp_value=>300},
358
+ {:id=>:smoke_mephit_4,
359
+ :monster_key=>:smoke_mephit,
360
+ :amount=>4,
361
+ :xp_value=>400},
362
+ {:id=>:smoke_mephit_5,
363
+ :monster_key=>:smoke_mephit,
364
+ :amount=>5,
365
+ :xp_value=>500},
366
+ {:id=>:smoke_mephit_6,
367
+ :monster_key=>:smoke_mephit,
368
+ :amount=>6,
369
+ :xp_value=>600},
370
+ {:id=>:steam_mephit_1,
371
+ :monster_key=>:steam_mephit,
372
+ :amount=>1,
373
+ :xp_value=>50},
374
+ {:id=>:steam_mephit_2,
375
+ :monster_key=>:steam_mephit,
376
+ :amount=>2,
377
+ :xp_value=>150},
378
+ {:id=>:steam_mephit_3,
379
+ :monster_key=>:steam_mephit,
380
+ :amount=>3,
381
+ :xp_value=>300},
382
+ {:id=>:steam_mephit_4,
383
+ :monster_key=>:steam_mephit,
384
+ :amount=>4,
385
+ :xp_value=>400},
386
+ {:id=>:steam_mephit_5,
387
+ :monster_key=>:steam_mephit,
388
+ :amount=>5,
389
+ :xp_value=>500},
390
+ {:id=>:steam_mephit_6,
391
+ :monster_key=>:steam_mephit,
392
+ :amount=>6,
393
+ :xp_value=>600},
394
+ {:id=>:water_elemental_1,
395
+ :monster_key=>:water_elemental,
396
+ :amount=>1,
397
+ :xp_value=>1800},
398
+ {:id=>:water_elemental_2,
399
+ :monster_key=>:water_elemental,
400
+ :amount=>2,
401
+ :xp_value=>5400},
402
+ {:id=>:water_elemental_3,
403
+ :monster_key=>:water_elemental,
404
+ :amount=>3,
405
+ :xp_value=>10800},
406
+ {:id=>:water_elemental_4,
407
+ :monster_key=>:water_elemental,
408
+ :amount=>4,
409
+ :xp_value=>14400},
410
+ {:id=>:water_elemental_5,
411
+ :monster_key=>:water_elemental,
412
+ :amount=>5,
413
+ :xp_value=>18000},
414
+ {:id=>:water_elemental_6,
415
+ :monster_key=>:water_elemental,
416
+ :amount=>6,
417
+ :xp_value=>21600},
418
+ {:id=>:water_weird_1, :monster_key=>:water_weird, :amount=>1, :xp_value=>700},
419
+ {:id=>:water_weird_2,
420
+ :monster_key=>:water_weird,
421
+ :amount=>2,
422
+ :xp_value=>2100},
423
+ {:id=>:water_weird_3,
424
+ :monster_key=>:water_weird,
425
+ :amount=>3,
426
+ :xp_value=>4200},
427
+ {:id=>:water_weird_4,
428
+ :monster_key=>:water_weird,
429
+ :amount=>4,
430
+ :xp_value=>5600},
431
+ {:id=>:water_weird_5,
432
+ :monster_key=>:water_weird,
433
+ :amount=>5,
434
+ :xp_value=>7000},
435
+ {:id=>:water_weird_6,
436
+ :monster_key=>:water_weird,
437
+ :amount=>6,
438
+ :xp_value=>8400},
439
+ {:id=>:xorn_1, :monster_key=>:xorn, :amount=>1, :xp_value=>1800},
440
+ {:id=>:xorn_2, :monster_key=>:xorn, :amount=>2, :xp_value=>5400},
441
+ {:id=>:xorn_3, :monster_key=>:xorn, :amount=>3, :xp_value=>10800},
442
+ {:id=>:xorn_4, :monster_key=>:xorn, :amount=>4, :xp_value=>14400},
443
+ {:id=>:xorn_5, :monster_key=>:xorn, :amount=>5, :xp_value=>18000},
444
+ {:id=>:xorn_6, :monster_key=>:xorn, :amount=>6, :xp_value=>21600}]
445
+
446
+ BY_XP_ENCOUNTERS =
447
+ {50=>
448
+ [:zombie_1,
449
+ :skeleton_1,
450
+ :goblin_1,
451
+ :winged_kobold_1,
452
+ :mud_mephit_1,
453
+ :smoke_mephit_1,
454
+ :steam_mephit_1],
455
+ 150=>
456
+ [:zombie_2,
457
+ :skeleton_2,
458
+ :goblin_2,
459
+ :kobold_3,
460
+ :winged_kobold_2,
461
+ :mud_mephit_2,
462
+ :smoke_mephit_2,
463
+ :steam_mephit_2],
464
+ 300=>
465
+ [:zombie_3,
466
+ :skeleton_3,
467
+ :shadow_2,
468
+ :goblin_3,
469
+ :hobgoblin_2,
470
+ :orc_2,
471
+ :kobold_6,
472
+ :winged_kobold_3,
473
+ :gnoll_2,
474
+ :dust_mephit_2,
475
+ :ice_mephit_2,
476
+ :magma_mephit_2,
477
+ :magmin_2,
478
+ :mud_mephit_3,
479
+ :smoke_mephit_3,
480
+ :steam_mephit_3],
481
+ 400=>
482
+ [:zombie_4,
483
+ :skeleton_4,
484
+ :goblin_4,
485
+ :winged_kobold_4,
486
+ :mud_mephit_4,
487
+ :smoke_mephit_4,
488
+ :steam_mephit_4],
489
+ 500=>
490
+ [:zombie_5,
491
+ :skeleton_5,
492
+ :goblin_5,
493
+ :winged_kobold_5,
494
+ :mud_mephit_5,
495
+ :smoke_mephit_5,
496
+ :steam_mephit_5],
497
+ 600=>
498
+ [:zombie_6,
499
+ :skeleton_6,
500
+ :ghoul_2,
501
+ :shadow_3,
502
+ :specter_2,
503
+ :goblin_6,
504
+ :hobgoblin_3,
505
+ :bugbear_2,
506
+ :orc_3,
507
+ :winged_kobold_6,
508
+ :gnoll_3,
509
+ :dust_mephit_3,
510
+ :fire_snake_2,
511
+ :ice_mephit_3,
512
+ :magma_mephit_3,
513
+ :magmin_3,
514
+ :mud_mephit_6,
515
+ :smoke_mephit_6,
516
+ :steam_mephit_6],
517
+ 200=>[:ghoul_1, :specter_1, :bugbear_1, :kobold_4, :fire_snake_1],
518
+ 1200=>
519
+ [:ghoul_3,
520
+ :shadow_6,
521
+ :specter_3,
522
+ :hobgoblin_6,
523
+ :bugbear_3,
524
+ :orc_6,
525
+ :gnoll_6,
526
+ :dust_mephit_6,
527
+ :fire_snake_3,
528
+ :ice_mephit_6,
529
+ :magma_mephit_6,
530
+ :magmin_6],
531
+ 1600=>[:ghoul_4, :specter_4, :bugbear_4, :fire_snake_4],
532
+ 2000=>[:ghoul_5, :specter_5, :bugbear_5, :fire_snake_5],
533
+ 2400=>[:ghoul_6, :specter_6, :bugbear_6, :fire_snake_6],
534
+ 100=>
535
+ [:shadow_1,
536
+ :hobgoblin_1,
537
+ :orc_1,
538
+ :gnoll_1,
539
+ :dust_mephit_1,
540
+ :ice_mephit_1,
541
+ :magma_mephit_1,
542
+ :magmin_1],
543
+ 800=>
544
+ [:shadow_4,
545
+ :hobgoblin_4,
546
+ :orc_4,
547
+ :gnoll_4,
548
+ :dust_mephit_4,
549
+ :ice_mephit_4,
550
+ :magma_mephit_4,
551
+ :magmin_4],
552
+ 1000=>
553
+ [:shadow_5,
554
+ :hobgoblin_5,
555
+ :orc_5,
556
+ :gnoll_5,
557
+ :dust_mephit_5,
558
+ :ice_mephit_5,
559
+ :magma_mephit_5,
560
+ :magmin_5],
561
+ 450=>[:ghast_1, :minotaur_skeleton_1, :azer_1, :gargoyle_1],
562
+ 1350=>[:ghast_2, :minotaur_skeleton_2, :azer_2, :gargoyle_2],
563
+ 2700=>[:ghast_3, :minotaur_skeleton_3, :azer_3, :gargoyle_3],
564
+ 3600=>[:ghast_4, :minotaur_skeleton_4, :azer_4, :gargoyle_4],
565
+ 4500=>[:ghast_5, :minotaur_skeleton_5, :azer_5, :gargoyle_5],
566
+ 5400=>
567
+ [:ghast_6,
568
+ :minotaur_skeleton_6,
569
+ :vampire_spawn_2,
570
+ :air_elemental_2,
571
+ :azer_6,
572
+ :earth_elemental_2,
573
+ :fire_elemental_2,
574
+ :gargoyle_6,
575
+ :salamander_2,
576
+ :water_elemental_2,
577
+ :xorn_2],
578
+ 700=>[:mummy_1, :water_weird_1],
579
+ 2100=>[:mummy_2, :water_weird_2],
580
+ 4200=>[:mummy_3, :water_weird_3],
581
+ 13000=>[:mummy_lord_1, :vampire_spellcaster_1, :vampire_warrior_1],
582
+ 10000=>[:vampire_1],
583
+ 30000=>[:vampire_2],
584
+ 60000=>[:vampire_3],
585
+ 1800=>
586
+ [:vampire_spawn_1,
587
+ :air_elemental_1,
588
+ :earth_elemental_1,
589
+ :fire_elemental_1,
590
+ :salamander_1,
591
+ :water_elemental_1,
592
+ :xorn_1],
593
+ 10800=>
594
+ [:vampire_spawn_3,
595
+ :air_elemental_3,
596
+ :earth_elemental_3,
597
+ :fire_elemental_3,
598
+ :salamander_3,
599
+ :water_elemental_3,
600
+ :xorn_3],
601
+ 39000=>[:vampire_spellcaster_2, :vampire_warrior_2],
602
+ 78000=>[:vampire_spellcaster_3, :vampire_warrior_3],
603
+ 25=>[:kobold_1],
604
+ 75=>[:kobold_2],
605
+ 250=>[:kobold_5],
606
+ 14400=>
607
+ [:air_elemental_4,
608
+ :earth_elemental_4,
609
+ :fire_elemental_4,
610
+ :salamander_4,
611
+ :water_elemental_4,
612
+ :xorn_4],
613
+ 18000=>
614
+ [:air_elemental_5,
615
+ :earth_elemental_5,
616
+ :fire_elemental_5,
617
+ :salamander_5,
618
+ :water_elemental_5,
619
+ :xorn_5],
620
+ 21600=>
621
+ [:air_elemental_6,
622
+ :earth_elemental_6,
623
+ :fire_elemental_6,
624
+ :salamander_6,
625
+ :water_elemental_6,
626
+ :xorn_6],
627
+ 2300=>[:galeb_duhr_1, :invisible_stalker_1],
628
+ 6900=>[:galeb_duhr_2, :invisible_stalker_2],
629
+ 13800=>[:galeb_duhr_3, :invisible_stalker_3],
630
+ 18400=>[:galeb_duhr_4, :invisible_stalker_4],
631
+ 23000=>[:galeb_duhr_5, :invisible_stalker_5],
632
+ 27600=>[:galeb_duhr_6, :invisible_stalker_6],
633
+ 5600=>[:water_weird_4],
634
+ 7000=>[:water_weird_5],
635
+ 8400=>[:water_weird_6]}
636
+ end