1------------------------------------------------------------------------------[[
2-- Filename: battle_events.lua
3--
4-- Description: This file contains the definitions of all scripted events in
5-- Hero of Allacrost battles, generally to be used for boss battles.
6------------------------------------------------------------------------------]]
7
8-- All item definitions are stored in this table
9if (battle_events == nil) then
10	battle_events = {}
11end
12
13battle_events[1] = {
14	name = "Duel with Kyle",
15	--TODO: Add dialogue!
16
17	Before = function(bat_mode)
18	end,
19
20	During = function(bat_mode)
21	end,
22
23	After = function(bat_mode)
24		bat_mode:AddDialogue("Kyle", "Do you really think it's going to matter if I take a little treasure? I just want enough to start a new life, away from this servitude. Can't you understand that?");
25		bat_mode:AddDialogue("Claudius", "You’ve tarnished your honor and disgraced the Harrvahan knighthood!");
26		bat_mode:AddDialogue("Kyle", "To hell with the knighthood!");
27		bat_mode:ShowDialogue();
28	end
29}
30