Language:
Lua     Change language:
Pastebin: 132149
Author: Anonymous
Subject: Untitled
Created: 2010-01-28 08:44:57
Download and save
Toggle line numbers
1newEntity { 
2  name = "nandorin hunter"
3  color = colors.DARK_SEA_GREEN, 
4  desc = [[Silent and unseen are the ways of the elves, and this hunter even more so. He fears little, even within Mirkwood Forest, and you are a distraction to his hunt!]]
5  level_range = {34, 34}
6  max_life = resolvers.rngavg(5,55), 
7  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 15}
8  energy = { mod=1.6 }
9  sight = 120
10  -- sleep = 15, 
11  resists = { [DamageType.PIERCE] = 15, [DamageType.SLASH] = 10}
12  talents = resolvers.talents { [Talents.T_ARROW] = 2}
13  -- no mana, 
14  ai = "dumb_talented_simple"
15  drop_corpse = 1
16  drop_skeleton = 1
17  invisible = 1
18  mortal = 1
19  swim = 1
20  faction = "FACTION_ELF"
21} 
22newEntity { 
23  name = "nandorin war party"
24  color = colors.TAN, 
25  desc = [[Here come a party of Wood Elves dressed from war. They are the fiercest forest fighters upon Middle Earth and you would be wise not to seek quarrel with them!]]
26  level_range = {38, 38}
27  max_life = resolvers.rngavg(6,66), 
28  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 30}
29  energy = { mod=2.0 }
30  sight = 55
31  -- sleep = 30, 
32  resists = { [DamageType.CRUSH] = 15, [DamageType.PIERCE] = 15}
33  -- no talents, 
34  -- no mana, 
35  ai = "dumb_talented_simple"
36  drop_corpse = 1
37  drop_skeleton = 1
38  mortal = 1
39  faction = "FACTION_ELF"
40} 
41newEntity { 
42  name = "nandorin hero"
43  color = colors.CRIMSON, 
44  desc = [[Wielding an enchanted sword and dagger, this formidable warrior is among the elite of the elven army.]]
45  level_range = {45, 45}
46  max_life = resolvers.rngavg(25,300), 
47  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 18}
48  energy = { mod=2.2 }
49  sight = 15
50  -- sleep = 30, 
51  resists = { [DamageType.CRUSH] = 18, [DamageType.DARK_FIRE] = -20, [DamageType.FEAR] = 100, [DamageType.FIRE] = 100, [DamageType.PIERCE] = 13, [DamageType.POIS] = 50, [DamageType.SLASH] = 18, [DamageType.VALINOREAN_FIRE] = 50}
52  talents = resolvers.talents { [Talents.T_ESSENCE_OF_SPEED] = 0, [Talents.T_HEALING] = 1, [Talents.T_SUMMON_ANIMAL] = 0}
53  max_mana = 140
54  ai = "dumb_talented_simple"
55  drop_corpse = 1
56  drop_skeleton = 1
57  lite = 1
58  mortal = 1
59  mana_regen = 3.0
60  faction = "FACTION_ELF"
61} 
62newEntity { 
63  name = "nandorin warrior"
64  color = colors.OLD_LACE, 
65  desc = [[These veteran warriors make up the bulk of the great army of Mirkwood. They are fearsome foes.]]
66  level_range = {30, 30}
67  max_life = resolvers.rngavg(8,80), 
68  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 18}
69  energy = { mod=2.5 }
70  sight = 25
71  -- sleep = 35, 
72  resists = { [DamageType.CRUSH] = 5, [DamageType.FEAR] = 100, [DamageType.PIERCE] = 15, [DamageType.SLASH] = 10}
73  -- no talents, 
74  -- no mana, 
75  ai = "dumb_talented_simple"
76  drop_corpse = 1
77  drop_skeleton = 1
78  mortal = 1
79  faction = "FACTION_ELF"
80} 
81newEntity { 
82  name = "giant black squirrel"
83  color = colors.DARK_SLATE_GRAY, 
84  desc = [[A very large, very black squirrel.]]
85  level_range = {30, 30}
86  max_life = resolvers.rngavg(5,50), 
87  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 5}
88  energy = { mod=1.8 }
89  sight = 15
90  -- sleep = 5, 
91  resists = { [DamageType.CRUSH] = 10, [DamageType.FEAR] = 100, [DamageType.PIERCE] = 5}
92  -- no talents, 
93  -- no mana, 
94  ai = "dumb_talented_simple"
95  drop_corpse = 1
96  drop_skeleton = 1
97  mortal = 1
98  faction = "FACTION_ANIMAL"
99} 
100newEntity { 
101  name = "white stag"
102  color = colors.WHITE, 
103  desc = [[A beautiful white stag, with over fourteen points on its magnificent antlers.]]
104  level_range = {32, 32}
105  max_life = resolvers.rngavg(20,200), 
106  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 6}
107  energy = { mod=2.4 }
108  sight = 15
109  -- sleep = 30, 
110  resists = { [DamageType.CRUSH] = 10, [DamageType.FEAR] = 100, [DamageType.PIERCE] = 10}
111  talents = resolvers.talents { [Talents.T_TELEPORT_TO] = 2}
112  -- no mana, 
113  ai = "dumb_talented_simple"
114  drop_corpse = 1
115  mortal = 1
116  faction = "FACTION_ANIMAL"
117} 
118newEntity { 
119  name = "great bear"
120  color = colors.TAN, 
121  desc = [[These enormous shaggy bears make their homes in the shadowy retreats of Mirkwood forest, and are rarley seen alone.]]
122  level_range = {38, 38}
123  max_life = resolvers.rngavg(30,360), 
124  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 30}
125  energy = { mod=2.3 }
126  sight = 25
127  -- sleep = 20, 
128  resists = { [DamageType.FEAR] = 100}
129  -- no talents, 
130  -- no mana, 
131  ai = "dumb_talented_simple"
132  drop_corpse = 1
133  mortal = 1
134  faction = "FACTION_ANIMAL"
135} 
136newEntity { 
137  name = "shaggy great bear"
138  color = colors.DARK_KHAKI, 
139  desc = [[Of the great bears of Mirkwood, this one seems to be somewhat fiercer than the others. These bears have distinctly longer fur than their more common cousins.]]
140  level_range = {45, 45}
141  max_life = resolvers.rngavg(30,480), 
142  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 35}
143  energy = { mod=2.8 }
144  sight = 30
145  -- sleep = 30, 
146  resists = { [DamageType.FEAR] = 100}
147  -- no talents, 
148  -- no mana, 
149  ai = "dumb_talented_simple"
150  drop_corpse = 1
151  mortal = 1
152  faction = "FACTION_ANIMAL"
153} 
154newEntity { 
155  name = "mirkwood warg"
156  color = colors.CHOCOLATE, 
157  desc = [[Once thought to be extinct, these enormous wolves are again ravaging the forest.]]
158  level_range = {30, 30}
159  max_life = resolvers.rngavg(5,50), 
160  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 15}
161  energy = { mod=2.2 }
162  sight = 15
163  -- sleep = 30, 
164  resists = { [DamageType.DARK_FIRE] = 50, [DamageType.FEAR] = 100, [DamageType.FIRE] = -5}
165  talents = resolvers.talents { [Talents.T_HOWL] = 2}
166  -- no mana, 
167  ai = "dumb_talented_simple"
168  drop_corpse = 1
169  evil = 1
170  mortal = 1
171  faction = "FACTION_SAURON"
172} 
173newEntity { 
174  name = "mirkwood spirit"
175  color = colors.OLIVE_DRAB, 
176  desc = [[This spirit died of exposure long ago in Mirkwood, insane and alone it clings to you for comfort, at the same time trying to make you as dead as she!]]
177  level_range = {35, 35}
178  max_life = resolvers.rngavg(8,48), 
179  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 15}
180  energy = { mod=1.0 }
181  sight = 15
182  -- sleep = 30, 
183  resists = { [DamageType.CRUSH] = 90, [DamageType.FEAR] = 100, [DamageType.FIRE] = 5, [DamageType.PIERCE] = 90, [DamageType.SLASH] = 90}
184  -- no talents, 
185  -- no mana, 
186  ai = "dumb_talented_simple"
187  drop_corpse = 1
188  female = 1
189  invisible = 1
190  mortal = 1
191  fly = 3
192  faction = "FACTION_UNDEAD"
193} 
194newEntity { 
195  name = "skeletal elf"
196  color = colors.GOLD, 
197  desc = [[This wood elf met a grisly end many years ago, and now only its bones are left. These bones have absorbed the evil energy that abounds in Mirkwood, and have arisen, picked up the elf's rusty sword and are out in search of the living to revenge itself on.]]
198  level_range = {39, 39}
199  max_life = resolvers.rngavg(8,112), 
200  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 20}
201  energy = { mod=1.1 }
202  sight = 15
203  -- sleep = 30, 
204  resists = { [DamageType.CRUSH] = -20, [DamageType.FEAR] = 100, [DamageType.PIERCE] = 65}
205  -- no talents, 
206  -- no mana, 
207  ai = "dumb_talented_simple"
208  drop_corpse = 1
209  faction = "FACTION_UNDEAD"
210} 
211newEntity { 
212  name = "skeletal orc champion"
213  color = colors.TEAL, 
214  desc = [[The remains of an ancient orcish champion risen from its mossy grave at the behest of the Necromancer. The creature snarls at you , canines especially prominent now it has no lips to curl.]]
215  level_range = {40, 40}
216  max_life = resolvers.rngavg(20,120), 
217  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 13}
218  energy = { mod=1.0 }
219  sight = 15
220  -- sleep = 30, 
221  resists = { [DamageType.CRUSH] = -20, [DamageType.FEAR] = 100, [DamageType.PIERCE] = 68}
222  -- no talents, 
223  -- no mana, 
224  ai = "dumb_talented_simple"
225  drop_corpse = 1
226  faction = "FACTION_UNDEAD"
227} 
228newEntity { 
229  name = "web sprayer"
230  color = colors.STEEL_BLUE, 
231  desc = [[With its enormous blue spotted abdomen, this speciment is quite easy to spot in any Mathom-house. Getting it dead and in there will, however, be quite difficult.]]
232  level_range = {30, 30}
233  max_life = resolvers.rngavg(6,72), 
234  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 30}
235  energy = { mod=1.5 }
236  sight = 15
237  -- sleep = 30, 
238  resists = { [DamageType.CRUSH] = 5, [DamageType.FEAR] = 100, [DamageType.FIRE] = -5, [DamageType.LITE] = -10, [DamageType.SLASH] = 6}
239  talents = resolvers.talents { [Talents.T_WEB] = 2}
240  -- no mana, 
241  ai = "dumb_talented_simple"
242  drop_corpse = 1
243  mortal = 1
244  -- no faction, 
245} 
246newEntity { 
247  name = "mirkwood spider"
248  color = colors.DARK, 
249  desc = [[The trees around you are alive with chittering as the reflective eyes of the true Lords of Mirkwood stare out at you. These spiders are intelligent, and what's worse, co-operate to feed on their prey.]]
250  level_range = {30, 30}
251  max_life = resolvers.rngavg(9,81), 
252  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 30}
253  energy = { mod=1.5 }
254  sight = 60
255  -- sleep = 30, 
256  resists = { [DamageType.POIS] = 100}
257  talents = resolvers.talents { [Talents.T_WEB] = 1}
258  -- no mana, 
259  ai = "dumb_talented_simple"
260  drop_corpse = 1
261  mortal = 1
262  -- no faction, 
263} 
264newEntity { 
265  name = "black weaver"
266  color = colors.ANTIQUE_WHITE, 
267  desc = [[Its gray and inky black carapace makes it invisible for all practical purposes. This spider does not spin webs, but waits carefully for its prey in the shadows.]]
268  level_range = {33, 33}
269  max_life = resolvers.rngavg(8,96), 
270  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 20}
271  energy = { mod=1.5 }
272  sight = 15
273  -- sleep = 30, 
274  resists = { [DamageType.CRUSH] = 5, [DamageType.FEAR] = 100, [DamageType.FIRE] = -5, [DamageType.LITE] = -10, [DamageType.SLASH] = 5}
275  -- no talents, 
276  -- no mana, 
277  ai = "dumb_talented_simple"
278  drop_corpse = 1
279  invisible = 1
280  mortal = 1
281  -- no faction, 
282} 
283newEntity { 
284  name = "hawk spider"
285  color = colors.UMBER, 
286  desc = [[This bizarre breed of spider has learned to fly by spinning a web between six of its legs and moving them rapidly.]]
287  level_range = {34, 34}
288  max_life = resolvers.rngavg(8,96), 
289  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 10}
290  energy = { mod=1.5 }
291  sight = 10
292  -- sleep = 30, 
293  resists = { [DamageType.CRUSH] = 5, [DamageType.FEAR] = 100, [DamageType.FIRE] = -5, [DamageType.LITE] = -10, [DamageType.SLASH] = 6}
294  talents = resolvers.talents { [Talents.T_WEB] = 0}
295  -- no mana, 
296  ai = "dumb_talented_simple"
297  drop_corpse = 1
298  mortal = 1
299  fly = 3
300  -- no faction, 
301} 
302newEntity { 
303  name = "moth spider"
304  color = colors.GOLD, 
305  desc = [[So named for its attraction to fire and not for any ability of, flight, this spider hungrily eyes both you and your light source!]]
306  level_range = {35, 35}
307  max_life = resolvers.rngavg(8,96), 
308  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 10}
309  energy = { mod=2.0 }
310  sight = 10
311  -- sleep = 30, 
312  resists = { [DamageType.CRUSH] = 5, [DamageType.FEAR] = 100, [DamageType.FIRE] = 66, [DamageType.LITE] = -10, [DamageType.SLASH] = 6}
313  talents = resolvers.talents { [Talents.T_WEB] = 0}
314  -- no mana, 
315  ai = "dumb_talented_simple"
316  drop_corpse = 1
317  mortal = 1
318  -- no faction, 
319} 
320newEntity { 
321  name = "spitting spider"
322  color = colors.DARK_GREEN, 
323  desc = [[This spider has a modified venom gland that allows it to spit a combination of venom and webbing which envelopes and paralyzes its prey (you).]]
324  level_range = {38, 38}
325  max_life = resolvers.rngavg(8,96), 
326  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 15}
327  energy = { mod=2.5 }
328  sight = 15
329  -- sleep = 30, 
330  resists = { [DamageType.CRUSH] = 5, [DamageType.FEAR] = 100, [DamageType.FIRE] = -5, [DamageType.LITE] = -10, [DamageType.SLASH] = 6}
331  talents = resolvers.talents { [Talents.T_BREATHE_POISON] = 2, [Talents.T_WEB] = 0}
332  -- no mana, 
333  ai = "dumb_talented_simple"
334  drop_corpse = 1
335  mortal = 1
336  -- no faction, 
337} 
338newEntity { 
339  name = "nameless weaver"
340  color = colors.RED, 
341  desc = [[One of the oldest and most evil of all  of the spiders in Mirkwood.  Its sight strikes  fear in the hearts of all who behold it.]]
342  level_range = {45, 45}
343  max_life = resolvers.rngavg(18,270), 
344  combat = {dam = 0, atk = 0, def = 0, apr = 0, armor = 20}
345  energy = { mod=3.0 }
346  sight = 15
347  -- sleep = 30, 
348  resists = { [DamageType.COLD] = 100, [DamageType.CRUSH] = 18, [DamageType.DARK_FIRE] = 50, [DamageType.FEAR] = 100, [DamageType.FIRE] = 100, [DamageType.LITE] = -10, [DamageType.PIERCE] = 16, [DamageType.SLASH] = 18, [DamageType.VALINOREAN_FIRE] = -20}
349  talents = resolvers.talents { [Talents.T_BREATHE_POISON] = 3, [Talents.T_SCARE] = 3, [Talents.T_WEB] = 4}
350  max_mana = 40
351  ai = "dumb_talented_simple"
352  drop_corpse = 1
353  mortal = 1
354  unique = 1
355  mana_regen = 5.0
356  -- no faction, 
357} 
358 
Download and save
Toggle line numbers
Thread:
[132149] Untitled by Anonymous at 2010-01-28 08:44:57
Tip: Click the line numbers to toggle highliting on that line.

Paste followup:

Language:
Author:
Subject:


    Tabstop:     bigger biggest
Note: You can prefix a line with "@@@" to highlight it.