Skip to content
Snippets Groups Projects
Commit cbd8e7c8 authored by DarkGod's avatar DarkGod
Browse files

plop

parent 325f5f41
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,10 @@ local change_tactics = function(npc, player)
game.party:giveOrders(npc)
end
local change_control = function(npc, player)
game.party:select(npc)
end
local change_name = function(npc, player)
local d = require("engine.dialogs.GetText").new("Change your golem's name", "Name", 2, 25, function(name)
if name then
......@@ -57,6 +61,7 @@ local ans = {
{"I want to change your equipment.", action=change_inven},
{"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},
{"Nothing, let's go."},
}
......
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