Skip to content
Snippets Groups Projects
Commit c0989093 authored by HousePet's avatar HousePet
Browse files

Modified golem chat if you insert the Voice of Telos. Could be extended into a bigger thing.

parent 636b33a4
No related branches found
No related tags found
1 merge request!410Art gem polish, as requested
......@@ -62,14 +62,37 @@ local ans = {
{"I want to change your talents.", action=change_talents},
{"I want to change your tactics.", action=change_tactics},
{"I want to take direct control.", action=change_control},
{"I want to change your name.", action=change_name},
{"I want to change your name.", cond = function() return golem.sentient_telos == 1 end, jump="name"},
{"I want to change your name.", cond = function() return not golem.sentient_telos end, action=change_name},
{"How is it that you speak?", cond = function() return golem.sentient_telos == 1 end, jump="how_speak"},
{"Nothing, let's go."},
}
newChat{ id="how_speak",
text = [[What's the good of immortality if you can't even speak? No archmage worth his salt is going to concoct some immoral life-after-death scheme without including some sort of capacity for making his opinions known. And, by the way, your energy manipulation techniques are on the same level as those of my average pair of shoes. Though I guess you are making up for it with your golem crafting skills.]],
answers = ans
}
newChat{ id="name",
text = [[Change my name? I'm quite happy being 'Telos' thankyou. Though I wouldn't mind being 'Telos the Great and Powerful'...]],
answers = ans
}
if golem.sentient_telos == 1 then
newChat{ id="welcome",
text = [[I'm a golem. How droll!
Oh, did you want something?]],
answers = ans
}
else
newChat{ id="welcome",
text = [[#LIGHT_GREEN#*The golem talks in a monotonous voice*#WHITE#
Yes master.]],
answers = ans
}
end
return "welcome"
......@@ -721,6 +721,7 @@ newEntity{ base = "BASE_GEM", define_as = "GEM_TELOS",
confusion_immune = 0.3,
fear_immune = 0.3,
resists={[DamageType.MIND] = 30,},
sentient_telos = 1,
},
imbue_powers = {
inc_stats = { [Stats.STAT_STR] = 5, [Stats.STAT_DEX] = 5, [Stats.STAT_MAG] = 5, [Stats.STAT_WIL] = 5, [Stats.STAT_CUN] = 5, [Stats.STAT_CON] = 5, },
......
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