Creating a text adventure

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • DannyB

    #1

    Creating a text adventure

    I am in the process of learning Python. I have the basics down and I
    now want to test my abilitiy to use them in a (very) small project. I
    have the idea for a (very) small text based game mapped out in my head.
    It will include two rooms, random creatures (amounts and type) in each
    room and random chests in each room. The basic "battle system" giving
    the user the ability to run or attack. Creatures will have hp, attack,
    defense, and name attributes. The player will have the same. Treasure
    chests will be populated with random treasure.

    I'm not adding anything fancy - like I said its just a small project to
    gell my newfound knowledge.

    What I am looking for is a resource (preferably via the web) that will
    give me an idea of how to set things up. I'm not looking to add any
    libraries to the project (so no pygame or livewires). I'm just using
    2.4.2. I'll add other things when I feel I have 'mastered' the
    fundamental concepts of Python.

    Thanks for your help!! :)

  • shandy.b@gmail.com

    #2
    Re: Creating a text adventure

    This (unabashed plug) might help. Most of the tutorial is about
    networking, but just skip that stuff. Hopefully the architecture
    section helps. But it sounds like you're pretty much on your way
    already. Just read through your first paragraph, circle every noun,
    and determine whether that noun should be a class or an attribute of a
    class.



    Comment

    Working...