From 8b1ccb869ad7c9cff9de622de72248e46ae3e921 Mon Sep 17 00:00:00 2001 From: Kameron Kinsey Date: Mon, 19 Mar 2018 06:29:50 +0000 Subject: [PATCH] Initialize repository --- Monster.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Monster.cpp b/Monster.cpp index 196248b..5ce308b 100644 --- a/Monster.cpp +++ b/Monster.cpp @@ -261,22 +261,22 @@ void Monster::giveItems(int encounterNum, Inventory inventory) { inventory.gainNewItem("Textbook", 5, 0); case 15: // Hobo - + inventory.gainNewItem("Rabies", 5, -5); case 16: - cout << "1 Direction stands before you, they deserve this, we won't tell anyone" << endl; - + // 1 Direction + inventory.gainNewItem("Boy-Band Hair", -3, 4); case 17: - cout << "A Doll stands before you, porcelain eyes staring into your soul" << endl; - + // Doll + inventory.gainNewItem("Doll Eyes", 2, 2); case 18: - cout << "A Real Slim Shady Gentleman sits before you, he stands up at your approach" << endl; - + // Real Slim Shady + inventory.gainNewItem("Push Pin", 2, 2); case 19: - cout << "Depression hits you as soon as you enter the room, this will be an uphill battle" << endl; - + // Depression + inventory.gainNewItem("The Power of Positive Thinking", 5, 5); case 20: - cout << "The Color Blue stands before you. . . I don’t know ok? I lost my sanity 10 encounters back so here. Fight against, Flee from, or Talk to the Color Blue" << endl; - + // Blue + inventory.gainNewItem("Big Blue Bouncy Balls", 5, -2); } } -- GitLab