private static void convertCostToExperience(IDrafter drafter, HashMap<String, Float> costs) {
   for (String luxin : costs.keySet()) drafter.GrantExperience(luxin, costs.get(luxin));
 }