#include <iostream>
int main()
{
double armor, weapon, level, defense, health, total_durability, total_damage, remaining, ability_level, base_power, ability_damage;
std::cout << "Welcome To The STEVEN Stats Calculator\n"
<< "Here You Can Test Calculations Including Stats, Armory, Weaponry, and Special Abilities.\n"
​`oaicite:{"index":0,"invalid_reason":"Malformed citation << \"What is the Armor Stat of the character?\\n\";\n std::cin >>"}`​ armor;
std::cout ​`oaicite:{"index":1,"invalid_reason":"Malformed citation << \"What is the Weapon Stat of the character?\\n\";\n std::cin >>"}`​ weapon;
std::cout ​`oaicite:{"index":2,"invalid_reason":"Malformed citation << \"What is the Level Stat of the character?\\n\";\n while (level > 100) {\n std::cin >>"}`​ level;
if (level > 100) {
std::cout << "Please enter a level below 100\n";
}
}
defense = 80 + armor;
attack = 80 + weapon;
health = (defense + level) / 2;
speed = (defense * health) / (armor + level) * 2;
std::cout << "Your Attack is " << attack << '\n'
<< "Your Defense is " << defense << '\n'
<< "Your Health is " << health << '\n'
<< "Your Speed is " << speed << '\n'
<< "Moving on to Durability\n"
​`oaicite:{"index":3,"invalid_reason":"Malformed citation << \"What is the total durability?\\n\";\n std::cin >>"}`​ total_durability;
std::cout ​`oaicite:{"index":4,"invalid_reason":"Malformed citation << \"How much damage is dealt?\\n\";\n std::cin >>"}`​ total_damage;
remaining = total_durability - total_damage;
std::cout << "Your Remaining Durability is " << remaining << '\n'
<< "Moving on to Abilities\n"
<< "Available abilities: Final_Power, Fireblazer, Shadow_Sphere, Dark_And_Stormy_Night, Electropunch, Kneeslapper, Glare, Instrumental_Doom, Flower_Power, weneedtocook, Magic_Pulse, Heal_Spell\n"
​`oaicite:{"index":5,"invalid_reason":"Malformed citation << \"Enter ability name: \\n\";\n std::cin >>"}`​ ability;
if (ability == "Final_Power") {
std::cout ​`oaicite:{"index":6,"invalid_reason":"Malformed citation << \"What's The Ability Level?\\n\";\n std::cin >>"}`​ ability_level;
while (ability_level > 10) {
std