copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
Pokémon style battle game - Code Review Stack Exchange 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 using cla
Turn-based battle simulator - Code Review Stack Exchange I am embarking on the daunting journey of learning to program on my own two feet and have created a turn-based battle simulator (think Pokémon) The idea came from here It's very crude and could
Pokemon-style text battle game - Code Review Stack Exchange I took a crack at making a Pokemon-style text battle game in Python 3 to practice object-oriented programming a bit, inspired this project on Reddit, but I did not follow every instruction import
Simple Python turn based battle game - Code Review Stack Exchange 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 by significant distance, the arguments are embedded in the string itself, surrounded by {} 's The string itself is prefixed with an f For example, instead of: print("\n*** Round: %d ***\n" %(self round
Text-based turn-based fighter game - Code Review Stack Exchange To get a better understanding of objects methods, I wrote a text-based, turn-based fighting game I want to expand by adding new characters with new moves (one of which can alter the way other moves
Text-based fighting game in Python 3. 0 - Code Review Stack Exchange In your game, which I've played, you have 3 main warriors: knight, mage, and healer These warriors all have similar behaviors, health, attacks, and heals - they are essentially objects of a class, Warrior Tip 1: Let's create a Warrior class: You will be able to create new Warriors (ie Archers, Brutes, Zombies) later with ease
Python text-based fighting game - Code Review Stack Exchange 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 - The Main
beginner - Basic Pokedex in C++ - Code Review Stack Exchange 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 120 or so of
Java RPG battle simulator - Code Review Stack Exchange 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 over to