Skip to content
Snippets Groups Projects

Art gem polish, as requested

Merged Simon André Curtis requested to merge housepet/t-engine4:gems into master
6 files
+ 144
4
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -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"
Loading