addReply(Arrays.asList("oil", "can of oil"), "Oh, fishermen supply us with that.");
addHelp("If you bring me #wood and #'iron ore', I can #cast the iron for you. Then you could sell it to the dwarves, to make yourself a little money.");
addJob("I am a blacksmith. I #cast iron, and #trade tools.");
addGoodbye();
new SellerAdder().addSeller(this, new SellerBehaviour(SingletonRepository.getShopList().get("selltools")));
// Xoderos casts iron if you bring him wood and iron ore.
final Map<String, Integer> requiredResources = new TreeMap<String, Integer>();
requiredResources.put("wood", 1);
requiredResources.put("iron ore", 1);