Go to file
Steve Clement 1bcbb35dfa - requirements file 2016-09-28 13:29:27 +02:00
audio - MOdified some sounds and added a fail sound 2014-08-31 10:04:20 +02:00
img - fixed Twitter handles of @kwisatz and @rafiot (Thanks to @Kaweechelchen) 2014-09-05 10:05:25 +02:00
interface - UTF-8 matters: https://stackoverflow.com/questions/4872007/where-does-this-come-from-coding-utf-8 2014-09-06 13:01:32 +02:00
support - UTF-8 matters: https://stackoverflow.com/questions/4872007/where-does-this-come-from-coding-utf-8 2014-09-06 13:01:32 +02:00
.gitignore - updated gitignore 2015-02-05 22:01:28 +01:00
README.md - fixed Twitter handles of @kwisatz and @rafiot (Thanks to @Kaweechelchen) 2014-09-05 10:05:25 +02:00
avocado.py - UTF-8 matters: https://stackoverflow.com/questions/4872007/where-does-this-come-from-coding-utf-8 2014-09-06 13:01:32 +02:00
crystal.py - UTF-8 matters: https://stackoverflow.com/questions/4872007/where-does-this-come-from-coding-utf-8 2014-09-06 13:01:32 +02:00
game.py - UTF-8 matters: https://stackoverflow.com/questions/4872007/where-does-this-come-from-coding-utf-8 2014-09-06 13:01:32 +02:00
itext.py - UTF-8 matters: https://stackoverflow.com/questions/4872007/where-does-this-come-from-coding-utf-8 2014-09-06 13:01:32 +02:00
pingenerator.py - UTF-8 matters: https://stackoverflow.com/questions/4872007/where-does-this-come-from-coding-utf-8 2014-09-06 13:01:32 +02:00
requirements.txt - requirements file 2016-09-28 13:29:27 +02:00

README.md

BBQ Game Jam 2 game: The Mushy Tales of Avo The Cado

###tags: colored, voodoo, avocat, clicker, lawyer

###GameJam Keywords (based on which we chose the theme of the game): colored, voodoo, avocat (French for avocado and Lawyer, double entendre)

###Language: python3+pygame

###Tools and Hardware used: Wacom Tablet/Photoshop CC, Ableton LivePush, Sublime, Canon 6D

###Team: @kwisarts, @rafi0t, @SteveClement (Twitter)

##Plot Imagine a world where Avo Cado could be free. A world where mushing around would be a thing of the past. To the greater chagrin of our protagonist Avo The Cado the evil Voodoo Lawyers are behind her. The Lawyers try to pin down every Avo Cado in existence, especially the pink ones. Your mission, should you decide to accept it, is to be this bastard evil Voodoo lawyer and just end the life of all Avo Cado People around.

As every good Avo Cado hunter you have a Boss. Your Boss, Dr. Dredd, tells you what color of Avo Cado to go after.

Because of a stagnating economy you are ill equipped and can only afford hair pins to make a painful point on the Cado people. Some would argue it even hurts more, but we are not here to discuss that.

Do not let the coloured guys go their way, or you will lose.

Make it past level3 and enter the evil psycho mode where Dr. Dredd wants to test your brain skills. The only thing that changes is, READ the Color -> Click the Color…

moua mouaahah mouahahahaha

Lauch

Main launcher: game.py

Requirements

#Installing py-game for python3

##OSX

###Install HomeBrew

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

###Install dependencies

brew install python3 mercurial git sdl sdl_image sdl_mixer sdl_ttf portmidi
brew tap homebrew/headonly
brew install --HEAD smpeg
/usr/local/bin/pip3 install hg+http://bitbucket.org/pygame/pygame

##Linux

sudo apt-get install mercurial
sudo apt-get install python3-dev python3-numpy libsdl-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-ttf2.0-dev libsmpeg-dev libportmidi-dev libavformat-dev libswscale-dev libjpeg-dev libfreetype6-dev
hg clone https://bitbucket.org/pygame/pygame
cd pygame
python3 setup.py build
sudo python3 setup.py install

using pip (currently not working due to C90 non-compliance)

sudo apt-get install mercurial
sudo apt-get install python3-dev python3-numpy libsdl-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-ttf2.0-dev libsmpeg-dev libportmidi-dev libavformat-dev libswscale-dev libjpeg-dev libfreetype6-dev
pip install hg+https://bitbucket.org/pygame/pygame

##Windows (Currently failing on Windows 8.x numpy error)

#Testing it all out

python3
>>> import pygame
>>> pygame.init()
(6, 0)
>>> pygame.display.set_mode((800, 600))
<Surface(800x600x32 SW)>
>>> raise SystemExit

#IDE (Integrated Development Environments)

OR a standalone py-dev version called LiClipse (Beta as of August 2014)

#CodeEditors