npc.add(ConversationStates.IDLE, ConversationPhrases.GREETING_MESSAGES,
new GreetingMatchesNameCondition(npc.getName()),
ConversationStates.ATTENDING,
"Hello. I can #heal you in these #troubled #times.", null);
npc.addReply(Arrays.asList("troubled", "times"),
"I sense many changes approaching. I believe that a #Cataclysm is coming.");
npc.addReply("Cataclysm",
"Yes, some upheaval, maybe a rebirth of old spirits. The lands could change and new ways begin.");
}