diff --git a/game/overworld-town/loc-cafe/main.twee b/game/overworld-town/loc-cafe/main.twee
index 61380639c74153bb246135fd6514767b3a8abeb6..7782da26723168fff41b872b6f196dc0cb214780 100644
--- a/game/overworld-town/loc-cafe/main.twee
+++ b/game/overworld-town/loc-cafe/main.twee
@@ -156,6 +156,22 @@ You are in the Ocean Breeze Cafe.
 		<</link>><<lstress>><<ltiredness>>
 		<br>
 	<</if>>
+	<<if $money gte 700>>
+		<<if $images is 1>><img id="icon" src="img/misc/icon/beer_bottle.png"><</if>>
+		<<if $season is "winter">>
+			<<link [[Buy winter ale (0:10 £7)|Cafe Winter Ale]]>><<set $cafeeaten to 1>><<set $money -= 700>><<stress -6>><<alcohol 100>><<pass 10>><</link>><<lstress>><<galcohol>>
+			<br>
+		<<elseif $season is "spring">>
+			<<link [[Buy fruity ale (0:10 £7)|Cafe Spring Ale]]>><<set $cafeeaten to 1>><<set $money -= 700>><<stress -6>><<alcohol 60>><<pass 10>><</link>><<lstress>><<galcohol>>
+			<br>
+		<<elseif $season is "summer">>
+			<<link [[Buy shandy (0:10 £7)|Cafe Summer Ale]]>><<set $cafeeaten to 1>><<set $money -= 700>><<stress -6>><<alcohol 40>><<pass 10>><</link>><<lstress>><<galcohol>>
+			<br>
+		<<else>>
+			<<link [[Buy autumn ale (0:10 £7)|Cafe Autumn Ale]]>><<set $cafeeaten to 1>><<set $money -= 700>><<stress -6>><<alcohol 80>><<pass 10>><</link>><<lstress>><<galcohol>>
+			<br>
+		<</if>>
+	<</if>>
 	<<if $money gte 300>>
 		<<if ndef $milkshake>><<set $milkshake to 0>><</if>>
 		<<if $milkshake lt 2>>
@@ -1929,6 +1945,98 @@ You ignore the <<person>> and finish licking the plate clean. You lean back, sat
 <<link [[Next|Ocean Breeze]]>><</link>>
 <br>
 
+:: Cafe Winter Ale
+<<set $outside to 0>><<set $location to "cafe">><<effects>>
+
+<<if $weather is "rain">>
+	You take a seat and order a winter ale.
+	It arrives promptly; it's served in a beautifully curved glass. It's sweet, rather than bitter. It's delicious.
+	You stare out the window at the rain-filled street, and feel warm inside.
+	<br><br>
+<<elseif $weather is "snow">>
+	You take a seat and order a winter ale.
+	It arrives promptly; it's served in a beautifully curved glass. It's sweet, rather than bitter. It's delicious.
+	You stare out the window at the snowy street, and feel the alcohol warming you inside.
+	<br><br>
+<<else>>
+	You take a seat and order a winter ale.
+	It arrives promptly; it's served in a beautifully curved glass. It's sweet, rather than bitter. It's delicious.
+	You stare out the window, and feel the alcohol warming you inside.
+	<br><br>
+<</if>>
+
+<<link [[Next|Ocean Breeze]]>><</link>>
+<br>
+
+:: Cafe Spring Ale
+<<set $outside to 0>><<set $location to "cafe">><<effects>>
+
+<<if $weather is "rain">>
+	You take a seat and, considering the season, order a fruity ale.
+	It arrives quickly and served in a regular beer glass. It's very sweet and light. It's delicious.
+	You stare out the window at the rain-filled street, and feel comfy.
+	<br><br>
+<<elseif $weather is "snow">>
+	You take a seat and, considering the season, order a fruity ale.
+	It arrives quickly and served in a regular beer glass. It's very sweet and light. It's delicious.
+	You stare out the window at the snowy street, and feel comfy.
+	<br><br>
+<<else>>
+	You take a seat and, considering the season, order a fruity ale.
+	It arrives quickly and served in a regular beer glass. It's very sweet and light. It's delicious.
+	You stare out over the sea, and enjoy the spring breeze.
+	<br><br>
+<</if>>
+
+<<link [[Next|Ocean Breeze]]>><</link>>
+<br>
+
+:: Cafe Summer Ale
+<<set $outside to 0>><<set $location to "cafe">><<effects>>
+
+<<if $weather is "rain">>
+	You take a seat and, considering the season, order a shandy.
+	It arrives quickly. It's served in a can with a beer glass; you're clearly meant to pour it yourself. It's lemon flavoured and very refreshing!
+	You stare out the window at the rain-filled street, and feel comfy.
+	<br><br>
+<<elseif $weather is "snow">>
+	You take a seat and, considering the season, order a shandy.
+	It arrives quickly. It's served in a can with a beer glass; you're clearly meant to pour it yourself. It's lemon flavoured and very refreshing!
+	You stare out the window at the snowy street, and feel comfy.
+	<br><br>
+<<else>>
+	You take a seat and, considering the season, order a shandy.
+	It arrives quickly. It's served in a can with a beer glass; you're clearly meant to pour it yourself. It's lemon flavoured and very refreshing!
+	You stare out over the sea, and enjoy the summer breeze.
+	<br><br>
+<</if>>
+
+<<link [[Next|Ocean Breeze]]>><</link>>
+<br>
+
+:: Cafe Autumn Ale
+<<set $outside to 0>><<set $location to "cafe">><<effects>>
+
+<<if $weather is "rain">>
+	You take a seat and order an autumn ale.
+	It arrives quickly. It's sweet and has a hint of caramel. It's delicious.
+	You stare out the window at the rain-filled street, and feel comfy.
+	<br><br>
+<<elseif $weather is "snow">>
+	You take a seat and order an autumn ale.
+	It arrives quickly. It's sweet and has a hint of caramel. It's delicious.
+	You stare out the window at the snowy street, and feel comfy.
+	<br><br>
+<<else>>
+	You take a seat and order an autumn ale.
+	It arrives quickly. It's sweet and has a hint of caramel. It's delicious.
+	You stare out over the sea, and enjoy the autumn breeze.
+	<br><br>
+<</if>>
+
+<<link [[Next|Ocean Breeze]]>><</link>>
+<br>
+
 :: Ocean Breeze Tourist
 <<set $outside to 0>><<set $location to "cafe">><<effects>>
 <<set $tip to 0>> /*Ensure tip is 0 so that nothing can be carried over from anything else*/
diff --git a/img/misc/icon/beer_bottle.png b/img/misc/icon/beer_bottle.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6cb620deb63974bec8323b2e92cf3b4f893e5ef
Binary files /dev/null and b/img/misc/icon/beer_bottle.png differ