From 94fdcc7463b4dafe7347318aa6065f4e3475b98a Mon Sep 17 00:00:00 2001 From: Blake Grotewold Date: Sat, 3 Jan 2015 09:40:16 -0500 Subject: [PATCH] Add `buy medicine` button to plague event. Because there is a serious need for medicine, the price is raised with this button. I felt like it should be even higher but this will do for now. Closes #199 --- script/events/outside.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/script/events/outside.js b/script/events/outside.js index 3028423..63972db 100644 --- a/script/events/outside.js +++ b/script/events/outside.js @@ -133,6 +133,13 @@ Events.Outside = [ ], blink: true, buttons: { + /* Because there is a serious need for medicine, the price is raised. */ + 'buyMedicine': { + text: _('buy medicine'), + cost: { 'scales': 70, + 'teeth': 50 }, + reward: { 'medicine': 1 } + }, 'heal': { text: _('5 medicine'), cost: { 'medicine' : 5 },