diff --git a/Boss.cpp b/Boss.cpp index edd1448540ac68eb83d738b1ba1637d0be6327fc..2ca5499e9dc2201ae478d737ea45c05d76ec5aaf 100644 --- a/Boss.cpp +++ b/Boss.cpp @@ -88,6 +88,21 @@ void Boss::bossResponse(int floorNum, int playerWon) { << "\"Perfectly laid traps, well executed enemies, but somehow you still beat me.\"" << endl << "\"Take it then, if you are willing to endure the consequences. . .\"" << endl; } + } else { + switch(floorNum) { + case 1: + // Minotaur + cout << "The Minotaur swings its hammer, it bellows with pleasure at your pain" << endl; + case 2: + // Death + cout << "Death brings your soul closer to the reaping" << endl; + case 3: + // Dragon + cout << "The Dragon lets loose a fountain of flame onto your sorry form" << endl; + case 4: + // Dungen Master + cout << "With a roll of the die and a smirk, you take damage" << endl; + } } }