#JSGF V1.0;
grammar restaurant_ordering;

public <restaurant> = ([tobi] [bring me] [one | a ] <objects> [please]);

<objects> = (<drinks> | <combo>);
<combo> = (<food> (and | with) <food>);

<drinks> = ((coconut milk) | (beer) | (coke) | (tea));
<food> = ((apple) | (paprika) | (pumpernickel) | (chips) | (pretzels) | (pringles) | (biscuits) | (choco syrup) | (baby sweets) | (egg));