What I did in my mod was put
this.setPotionEffect(Potion.confusion.id, 100, 0, 1.0F); //potion effect, duration, effect level, probability of effect (1.0F = always, 0.0F = never)
in the same area you put
super(id, hunger, saturation, wolfFood);
this.setCreativeTab(CreativeTabs.tabFood);
so I advise trying
public ItemTutorial(int id, int hunger, float saturation, boolean wolfFood) {
super(id, hunger, saturation, wolfFood);
this.setCreativeTab(CreativeTabs.tabFood);
this.setPotionEffect(Potion.fireResistance.id, 100, 0, 1.0F); //potion effect, duration, effect level, probability of effect (1.0F = always, 0.0F = never)
}