diff --git a/src/data/cocktail-data.ts b/src/data/cocktail-data.ts
index 20e31e0f..dbc6431c 100644
--- a/src/data/cocktail-data.ts
+++ b/src/data/cocktail-data.ts
@@ -2360,7 +2360,7 @@ const cocktails: StaticCocktail[] = [
         category: DrinkCategory.Cocktail,
         ingredientGroups: [
             { amount: '300', ingredientId: '8', unit: Unit.ML },
-            { amount: '3', ingredientId: '20', unit: Unit.CUP},
+            { amount: '3', ingredientId: '20', unit: Unit.CUP },
             { amount: '0.5', ingredientId: '2', unit: Unit.CUP },
             { amount: '700', ingredientId: '45', unit: Unit.ML },
             { amount: '1', ingredientId: '88', unit: Unit.CUP },
@@ -2650,8 +2650,22 @@ const cocktails: StaticCocktail[] = [
             { amount: '1', ingredientId: '142', unit: Unit.DASH },
             { amount: '1', ingredientId: '141', unit: Unit.DASH },
             { amount: '1', ingredientId: '139', unit: Unit.DASH },
-            { amount: '60', ingredientId: '54', unit: Unit.ML},
-            { amount: '120', ingredientId: '91', unit: Unit.ML}
+            { amount: '60', ingredientId: '54', unit: Unit.ML },
+            { amount: '120', ingredientId: '91', unit: Unit.ML }
+        ],
+        tags: []
+    },
+    {
+        id: '193',
+        imageSrc: 'images/dry_martini.jpg',
+        isImagePortrait: false,
+        translation: 'dirty-martini',
+        category: DrinkCategory.Cocktail,
+        ingredientGroups: [
+            { amount: '175', ingredientId: '6', unit: Unit.ML },
+            { amount: '1', ingredientId: '31', unit: Unit.DASH },
+            { amount: '30', ingredientId: '172', unit: Unit.ML },
+            { amount: '', ingredientId: '32', unit: '' }
         ],
         tags: []
     }
diff --git a/src/data/ingredient-data.ts b/src/data/ingredient-data.ts
index fcf03f25..48b58fa7 100644
--- a/src/data/ingredient-data.ts
+++ b/src/data/ingredient-data.ts
@@ -242,6 +242,7 @@ const currentIngredients: StaticIngredient[] = [
     { id: '169', translation: 'akvavit', spiritType: SpiritType.None, abv: 37.5 },
     // https://en.wikipedia.org/wiki/Akvavit
     { id: '170', translation: 'country-lane', spiritType: SpiritType.None, abv: 17, replacementIds: ['108', '147', '171'] },
-    { id: '171', translation: 'amarula-cream', spiritType: SpiritType.None, abv: 17, replacementIds: ['108', '147', '170'] }
+    { id: '171', translation: 'amarula-cream', spiritType: SpiritType.None, abv: 17, replacementIds: ['108', '147', '170'] },
     // https://en.wikipedia.org/wiki/Amarula
+    { id: '172', translation: 'olive-brine', spiritType: SpiritType.None },
 ];
diff --git a/src/locales/en/cocktails.json b/src/locales/en/cocktails.json
index f9d9c01f..ece394cc 100644
--- a/src/locales/en/cocktails.json
+++ b/src/locales/en/cocktails.json
@@ -11,6 +11,7 @@
     "whiskey-sour": "Whiskey Sour",
     "pink-lady": "Pink Lady",
     "gin-sour": "Gin Sour",
+    "dirty-martini": "Dirty Martini",
     "dry-martini": "Dry Martini",
     "hot-shot": "Hot Shot",
     "frozen-margarita": "Frozen Margarita",
diff --git a/src/locales/en/ingredients.json b/src/locales/en/ingredients.json
index 997468d1..f0623643 100644
--- a/src/locales/en/ingredients.json
+++ b/src/locales/en/ingredients.json
@@ -168,5 +168,6 @@
     "water": "Water",
     "wheat-beer": "Wheat Beer",
     "white-wine": "White wine",
-    "worcestershire-sauce": "Worcestershire sauce"
+    "worcestershire-sauce": "Worcestershire sauce",
+		"olive-brine": "Olive brine"
 }
diff --git a/src/locales/en/instructions.json b/src/locales/en/instructions.json
index 7b7bb15b..d97956bc 100644
--- a/src/locales/en/instructions.json
+++ b/src/locales/en/instructions.json
@@ -67,6 +67,7 @@
     "cuba-libre": "Build all ingredients in a Collins glass filled with ice. \nGarnish with lime wedge.",
     "daiquiri": "Pour all ingredients into shaker with ice cubes. \nShake well. \nStrain in chilled cocktail glass.",
     "dark-and-stormy": "Fill highball glass (image shows a lowball glass) with ice, fill almost to the top with ginger beer, softly pour the dark rum on top to make it float. \nGarnish with lime. \nServe with straw.",
+    "dirty-martini": "Pour all ingredients into mixing glass with ice. \nStir until outside of glass feels cold or until diluted to taste. \nStrain in chilled martini cocktail glass. \nGarnish with several olives on cocktail sticks.",
     "dry-martini": "Straight: Pour all ingredients into mixing glass with ice cubes. \nStir well. \nStrain in chilled martini cocktail glass. \nGarnish with olive.",
     "elderflower-caipirinha": "Fill the glass with crushed ice and add Cachaça, lime juice and elderflower cordial. \nStir well and top with some more crushed ice. \nGarnish with lime and enjoy!",
     "english-highball": "Pour brandy, gin, and sweet vermouth into a highball glass over ice cubes. \nFill with soda water. \nAdd the twist of lemon peel, stir, and serve. \n(Ginger ale may be substituted for carbonated water, if preferred.)",