HEYYYYY
Sorry I haven’t been on here more, but to make up for it, here’s a coding spell I made based on red-moon-witch’s glamour spell.
#include <iostream> #include<string> using namespace std; int main() { string light_candle; std::cout << "Are you ready for white and purple candles to be in place?" << endl; cin >> light_candle; if (light_candle == "yes") { cout << "Candles have been lit" << endl; } string stones; cout << "Are you ready for Tiger eye, Obsidian, and Smokey quartz to be set out in front of candles?" << endl; cin >> stones; if (stones == "yes") { cout << "Stones have now been places in front of candles" << endl; } string lavender; cout << "Are you ready to take lavender out, and set it in front of crystals?" << endl; cin >> lavender; if (lavender == "yes") { cout << "Lavender has been placed in front of crystals" << endl; } string pull_energy; cout << "Would you like to proceed with pulling energy from crystals, and push it into crystals?" << endl; cin >> pull_energy; if (pull_energy == "yes") { cout << "Proceeding with pulling energy from crystals, and pushing it into crystals" << endl; } string surround; cout << "Proceed with surrounding the lavender with the crystals, allowing the energy soak into it?" << endl; cin >> surround; if (surround == "yes") { cout << "Proceeding with surrounding the lavender with the crystals and soaking it in their energy" << endl; } string incantation; cout << "Are you ready to speak the incantation?" << endl; cin >> incantation; if (incantation == "yes") { cout << "I didn't sleep well, I'm not feeling well, I tried really hard, but I still lost the fight. Regardless I have things to do, I've got to move, so even if I'm not up for calculus, I know I look damn gorgeous." << endl; } string blow_candles; cout << "Are you ready to complete the spell by blowing out the candles?" << endl; cin >> blow_candles; if (blow_candles == "yes") { cout << "Candles have been blown out. The spell is now complete." << endl; } system("pause"); return 0; }










