fork(2) download
  1. // Test for hard stuff.cpp : Defines the entry point for the console application.
  2. //
  3. // Bigger proj
  4. // Constructors will make characters with rolling statistics
  5.  
  6. //#include "stdafx.h"
  7. #include <iostream>
  8. #include <string>
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <time.h>
  12.  
  13. using namespace std;
  14. // declaring function for hit power
  15. //int power( int str, int def);
  16.  
  17. int command;
  18.  
  19.  
  20. class character
  21. {
  22. public:
  23. character();
  24. //~character();
  25. string name;
  26. float str;
  27. float def;
  28. float health; // hit points
  29. float regen; // health regen amount
  30. float roll; // for random value
  31. float ouch; // amount of attack damage
  32. float getAttack(character& opponent);
  33. float getHeal(void);
  34. void setRegen(float reg);
  35. bool IsAlive() const;
  36. //void setHeal(float healAmt);
  37.  
  38. private:
  39.  
  40.  
  41. };
  42.  
  43. character::character()
  44. {
  45. str = rand() % 30 + 5;
  46. def = rand() % 30 + 5;
  47. health = 100;
  48. //Output to check the constructor is running properly
  49. cout<< "Character has been created.\n";
  50. }
  51.  
  52. bool character::IsAlive() const
  53. {
  54. return health > 0.0f;
  55. }
  56.  
  57. void character::setRegen( float reg )
  58. {
  59. regen = reg;
  60. }
  61.  
  62.  
  63. float character::getAttack(character& opponent)
  64. {
  65. //defines the magnitude/power of attack
  66. //function shows how much damage is inflicted
  67.  
  68.  
  69. // ouch is how much damage is done
  70. roll = rand() % 20 + 1; // range between 1 &20
  71.  
  72. if (roll <= 11)
  73. {
  74. ouch = str - (def /2);
  75. }
  76.  
  77. else if ((roll <= 17) && (roll >= 12))
  78. {
  79. ouch = (str * 2) - (def / 2);
  80. }
  81.  
  82. else if ((roll <= 20) && (roll >= 18))
  83. {
  84. ouch = (str * 3) - (def / 2);
  85. //cout << "CRITICAL HIT!!";
  86. }
  87.  
  88. opponent.health -= ouch;
  89.  
  90. return ouch;
  91.  
  92. }
  93.  
  94. float character::getHeal()
  95. {
  96. //this is what happens when you chose to heal
  97. regen = rand() % 20 + 3;
  98. cout << "regen value= " << regen<< ".\n";
  99. health += regen;
  100. return regen;
  101. }
  102. /*character::~character()
  103. {
  104.   str = 0;
  105.   def = 0;
  106.   health = 0;
  107.   // Output to check the destructor is running properly
  108.   cout << "Character has been destroyed\n";
  109. } */
  110.  
  111.  
  112. int main()
  113. {
  114. srand(time_t(NULL));
  115. //Class objects
  116. character user, computer;
  117. //Hard code in a name for the computer's player
  118. computer.name = "ZOID\n";
  119.  
  120. float attackDamage;
  121. float healthAdded;
  122.  
  123. user.setRegen(42.0);
  124.  
  125. //Recieve data for the user's player
  126. cout<< "Please enter a name for your character:\n";
  127. cin>> user.name;
  128.  
  129. //Output name and stats to the user
  130. cout<< "\nYour name is: " << user.name << endl;
  131. cout << "here are your statistics: \n"
  132. << "strength: " << user.str << endl
  133. << "Defense: " << user.def << endl
  134. << "Health: " << user.health << endl;
  135.  
  136. cout<< "oh no an oppenent appeared!!!\n";
  137. cout<< "you will have to fight him!" << endl<< endl;
  138.  
  139. cout << "opponent's health: 100" << endl;
  140.  
  141.  
  142. while (user.IsAlive() && computer.IsAlive())
  143. {
  144. cout << "Str: " << user.str << "\t"
  145. << "Def: " << user.def << "\t"
  146. << "Health: " << user.health << "\t"
  147. << "\n";
  148.  
  149. cout << "what would you like to do: heal (1), attack(2), or run(3).\n";
  150. cin>> command;
  151.  
  152. switch(command)
  153. {
  154. case 1 :
  155.  
  156. healthAdded = user.getHeal();
  157.  
  158. cout<< ""<<user.name <<" has regenerated " << healthAdded << " health.\n";
  159.  
  160. break;
  161.  
  162. case 2 :
  163.  
  164. attackDamage = user.getAttack(computer);
  165.  
  166. cout << "" <<user.name <<" did " << attackDamage << " damage to the opponent!\n";
  167.  
  168. break;
  169.  
  170. case 3:
  171.  
  172. cout<< ""<<user.name<<" got away!\n";
  173.  
  174. break;
  175.  
  176. default:
  177. cout<< "Please enter a valid choice!";
  178.  
  179. } //end switch
  180. }
  181. return 0;
  182.  
  183. }
  184.  
Runtime error #stdin #stdout 0s 2992KB
stdin
Standard input is empty
stdout
Character has been created.
Character has been created.
Please enter a name for your character:

Your name is: 
here are your statistics: 
strength:   18
Defense:    21
Health:     100
oh no an oppenent appeared!!!
you will have to fight him!

opponent's health: 100
Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2), or run(3).
Please enter a valid choice!Str: 18	Def: 21	Health: 100	
what would you like to do: heal (1), attack(2),