1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // Linux Legends - a console-based C++ RPG
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- #include <iostream>
- #include <string>
- #include "creatures.h"
- // Control the flow of the game:
- int main()
- {
- Player p1(30, 100, 20, 0, "fist");
- while(true) {
- // Battle loop:
- Monster m1(30, 70, 20, 15, "Troll");
- while(true) {
- m1.defend(p1.attack());
- if (m1.is_dead()) {
- std::cout << "You win the match!\n";
- p1.get_xp(m1.yield_xp());
- std::cout << "Press enter to continue";
- std::cin.get();
- break;
- }
- p1.defend(m1.attack());
- if (p1.is_dead())
- break;
- std::cout << "Press enter to continue";
- std::cin.get();
- }
- if (p1.is_dead()) break;
- }
- std::cout << "You are dead!\n";
- }
|