Skip to content
Snippets Groups Projects
Commit 09297517 authored by Alex Ksandra's avatar Alex Ksandra
Browse files

Goedalath Rock, now evil less subtly.

parent 54e92930
No related branches found
No related tags found
No related merge requests found
...@@ -170,6 +170,8 @@ newEntity{ base = "BASE_GEM", ...@@ -170,6 +170,8 @@ newEntity{ base = "BASE_GEM",
cost = 300, cost = 300,
material_level = 5, material_level = 5,
identified = false, identified = false,
auto_pickup = false, -- why would you do such a thing.
encumber = 0.1, -- at least they'll see it on transmo screen.
carrier = { carrier = {
on_melee_hit = {[DamageType.HEAL] = 34}, on_melee_hit = {[DamageType.HEAL] = 34},
life_regen = -2, life_regen = -2,
...@@ -188,6 +190,12 @@ newEntity{ base = "BASE_GEM", ...@@ -188,6 +190,12 @@ newEntity{ base = "BASE_GEM",
on_melee_hit = {[DamageType.DARKNESS] = 34}, on_melee_hit = {[DamageType.DARKNESS] = 34},
healing_factor = 0.5, healing_factor = 0.5,
}, },
on_pickup = function(self, who)
if who == game.player then
who:runStop("evil touch")
who:restStop("evil touch")
end
end,
color_attributes = {damage_type = 'SHADOWFLAME',},} color_attributes = {damage_type = 'SHADOWFLAME',},}
newEntity{ base = "BASE_CLOAK", newEntity{ base = "BASE_CLOAK",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment