Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void printHelp() {
  5. cout << "Commands: ";
  6. cout << "help -- Display this message." << endl;
  7. cout << "end -- End the current player’s turn. " << endl;
  8. cout << "quit -- End the game. " << endl;
  9. cout << "attack minion other-minion -- Orders minion to attack other-minion." << endl;
  10. cout << "attack minion -- Orders minion to attack the opponent." << endl;
  11. cout << "play card [target-player target-card] -- Play card, optionally targeting target-card owned by target-player." << endl;
  12. cout << "use minion [target-player target-card] -- Use minion’s special ability, optionally targeting target-card owned by target-player." << endl;
  13. cout << "inspect minion -- View a minion’s card and all enchantments on that minion." << endl;
  14. cout << "hand -- Describe all cards in your hand." << endl;
  15. cout << "board -- Describe all cards on the board." << endl;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement