#include "cheatPaca.h"
#include "../alpaca.h"
#include <cstdlib>
#include <iostream>
using namespace std;
std::string
cheatPaca::name() {
return nickName;
}
void
cheatPaca::act(Alpaca *opponent) {
switch(rand()%2) {
case 0:
troll();
break;
case 1:
lol();
break;
}
}
void
cheatPaca::troll() {
cout << name() << " is trolling you!!" << endl;
}
void
cheatPaca::lol() {
cout << name() << " types 'lol' but he doesn't actually laugh out loud!!" << endl;
}