About 15,900 results
Open links in new tab
  1. Turn-based battle simulator - Code Review Stack Exchange

    Jun 20, 2015 · # Turn Based Battle Simulator # Player and computer take turns to attack each other with different moves # until one is defeated. import random def main(): """Main function that will welcome …

  2. Simple Python turn based battle game - Code Review Stack Exchange

    Feb 20, 2020 · f-strings Beginning with Python 3.6, there is a friendlier way of formatting strings. Instead of using "format string" % (tuple_of_args) where the argument and the format codes are separated …

  3. Pokémon style battle game - Code Review Stack Exchange

    Aug 14, 2015 · I haven't been learning Python for too long and I was just wondering how this Pokémon style battle looks? It's based off of this: Turn Based Pokémon Style Game. It's my first proper time …

  4. Pokemon Turn Based battle (Python) - Code Review Stack Exchange

    Apr 10, 2019 · This is based off the popular Pokemon Turn Based project (here). GOAL Write a simple game that allows the user and the computer to take turns selecting moves to use against each other. …

  5. Python/Pygame Fighting Game - Code Review Stack Exchange

    Nov 28, 2017 · I've been working on a fighting game using python and pygame and its quite finished, currently I'm looking for some constructive feedback about any issues/functions I should change in …

  6. Python text-based fighting game - Code Review Stack Exchange

    Mar 24, 2017 · I wrote a fighting game. My code is rough. I would appreciate constructive and critical feedback please. The goal is to become a better programmer/developer. (I wrote this using 2 Files - …

  7. Java RPG battle simulator - Code Review Stack Exchange

    Aug 9, 2018 · I'm coding a turn-based RPG battle simulator (text based) in Java. I'm doing this as an exercise/project to learn OOP design. I've coded something similar in C, but just porting that code …

  8. beginner - Basic Pokedex in C++ - Code Review Stack Exchange

    Jul 20, 2016 · I recently started learning C++ about a week ago, and I made a bit of progress. In honor of Pokemon Go releasing, I decided to make a Pokedex with the original 151 Pokemon. So far I have …

  9. Command Line Hangman game - Code Review Stack Exchange

    Apr 13, 2025 · I've completed a Hangman game in Python and was wondering about the formatting of this code. There were several functions that I switched around while making this, and there were …

  10. game - Dwarf Fortress Clone - C++ - Code Review Stack Exchange

    Jan 15, 2021 · I have written a game. Its a very simple clone of the Dwarf Fortress. The game seems to be working fine at least from my testing. I would like to improve my programming game and fix all the …