toKill.put("minotaur",new Pair<Integer, Integer>(0,1));
toKill.put("blue dragon",new Pair<Integer, Integer>(0,1));
toKill.put("stone golem",new Pair<Integer, Integer>(0,1));
final List<ChatAction> actions = new LinkedList<ChatAction>();
actions.add(new SetQuestAction(QUEST_SLOT, "start"));
actions.add(new StartRecordingKillsAction(QUEST_SLOT, 1, toKill));
npc.add(ConversationStates.QUEST_OFFERED,
ConversationPhrases.YES_MESSAGES,
null,
ConversationStates.ATTENDING,
"Fantastic! We can't wait for your return. Please kill one of each creature you can find in the underground of Athor island. I bet you'll get them all!",
new MultipleActions(actions));
npc.add(ConversationStates.QUEST_OFFERED,
ConversationPhrases.NO_MESSAGES,
null,
ConversationStates.ATTENDING,
"Oh never mind. We'll go on sunbathing then. Not that we aren't tired of it...",
new SetQuestAction(QUEST_SLOT, "rejected"));
}