public TARDISRecipesUpdater(TARDIS plugin) {
   this.plugin = plugin;
   this.recipes_config = plugin.getRecipesConfig();
   this.flavours.put("Licorice", 0);
   this.flavours.put("Raspberry", 1);
   this.flavours.put("Apple", 2);
   this.flavours.put("Cappuccino", 3);
   this.flavours.put("Blueberry", 4);
   this.flavours.put("Grape", 5);
   this.flavours.put("Island Punch", 6);
   this.flavours.put("Vodka", 7);
   this.flavours.put("Earl Grey", 8);
   this.flavours.put("Strawberry", 9);
   this.flavours.put("Lime", 10);
   this.flavours.put("Lemon", 11);
   this.flavours.put("Bubblegum", 12);
   this.flavours.put("Watermelon", 13);
   this.flavours.put("Orange", 14);
   this.flavours.put("Vanilla", 15);
   this.colours.put("White", 0);
   this.colours.put("Orange", 1);
   this.colours.put("Magenta", 2);
   this.colours.put("Light Blue", 3);
   this.colours.put("Yellow", 4);
   this.colours.put("Lime", 5);
   this.colours.put("Pink", 6);
   this.colours.put("Grey", 7);
   this.colours.put("Light Grey", 8);
   this.colours.put("Cyan", 9);
   this.colours.put("Purple", 10);
   this.colours.put("Blue", 11);
   this.colours.put("Brown", 12);
   this.colours.put("Green", 13);
   this.colours.put("Red", 14);
   this.colours.put("Black", 15);
   this.damage.put("shaped.TARDIS ARS Circuit.lore", 20);
   this.damage.put("shaped.TARDIS Chameleon Circuit.lore", 25);
   this.damage.put("shaped.TARDIS Input Circuit.lore", 50);
   this.damage.put("shaped.TARDIS Materialisation Circuit.lore", 50);
   this.damage.put("shaped.TARDIS Memory Circuit.lore", 20);
   this.damage.put("shaped.TARDIS Randomiser Circuit.lore", 50);
   this.damage.put("shaped.TARDIS Scanner Circuit.lore", 20);
   this.damage.put("shaped.TARDIS Temporal Circuit.lore", 20);
 }