Thank you for your help. Stupidly I have forgotten to register the event bus for the vanilla items. Now that registered the event bus for the vanilla items it works and the stack size is overwritten. I did however, as you mentioned, lose all the properties the egg had, like the sound it made when throwing it and the particle effect when hitting the ground.
I did find a solution for that though. I changed this
public static final RegistryObject<Item> EGG = VANILLA_ITEMS.register("egg",
() -> new Item((new Item.Properties()).maxStackSize(64)));
into this
public static final RegistryObject<EggItem> EGG = VANILLA_ITEMS.register("egg",
() -> new EggItem((new Item.Properties()).maxStackSize(64).group(ItemGroup.MATERIALS)));
and now the egg regained all its properties when throwing and the particle effects etc, but the stacksize is increased to 64. Just as I was hoping to achieve.
I haven't done extensive testing, only crafting a cake and throwing the eggs, but it seems that this did not break the game or any properties with the EggItem.
Thank you again for your help.