From: Marek Moeckel Date: Sun, 13 Mar 2005 21:33:07 +0000 (+0000) Subject: removed old image files from the data directory, will be moved to contrib/old X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=af5f49ead31e4050a0fc424891e1a0cc392e8e10;p=supertux.git removed old image files from the data directory, will be moved to contrib/old SVN-Revision: 2285 --- diff --git a/contrib/levelconverter-0.0.6_0.0.7.py b/contrib/levelconverter-0.0.6_0.0.7.py deleted file mode 100755 index 642bd9ecb..000000000 --- a/contrib/levelconverter-0.0.6_0.0.7.py +++ /dev/null @@ -1,115 +0,0 @@ -#!/usr/bin/python - -import sys - -translate_array \ - =[['.', "none", 0], - ['0', "enemy0", 0], - ['1', "enemy1", 1], - ['2', "enemy2", 2], - ['x', "brick0.png", 105], - ['X', "brick0.png", 77], - ['y', "brick1.png", 104], - ['Y', "brick1.png", 78], - ['A', "box-full.png", 83], - ['B', "box-full.png", 102], - ['!', "box-full.png", 103], - ['a', "box-empty.png", 84], - ['C', "cloud-00.png", 85], - ['D', "cloud-00.png", 86], - ['E', "cloud-00.png", 87], - ['F', "cloud-00.png", 88], - ['c', "cloud-00.png", 89], - ['d', "cloud-00.png", 90], - ['e', "cloud-00.png", 91], - ['f', "cloud-00.png", 92], - - ['G', "bkgd-00.png", 93], - ['H', "bkgd-01.png", 94], - ['I', "bkgd-02.png", 95], - ['J', "bkgd-03.png", 96], - - ['g', "bkgd-10.png", 97], - ['h', "bkgd-11.png", 98], - ['i', "bkgd-12.png", 99], - ['j', "bkgd-13.png", 100], - - ['#', "solid0.png", 11], - ['[', "solid1.png", 13], - ['=', "solid2.png", 14], - [']', "solid3.png", 15], - ['$', "distro", 82], - ['^', "water", 76], - ['*', "poletop.png", 80], - ['|', "pole.png", 79], - ['\\',"flag.png", 81], - ['&', "water.png", 75]] - -def translate(c): - for i in translate_array: - if c == i[0]: - return i[2] - print >>sys.stderr, "Couldn't translate tile %s" % c - return 0 - -if len(sys.argv) != 2: - print "Usage: %s FILENAME" % sys.argv[0] - sys.exit() - -print ";; Converting:", sys.argv[1] - -f = open(sys.argv[1], 'r') -mycontent = f.readlines() - -content = [] - -for i in mycontent: - content.append(i[:-1]) - -name = content[0] -theme = content[1] -time = content[2] -music = content[3] -background = content[4] -red = content[5] -green = content[6] -blue = content[7] -width = content[8] -height = "15" -gravity = content[9] - -print "(supertux-level" -print " (version 1)" -print " (name \"%s\")" % name -print " (theme \"%s\")" % theme -print " (music \"%s\")" % music -print " (background \"%s\")" % background -print " (bkgd_red %s)" % red -print " (bkgd_green %s)" % green -print " (bkgd_blue %s)" % blue -print " (time %s)" % time -print " (width %s)" % width -print " (gravity %s)" % gravity -print " (interactive-tm " -for i in content[10:]: - for x in i: - sys.stdout.write("%3d" % translate(x)) - sys.stdout.write(" ") - print "" -print " )" - -print " (objects" -for y in range(0, 15): - for x in range(0, int(width)): - val = content[10 + y][x] - if val == '0': - print " (bsod (x %d) (y %d))" % (x*32, y*32) - elif val == '1': - print " (laptop (x %d) (y %d))" % (x*32, y*32) - elif val == '2': - print " (money (x %d) (y %d))" % (x*32, y*32) -print " )" - -print ")" - -# EOF # diff --git a/contrib/supertux.spec b/contrib/supertux.spec deleted file mode 100644 index 0b7b7fa37..000000000 --- a/contrib/supertux.spec +++ /dev/null @@ -1,65 +0,0 @@ -Name: supertux -Version: 0.1.1 -Release: 2zebar - -Group: Amusements/Games -Summary: A free arcade game like Super Mario. - -Vendor: The SuperTux Developer Team -Packager: Astakhov Peter -License: GPL -URL: http://super-tux.sf.net/ -Source0: %{name}-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-root -Prefix: /usr -Requires: SDL, SDL_image, SDL_mixer -BuildRequires: SDL-devel, SDL_mixer-devel, SDL_image-devel -%description -SuperTux is a jump'n run like game, with strong inspiration from the -Super Mario Bros games for Nintendo. - -Run and jump through multiple worlds, fighting off enemies by jumping -on them or bumping them from below. Grabbing power-ups and other stuff -on the way. - -%prep -#Unpack package -%setup - -%build -CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" \ -./configure --prefix=%{_prefix} --disable-opengl --disable-debug -make - -%install -#make DESTDIR=%{buildroot} install -%makeinstall - -#Install application link for X-Windows -install -d %{buildroot}/etc/X11/applnk/Games -echo -e "[Desktop Entry] -Name=SuperTux -Comment=Arcade game -Exec=supertux -Icon=/usr/share/supertux/images/icon.xpm -Terminal=0 -Type=Application" > %{buildroot}/etc/X11/applnk/Games/SuperTux.desktop - - - - -%clean -rm -rf %{buildroot} - -%files -%defattr(-,root,root) -%doc COPYING README ChangeLog TODO -#%doc doc/* -/etc/X11/applnk/* -%{_bindir}/* -%{_prefix}/share/supertux/* - - -%changelog -* Wed Jun 23 2004 Astakhov Peter -- initial supertux specfile diff --git a/data/images/background/extro640.jpg b/data/images/background/extro640.jpg deleted file mode 100644 index 48774d5f8..000000000 Binary files a/data/images/background/extro640.jpg and /dev/null differ diff --git a/data/images/background/ocean640.jpg b/data/images/background/ocean640.jpg deleted file mode 100644 index e8e64f497..000000000 Binary files a/data/images/background/ocean640.jpg and /dev/null differ diff --git a/data/images/background/old/arctis.png b/data/images/background/old/arctis.png deleted file mode 100644 index c5cac49f2..000000000 Binary files a/data/images/background/old/arctis.png and /dev/null differ diff --git a/data/images/highscore/highscore.png b/data/images/highscore/highscore.png deleted file mode 100644 index d08f0556b..000000000 Binary files a/data/images/highscore/highscore.png and /dev/null differ diff --git a/data/images/highscore/highscore.xcf b/data/images/highscore/highscore.xcf deleted file mode 100644 index d8ef93132..000000000 Binary files a/data/images/highscore/highscore.xcf and /dev/null differ diff --git a/data/images/icons/bgd.png b/data/images/icons/bgd.png deleted file mode 100644 index 9e21220a8..000000000 Binary files a/data/images/icons/bgd.png and /dev/null differ diff --git a/data/images/icons/bgd.xcf b/data/images/icons/bgd.xcf deleted file mode 100644 index dc2605219..000000000 Binary files a/data/images/icons/bgd.xcf and /dev/null differ diff --git a/data/images/icons/bkgrd.png b/data/images/icons/bkgrd.png deleted file mode 100644 index f9020503d..000000000 Binary files a/data/images/icons/bkgrd.png and /dev/null differ diff --git a/data/images/icons/default-icon.png b/data/images/icons/default-icon.png deleted file mode 100644 index 20e58ea04..000000000 Binary files a/data/images/icons/default-icon.png and /dev/null differ diff --git a/data/images/icons/down.png b/data/images/icons/down.png deleted file mode 100644 index 479c4baeb..000000000 Binary files a/data/images/icons/down.png and /dev/null differ diff --git a/data/images/icons/emy.png b/data/images/icons/emy.png deleted file mode 100644 index 47010608c..000000000 Binary files a/data/images/icons/emy.png and /dev/null differ diff --git a/data/images/icons/emy.xcf b/data/images/icons/emy.xcf deleted file mode 100644 index 9e1885a1e..000000000 Binary files a/data/images/icons/emy.xcf and /dev/null differ diff --git a/data/images/icons/exit.png b/data/images/icons/exit.png deleted file mode 100644 index 567654665..000000000 Binary files a/data/images/icons/exit.png and /dev/null differ diff --git a/data/images/icons/fgd.png b/data/images/icons/fgd.png deleted file mode 100644 index 3311fc249..000000000 Binary files a/data/images/icons/fgd.png and /dev/null differ diff --git a/data/images/icons/fgd.xcf b/data/images/icons/fgd.xcf deleted file mode 100644 index 51a04ac66..000000000 Binary files a/data/images/icons/fgd.xcf and /dev/null differ diff --git a/data/images/icons/frgrd.png b/data/images/icons/frgrd.png deleted file mode 100644 index d81ae3168..000000000 Binary files a/data/images/icons/frgrd.png and /dev/null differ diff --git a/data/images/icons/intact.png b/data/images/icons/intact.png deleted file mode 100644 index 2054e05bc..000000000 Binary files a/data/images/icons/intact.png and /dev/null differ diff --git a/data/images/icons/left.png b/data/images/icons/left.png deleted file mode 100644 index 7b91a4379..000000000 Binary files a/data/images/icons/left.png and /dev/null differ diff --git a/data/images/icons/next.png b/data/images/icons/next.png deleted file mode 100644 index 4498ece83..000000000 Binary files a/data/images/icons/next.png and /dev/null differ diff --git a/data/images/icons/objects.png b/data/images/icons/objects.png deleted file mode 100644 index a02b338d8..000000000 Binary files a/data/images/icons/objects.png and /dev/null differ diff --git a/data/images/icons/objects.xcf b/data/images/icons/objects.xcf deleted file mode 100644 index 1e756dcad..000000000 Binary files a/data/images/icons/objects.xcf and /dev/null differ diff --git a/data/images/icons/previous.png b/data/images/icons/previous.png deleted file mode 100644 index 206495bfd..000000000 Binary files a/data/images/icons/previous.png and /dev/null differ diff --git a/data/images/icons/properties.png b/data/images/icons/properties.png deleted file mode 100644 index 6520423b5..000000000 Binary files a/data/images/icons/properties.png and /dev/null differ diff --git a/data/images/icons/right.png b/data/images/icons/right.png deleted file mode 100644 index e57eea0bd..000000000 Binary files a/data/images/icons/right.png and /dev/null differ diff --git a/data/images/icons/rubber.png b/data/images/icons/rubber.png deleted file mode 100644 index fbcbfbdd1..000000000 Binary files a/data/images/icons/rubber.png and /dev/null differ diff --git a/data/images/icons/rubber.xcf b/data/images/icons/rubber.xcf deleted file mode 100644 index 65aebbfa9..000000000 Binary files a/data/images/icons/rubber.xcf and /dev/null differ diff --git a/data/images/icons/save.png b/data/images/icons/save.png deleted file mode 100644 index b2e688a23..000000000 Binary files a/data/images/icons/save.png and /dev/null differ diff --git a/data/images/icons/select-mode1.png b/data/images/icons/select-mode1.png deleted file mode 100644 index 792bbe045..000000000 Binary files a/data/images/icons/select-mode1.png and /dev/null differ diff --git a/data/images/icons/select-mode1.xcf b/data/images/icons/select-mode1.xcf deleted file mode 100644 index 2b8658252..000000000 Binary files a/data/images/icons/select-mode1.xcf and /dev/null differ diff --git a/data/images/icons/select-mode2.png b/data/images/icons/select-mode2.png deleted file mode 100644 index 31ebe2bd2..000000000 Binary files a/data/images/icons/select-mode2.png and /dev/null differ diff --git a/data/images/icons/select-mode2.xcf b/data/images/icons/select-mode2.xcf deleted file mode 100644 index 67a7e1a01..000000000 Binary files a/data/images/icons/select-mode2.xcf and /dev/null differ diff --git a/data/images/icons/select-one.png b/data/images/icons/select-one.png deleted file mode 100644 index d94ce0ed3..000000000 Binary files a/data/images/icons/select-one.png and /dev/null differ diff --git a/data/images/icons/select.xcf b/data/images/icons/select.xcf deleted file mode 100644 index 7595b40a1..000000000 Binary files a/data/images/icons/select.xcf and /dev/null differ diff --git a/data/images/icons/settings.png b/data/images/icons/settings.png deleted file mode 100644 index 7057fa60b..000000000 Binary files a/data/images/icons/settings.png and /dev/null differ diff --git a/data/images/icons/settings.xcf b/data/images/icons/settings.xcf deleted file mode 100644 index 4c859272b..000000000 Binary files a/data/images/icons/settings.xcf and /dev/null differ diff --git a/data/images/icons/test-level.png b/data/images/icons/test-level.png deleted file mode 100644 index 7702c8ca0..000000000 Binary files a/data/images/icons/test-level.png and /dev/null differ diff --git a/data/images/icons/tilegroup.png b/data/images/icons/tilegroup.png deleted file mode 100644 index caab4c16e..000000000 Binary files a/data/images/icons/tilegroup.png and /dev/null differ diff --git a/data/images/icons/tilegroup.xcf b/data/images/icons/tilegroup.xcf deleted file mode 100644 index 87d6bd394..000000000 Binary files a/data/images/icons/tilegroup.xcf and /dev/null differ diff --git a/data/images/icons/up.png b/data/images/icons/up.png deleted file mode 100644 index ac1cae8f3..000000000 Binary files a/data/images/icons/up.png and /dev/null differ diff --git a/data/images/intro/beam.png b/data/images/intro/beam.png deleted file mode 100644 index 3b884a531..000000000 Binary files a/data/images/intro/beam.png and /dev/null differ diff --git a/data/images/intro/copter-squish.png b/data/images/intro/copter-squish.png deleted file mode 100644 index 25f6b2bb1..000000000 Binary files a/data/images/intro/copter-squish.png and /dev/null differ diff --git a/data/images/intro/copter-stretch.png b/data/images/intro/copter-stretch.png deleted file mode 100644 index 754fa392f..000000000 Binary files a/data/images/intro/copter-stretch.png and /dev/null differ diff --git a/data/images/intro/copter1.png b/data/images/intro/copter1.png deleted file mode 100644 index 3db63a8e2..000000000 Binary files a/data/images/intro/copter1.png and /dev/null differ diff --git a/data/images/intro/copter2.png b/data/images/intro/copter2.png deleted file mode 100644 index 69991acd9..000000000 Binary files a/data/images/intro/copter2.png and /dev/null differ diff --git a/data/images/intro/gown-lookup.png b/data/images/intro/gown-lookup.png deleted file mode 100644 index 9c253312d..000000000 Binary files a/data/images/intro/gown-lookup.png and /dev/null differ diff --git a/data/images/intro/gown-sit.png b/data/images/intro/gown-sit.png deleted file mode 100644 index dbfcead92..000000000 Binary files a/data/images/intro/gown-sit.png and /dev/null differ diff --git a/data/images/intro/gown-upset.png b/data/images/intro/gown-upset.png deleted file mode 100644 index cd7d17021..000000000 Binary files a/data/images/intro/gown-upset.png and /dev/null differ diff --git a/data/images/intro/intro-old.png b/data/images/intro/intro-old.png deleted file mode 100644 index dfb0f72c4..000000000 Binary files a/data/images/intro/intro-old.png and /dev/null differ diff --git a/data/images/intro/intro.png b/data/images/intro/intro.png deleted file mode 100644 index b2c6c895f..000000000 Binary files a/data/images/intro/intro.png and /dev/null differ diff --git a/data/images/intro/tux-mad.png b/data/images/intro/tux-mad.png deleted file mode 100644 index a0edd5b4e..000000000 Binary files a/data/images/intro/tux-mad.png and /dev/null differ diff --git a/data/images/intro/tux-sit.png b/data/images/intro/tux-sit.png deleted file mode 100644 index d025fe5b4..000000000 Binary files a/data/images/intro/tux-sit.png and /dev/null differ diff --git a/data/images/intro/tux-upset.png b/data/images/intro/tux-upset.png deleted file mode 100644 index 79219fb1b..000000000 Binary files a/data/images/intro/tux-upset.png and /dev/null differ diff --git a/data/images/map/map.png b/data/images/map/map.png deleted file mode 100644 index 0623ccc4d..000000000 Binary files a/data/images/map/map.png and /dev/null differ diff --git a/data/images/shared/flag-0.png b/data/images/shared/flag-0.png deleted file mode 100644 index f753a1bdf..000000000 Binary files a/data/images/shared/flag-0.png and /dev/null differ diff --git a/data/images/shared/flag-1.png b/data/images/shared/flag-1.png deleted file mode 100644 index c8b6b3e37..000000000 Binary files a/data/images/shared/flag-1.png and /dev/null differ diff --git a/data/images/shared/old/bag-left-0.png b/data/images/shared/old/bag-left-0.png deleted file mode 100644 index 0526564ef..000000000 Binary files a/data/images/shared/old/bag-left-0.png and /dev/null differ diff --git a/data/images/shared/old/bag-left-1.png b/data/images/shared/old/bag-left-1.png deleted file mode 100644 index dca7cc94e..000000000 Binary files a/data/images/shared/old/bag-left-1.png and /dev/null differ diff --git a/data/images/shared/old/bag-right-0.png b/data/images/shared/old/bag-right-0.png deleted file mode 100644 index 2ee021e36..000000000 Binary files a/data/images/shared/old/bag-right-0.png and /dev/null differ diff --git a/data/images/shared/old/bag-right-1.png b/data/images/shared/old/bag-right-1.png deleted file mode 100644 index 53c0563ba..000000000 Binary files a/data/images/shared/old/bag-right-1.png and /dev/null differ diff --git a/data/images/shared/old/bigcape-left-0.png b/data/images/shared/old/bigcape-left-0.png deleted file mode 100644 index 38d437ce0..000000000 Binary files a/data/images/shared/old/bigcape-left-0.png and /dev/null differ diff --git a/data/images/shared/old/bigcape-left-1.png b/data/images/shared/old/bigcape-left-1.png deleted file mode 100644 index 4f8974b25..000000000 Binary files a/data/images/shared/old/bigcape-left-1.png and /dev/null differ diff --git a/data/images/shared/old/bigcape-right-0.png b/data/images/shared/old/bigcape-right-0.png deleted file mode 100644 index daa81e142..000000000 Binary files a/data/images/shared/old/bigcape-right-0.png and /dev/null differ diff --git a/data/images/shared/old/bigcape-right-1.png b/data/images/shared/old/bigcape-right-1.png deleted file mode 100644 index 219df6c0d..000000000 Binary files a/data/images/shared/old/bigcape-right-1.png and /dev/null differ diff --git a/data/images/shared/old/bigfiretux-left-0.png b/data/images/shared/old/bigfiretux-left-0.png deleted file mode 100644 index 1d0ebbd4b..000000000 Binary files a/data/images/shared/old/bigfiretux-left-0.png and /dev/null differ diff --git a/data/images/shared/old/bigfiretux-left-1.png b/data/images/shared/old/bigfiretux-left-1.png deleted file mode 100644 index 75d7cb061..000000000 Binary files a/data/images/shared/old/bigfiretux-left-1.png and /dev/null differ diff --git a/data/images/shared/old/bigfiretux-left-2.png b/data/images/shared/old/bigfiretux-left-2.png deleted file mode 100644 index 3e36c20ac..000000000 Binary files a/data/images/shared/old/bigfiretux-left-2.png and /dev/null differ diff --git a/data/images/shared/old/bigfiretux-left-jump.png b/data/images/shared/old/bigfiretux-left-jump.png deleted file mode 100644 index 2637ac24c..000000000 Binary files a/data/images/shared/old/bigfiretux-left-jump.png and /dev/null differ diff --git a/data/images/shared/old/bigfiretux-right-0.png b/data/images/shared/old/bigfiretux-right-0.png deleted file mode 100644 index b467d248e..000000000 Binary files a/data/images/shared/old/bigfiretux-right-0.png and /dev/null differ diff --git a/data/images/shared/old/bigfiretux-right-1.png b/data/images/shared/old/bigfiretux-right-1.png deleted file mode 100644 index 88e74553f..000000000 Binary files a/data/images/shared/old/bigfiretux-right-1.png and /dev/null differ diff --git a/data/images/shared/old/bigfiretux-right-2.png b/data/images/shared/old/bigfiretux-right-2.png deleted file mode 100644 index e9f73b2da..000000000 Binary files a/data/images/shared/old/bigfiretux-right-2.png and /dev/null differ diff --git a/data/images/shared/old/bigfiretux-right-jump.png b/data/images/shared/old/bigfiretux-right-jump.png deleted file mode 100644 index 6e0d25f11..000000000 Binary files a/data/images/shared/old/bigfiretux-right-jump.png and /dev/null differ diff --git a/data/images/shared/old/bigtux-left-0.png b/data/images/shared/old/bigtux-left-0.png deleted file mode 100644 index b59eb3c6f..000000000 Binary files a/data/images/shared/old/bigtux-left-0.png and /dev/null differ diff --git a/data/images/shared/old/bigtux-left-1.png b/data/images/shared/old/bigtux-left-1.png deleted file mode 100644 index 390eb7bee..000000000 Binary files a/data/images/shared/old/bigtux-left-1.png and /dev/null differ diff --git a/data/images/shared/old/bigtux-left-2.png b/data/images/shared/old/bigtux-left-2.png deleted file mode 100644 index 0215c0b03..000000000 Binary files a/data/images/shared/old/bigtux-left-2.png and /dev/null differ diff --git a/data/images/shared/old/bigtux-left-jump.png b/data/images/shared/old/bigtux-left-jump.png deleted file mode 100644 index e532161d4..000000000 Binary files a/data/images/shared/old/bigtux-left-jump.png and /dev/null differ diff --git a/data/images/shared/old/bigtux-right-0.png b/data/images/shared/old/bigtux-right-0.png deleted file mode 100644 index 76319651d..000000000 Binary files a/data/images/shared/old/bigtux-right-0.png and /dev/null differ diff --git a/data/images/shared/old/bigtux-right-1.png b/data/images/shared/old/bigtux-right-1.png deleted file mode 100644 index 1ed6b1f28..000000000 Binary files a/data/images/shared/old/bigtux-right-1.png and /dev/null differ diff --git a/data/images/shared/old/bigtux-right-2.png b/data/images/shared/old/bigtux-right-2.png deleted file mode 100644 index e31f961ec..000000000 Binary files a/data/images/shared/old/bigtux-right-2.png and /dev/null differ diff --git a/data/images/shared/old/bigtux-right-jump.png b/data/images/shared/old/bigtux-right-jump.png deleted file mode 100644 index d9c59d4f6..000000000 Binary files a/data/images/shared/old/bigtux-right-jump.png and /dev/null differ diff --git a/data/images/shared/old/box-empty.png b/data/images/shared/old/box-empty.png deleted file mode 100644 index 814ed5773..000000000 Binary files a/data/images/shared/old/box-empty.png and /dev/null differ diff --git a/data/images/shared/old/box-full.png b/data/images/shared/old/box-full.png deleted file mode 100644 index ae480f55e..000000000 Binary files a/data/images/shared/old/box-full.png and /dev/null differ diff --git a/data/images/shared/old/box-full2.png b/data/images/shared/old/box-full2.png deleted file mode 100644 index 0922be015..000000000 Binary files a/data/images/shared/old/box-full2.png and /dev/null differ diff --git a/data/images/shared/old/bsod-falling-left.png b/data/images/shared/old/bsod-falling-left.png deleted file mode 100644 index f902b6e97..000000000 Binary files a/data/images/shared/old/bsod-falling-left.png and /dev/null differ diff --git a/data/images/shared/old/bsod-falling-right.png b/data/images/shared/old/bsod-falling-right.png deleted file mode 100644 index d9ded9381..000000000 Binary files a/data/images/shared/old/bsod-falling-right.png and /dev/null differ diff --git a/data/images/shared/old/bsod-left-0.png b/data/images/shared/old/bsod-left-0.png deleted file mode 100644 index 39a1e1edd..000000000 Binary files a/data/images/shared/old/bsod-left-0.png and /dev/null differ diff --git a/data/images/shared/old/bsod-left-1.png b/data/images/shared/old/bsod-left-1.png deleted file mode 100644 index 52c7e10ab..000000000 Binary files a/data/images/shared/old/bsod-left-1.png and /dev/null differ diff --git a/data/images/shared/old/bsod-left-2.png b/data/images/shared/old/bsod-left-2.png deleted file mode 100644 index f043ccd1e..000000000 Binary files a/data/images/shared/old/bsod-left-2.png and /dev/null differ diff --git a/data/images/shared/old/bsod-left-3.png b/data/images/shared/old/bsod-left-3.png deleted file mode 100644 index 0db8bfd37..000000000 Binary files a/data/images/shared/old/bsod-left-3.png and /dev/null differ diff --git a/data/images/shared/old/bsod-right-0.png b/data/images/shared/old/bsod-right-0.png deleted file mode 100644 index 7d0aa101d..000000000 Binary files a/data/images/shared/old/bsod-right-0.png and /dev/null differ diff --git a/data/images/shared/old/bsod-right-1.png b/data/images/shared/old/bsod-right-1.png deleted file mode 100644 index 5a22480e5..000000000 Binary files a/data/images/shared/old/bsod-right-1.png and /dev/null differ diff --git a/data/images/shared/old/bsod-right-2.png b/data/images/shared/old/bsod-right-2.png deleted file mode 100644 index b25d674d3..000000000 Binary files a/data/images/shared/old/bsod-right-2.png and /dev/null differ diff --git a/data/images/shared/old/bsod-right-3.png b/data/images/shared/old/bsod-right-3.png deleted file mode 100644 index 8b4fc919e..000000000 Binary files a/data/images/shared/old/bsod-right-3.png and /dev/null differ diff --git a/data/images/shared/old/bsod-squished-left.png b/data/images/shared/old/bsod-squished-left.png deleted file mode 100644 index 608ed33a5..000000000 Binary files a/data/images/shared/old/bsod-squished-left.png and /dev/null differ diff --git a/data/images/shared/old/bsod-squished-right.png b/data/images/shared/old/bsod-squished-right.png deleted file mode 100644 index 4a474d376..000000000 Binary files a/data/images/shared/old/bsod-squished-right.png and /dev/null differ diff --git a/data/images/shared/old/bullet.png b/data/images/shared/old/bullet.png deleted file mode 100644 index f0f92ee47..000000000 Binary files a/data/images/shared/old/bullet.png and /dev/null differ diff --git a/data/images/shared/old/bullet2.png b/data/images/shared/old/bullet2.png deleted file mode 100644 index 97a3f44ac..000000000 Binary files a/data/images/shared/old/bullet2.png and /dev/null differ diff --git a/data/images/shared/old/cape-left-0.png b/data/images/shared/old/cape-left-0.png deleted file mode 100644 index 4d9c20e6d..000000000 Binary files a/data/images/shared/old/cape-left-0.png and /dev/null differ diff --git a/data/images/shared/old/cape-left-1.png b/data/images/shared/old/cape-left-1.png deleted file mode 100644 index f595d162e..000000000 Binary files a/data/images/shared/old/cape-left-1.png and /dev/null differ diff --git a/data/images/shared/old/cape-right-0.png b/data/images/shared/old/cape-right-0.png deleted file mode 100644 index 7af7be8fa..000000000 Binary files a/data/images/shared/old/cape-right-0.png and /dev/null differ diff --git a/data/images/shared/old/cape-right-1.png b/data/images/shared/old/cape-right-1.png deleted file mode 100644 index 3c2c91eac..000000000 Binary files a/data/images/shared/old/cape-right-1.png and /dev/null differ diff --git a/data/images/shared/old/coffee.png b/data/images/shared/old/coffee.png deleted file mode 100644 index e36b81305..000000000 Binary files a/data/images/shared/old/coffee.png and /dev/null differ diff --git a/data/images/shared/old/coffee2.png b/data/images/shared/old/coffee2.png deleted file mode 100644 index 7dcd5344f..000000000 Binary files a/data/images/shared/old/coffee2.png and /dev/null differ diff --git a/data/images/shared/old/distro-0.png b/data/images/shared/old/distro-0.png deleted file mode 100644 index 38b304d4c..000000000 Binary files a/data/images/shared/old/distro-0.png and /dev/null differ diff --git a/data/images/shared/old/distro-1.png b/data/images/shared/old/distro-1.png deleted file mode 100644 index dbd0604a8..000000000 Binary files a/data/images/shared/old/distro-1.png and /dev/null differ diff --git a/data/images/shared/old/distro-2.png b/data/images/shared/old/distro-2.png deleted file mode 100644 index c4dcaf586..000000000 Binary files a/data/images/shared/old/distro-2.png and /dev/null differ diff --git a/data/images/shared/old/distro-3.png b/data/images/shared/old/distro-3.png deleted file mode 100644 index b6a950ddc..000000000 Binary files a/data/images/shared/old/distro-3.png and /dev/null differ diff --git a/data/images/shared/old/distro2-0.png b/data/images/shared/old/distro2-0.png deleted file mode 100644 index a0f1b5ddc..000000000 Binary files a/data/images/shared/old/distro2-0.png and /dev/null differ diff --git a/data/images/shared/old/distro2-1.png b/data/images/shared/old/distro2-1.png deleted file mode 100644 index ae606ed14..000000000 Binary files a/data/images/shared/old/distro2-1.png and /dev/null differ diff --git a/data/images/shared/old/distro2-2.png b/data/images/shared/old/distro2-2.png deleted file mode 100644 index 89922def0..000000000 Binary files a/data/images/shared/old/distro2-2.png and /dev/null differ diff --git a/data/images/shared/old/distro2-3.png b/data/images/shared/old/distro2-3.png deleted file mode 100644 index 888cf6095..000000000 Binary files a/data/images/shared/old/distro2-3.png and /dev/null differ diff --git a/data/images/shared/old/duckfiretux-left.png b/data/images/shared/old/duckfiretux-left.png deleted file mode 100644 index 38e6deefa..000000000 Binary files a/data/images/shared/old/duckfiretux-left.png and /dev/null differ diff --git a/data/images/shared/old/duckfiretux-right.png b/data/images/shared/old/duckfiretux-right.png deleted file mode 100644 index c5f858252..000000000 Binary files a/data/images/shared/old/duckfiretux-right.png and /dev/null differ diff --git a/data/images/shared/old/ducktux-left.png b/data/images/shared/old/ducktux-left.png deleted file mode 100644 index a9adf4d7f..000000000 Binary files a/data/images/shared/old/ducktux-left.png and /dev/null differ diff --git a/data/images/shared/old/ducktux-right.png b/data/images/shared/old/ducktux-right.png deleted file mode 100644 index 7c56def98..000000000 Binary files a/data/images/shared/old/ducktux-right.png and /dev/null differ diff --git a/data/images/shared/old/firetux-duck-left.png b/data/images/shared/old/firetux-duck-left.png deleted file mode 100644 index 52f5b4763..000000000 Binary files a/data/images/shared/old/firetux-duck-left.png and /dev/null differ diff --git a/data/images/shared/old/firetux-duck-right.png b/data/images/shared/old/firetux-duck-right.png deleted file mode 100644 index fc6ab8aa1..000000000 Binary files a/data/images/shared/old/firetux-duck-right.png and /dev/null differ diff --git a/data/images/shared/old/firetux-grab-left-0.png b/data/images/shared/old/firetux-grab-left-0.png deleted file mode 100644 index 463c0b964..000000000 Binary files a/data/images/shared/old/firetux-grab-left-0.png and /dev/null differ diff --git a/data/images/shared/old/firetux-grab-right-0.png b/data/images/shared/old/firetux-grab-right-0.png deleted file mode 100644 index fa755bef4..000000000 Binary files a/data/images/shared/old/firetux-grab-right-0.png and /dev/null differ diff --git a/data/images/shared/old/firetux-jump-left-0.png b/data/images/shared/old/firetux-jump-left-0.png deleted file mode 100644 index 60fa666a4..000000000 Binary files a/data/images/shared/old/firetux-jump-left-0.png and /dev/null differ diff --git a/data/images/shared/old/firetux-jump-right-0.png b/data/images/shared/old/firetux-jump-right-0.png deleted file mode 100644 index 6ec4e6d61..000000000 Binary files a/data/images/shared/old/firetux-jump-right-0.png and /dev/null differ diff --git a/data/images/shared/old/firetux-kick-left-0.png b/data/images/shared/old/firetux-kick-left-0.png deleted file mode 100644 index db804cfd7..000000000 Binary files a/data/images/shared/old/firetux-kick-left-0.png and /dev/null differ diff --git a/data/images/shared/old/firetux-kick-right-0.png b/data/images/shared/old/firetux-kick-right-0.png deleted file mode 100644 index be9c480d7..000000000 Binary files a/data/images/shared/old/firetux-kick-right-0.png and /dev/null differ diff --git a/data/images/shared/old/firetux-left-0.png b/data/images/shared/old/firetux-left-0.png deleted file mode 100644 index 5635e640c..000000000 Binary files a/data/images/shared/old/firetux-left-0.png and /dev/null differ diff --git a/data/images/shared/old/firetux-left-0.png.right b/data/images/shared/old/firetux-left-0.png.right deleted file mode 100644 index 723598305..000000000 Binary files a/data/images/shared/old/firetux-left-0.png.right and /dev/null differ diff --git a/data/images/shared/old/firetux-left-1.png b/data/images/shared/old/firetux-left-1.png deleted file mode 100644 index a7955ef3b..000000000 Binary files a/data/images/shared/old/firetux-left-1.png and /dev/null differ diff --git a/data/images/shared/old/firetux-left-1.png.right b/data/images/shared/old/firetux-left-1.png.right deleted file mode 100644 index f9deea963..000000000 Binary files a/data/images/shared/old/firetux-left-1.png.right and /dev/null differ diff --git a/data/images/shared/old/firetux-left-2.png b/data/images/shared/old/firetux-left-2.png deleted file mode 100644 index 147a6d2cd..000000000 Binary files a/data/images/shared/old/firetux-left-2.png and /dev/null differ diff --git a/data/images/shared/old/firetux-left-2.png.right b/data/images/shared/old/firetux-left-2.png.right deleted file mode 100644 index 3ff9d29fd..000000000 Binary files a/data/images/shared/old/firetux-left-2.png.right and /dev/null differ diff --git a/data/images/shared/old/firetux-right-0.png b/data/images/shared/old/firetux-right-0.png deleted file mode 100644 index b95d8d230..000000000 Binary files a/data/images/shared/old/firetux-right-0.png and /dev/null differ diff --git a/data/images/shared/old/firetux-right-1.png b/data/images/shared/old/firetux-right-1.png deleted file mode 100644 index 54cdb8aed..000000000 Binary files a/data/images/shared/old/firetux-right-1.png and /dev/null differ diff --git a/data/images/shared/old/firetux-right-2.png b/data/images/shared/old/firetux-right-2.png deleted file mode 100644 index e0fe21c80..000000000 Binary files a/data/images/shared/old/firetux-right-2.png and /dev/null differ diff --git a/data/images/shared/old/firetux-skid-left.png b/data/images/shared/old/firetux-skid-left.png deleted file mode 100644 index 79ab718f4..000000000 Binary files a/data/images/shared/old/firetux-skid-left.png and /dev/null differ diff --git a/data/images/shared/old/firetux-skid-right.png b/data/images/shared/old/firetux-skid-right.png deleted file mode 100644 index f2525313e..000000000 Binary files a/data/images/shared/old/firetux-skid-right.png and /dev/null differ diff --git a/data/images/shared/old/firetux-stand-left.png b/data/images/shared/old/firetux-stand-left.png deleted file mode 100644 index 185bd5d90..000000000 Binary files a/data/images/shared/old/firetux-stand-left.png and /dev/null differ diff --git a/data/images/shared/old/firetux-stand-right.png b/data/images/shared/old/firetux-stand-right.png deleted file mode 100644 index 4957e065f..000000000 Binary files a/data/images/shared/old/firetux-stand-right.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-left-0.png b/data/images/shared/old/firetux-walk-left-0.png deleted file mode 100644 index a5ce0a12e..000000000 Binary files a/data/images/shared/old/firetux-walk-left-0.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-left-1.png b/data/images/shared/old/firetux-walk-left-1.png deleted file mode 100644 index 41ca1dc87..000000000 Binary files a/data/images/shared/old/firetux-walk-left-1.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-left-2.png b/data/images/shared/old/firetux-walk-left-2.png deleted file mode 100644 index adad0c8b5..000000000 Binary files a/data/images/shared/old/firetux-walk-left-2.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-left-3.png b/data/images/shared/old/firetux-walk-left-3.png deleted file mode 100644 index 7088e2c99..000000000 Binary files a/data/images/shared/old/firetux-walk-left-3.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-left-4.png b/data/images/shared/old/firetux-walk-left-4.png deleted file mode 100644 index 852aee1a4..000000000 Binary files a/data/images/shared/old/firetux-walk-left-4.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-left-5.png b/data/images/shared/old/firetux-walk-left-5.png deleted file mode 100644 index 29db7e5b6..000000000 Binary files a/data/images/shared/old/firetux-walk-left-5.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-right-0.png b/data/images/shared/old/firetux-walk-right-0.png deleted file mode 100644 index cb6c79130..000000000 Binary files a/data/images/shared/old/firetux-walk-right-0.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-right-1.png b/data/images/shared/old/firetux-walk-right-1.png deleted file mode 100644 index a95363289..000000000 Binary files a/data/images/shared/old/firetux-walk-right-1.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-right-2.png b/data/images/shared/old/firetux-walk-right-2.png deleted file mode 100644 index fc856762c..000000000 Binary files a/data/images/shared/old/firetux-walk-right-2.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-right-3.png b/data/images/shared/old/firetux-walk-right-3.png deleted file mode 100644 index cb05098c3..000000000 Binary files a/data/images/shared/old/firetux-walk-right-3.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-right-4.png b/data/images/shared/old/firetux-walk-right-4.png deleted file mode 100644 index 9f0586fc9..000000000 Binary files a/data/images/shared/old/firetux-walk-right-4.png and /dev/null differ diff --git a/data/images/shared/old/firetux-walk-right-5.png b/data/images/shared/old/firetux-walk-right-5.png deleted file mode 100644 index e75ea59c5..000000000 Binary files a/data/images/shared/old/firetux-walk-right-5.png and /dev/null differ diff --git a/data/images/shared/old/golden-herring.png b/data/images/shared/old/golden-herring.png deleted file mode 100644 index 1bcf2580b..000000000 Binary files a/data/images/shared/old/golden-herring.png and /dev/null differ diff --git a/data/images/shared/old/icetux-duck-left.png b/data/images/shared/old/icetux-duck-left.png deleted file mode 100644 index 19a5cf45b..000000000 Binary files a/data/images/shared/old/icetux-duck-left.png and /dev/null differ diff --git a/data/images/shared/old/icetux-duck-right.png b/data/images/shared/old/icetux-duck-right.png deleted file mode 100644 index 3370fc46c..000000000 Binary files a/data/images/shared/old/icetux-duck-right.png and /dev/null differ diff --git a/data/images/shared/old/icetux-grab-left-0.png b/data/images/shared/old/icetux-grab-left-0.png deleted file mode 100644 index ad450c82c..000000000 Binary files a/data/images/shared/old/icetux-grab-left-0.png and /dev/null differ diff --git a/data/images/shared/old/icetux-grab-right-0.png b/data/images/shared/old/icetux-grab-right-0.png deleted file mode 100644 index 9230cec41..000000000 Binary files a/data/images/shared/old/icetux-grab-right-0.png and /dev/null differ diff --git a/data/images/shared/old/icetux-jump-left-0.png b/data/images/shared/old/icetux-jump-left-0.png deleted file mode 100644 index f93acfec9..000000000 Binary files a/data/images/shared/old/icetux-jump-left-0.png and /dev/null differ diff --git a/data/images/shared/old/icetux-jump-right-0.png b/data/images/shared/old/icetux-jump-right-0.png deleted file mode 100644 index 45c98a285..000000000 Binary files a/data/images/shared/old/icetux-jump-right-0.png and /dev/null differ diff --git a/data/images/shared/old/icetux-kick-left-0.png b/data/images/shared/old/icetux-kick-left-0.png deleted file mode 100644 index c8572b47b..000000000 Binary files a/data/images/shared/old/icetux-kick-left-0.png and /dev/null differ diff --git a/data/images/shared/old/icetux-kick-right-0.png b/data/images/shared/old/icetux-kick-right-0.png deleted file mode 100644 index 363fb0e1a..000000000 Binary files a/data/images/shared/old/icetux-kick-right-0.png and /dev/null differ diff --git a/data/images/shared/old/icetux-skid-left.png b/data/images/shared/old/icetux-skid-left.png deleted file mode 100644 index e70ffc1e4..000000000 Binary files a/data/images/shared/old/icetux-skid-left.png and /dev/null differ diff --git a/data/images/shared/old/icetux-skid-right.png b/data/images/shared/old/icetux-skid-right.png deleted file mode 100644 index 0c1878075..000000000 Binary files a/data/images/shared/old/icetux-skid-right.png and /dev/null differ diff --git a/data/images/shared/old/icetux-stand-left.png b/data/images/shared/old/icetux-stand-left.png deleted file mode 100644 index feb84884c..000000000 Binary files a/data/images/shared/old/icetux-stand-left.png and /dev/null differ diff --git a/data/images/shared/old/icetux-stand-right.png b/data/images/shared/old/icetux-stand-right.png deleted file mode 100644 index 51d6160f7..000000000 Binary files a/data/images/shared/old/icetux-stand-right.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-left-0.png b/data/images/shared/old/icetux-walk-left-0.png deleted file mode 100644 index 70017b0f1..000000000 Binary files a/data/images/shared/old/icetux-walk-left-0.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-left-1.png b/data/images/shared/old/icetux-walk-left-1.png deleted file mode 100644 index d66586918..000000000 Binary files a/data/images/shared/old/icetux-walk-left-1.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-left-2.png b/data/images/shared/old/icetux-walk-left-2.png deleted file mode 100644 index 80bf94870..000000000 Binary files a/data/images/shared/old/icetux-walk-left-2.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-left-3.png b/data/images/shared/old/icetux-walk-left-3.png deleted file mode 100644 index 8b7913743..000000000 Binary files a/data/images/shared/old/icetux-walk-left-3.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-left-4.png b/data/images/shared/old/icetux-walk-left-4.png deleted file mode 100644 index 928425354..000000000 Binary files a/data/images/shared/old/icetux-walk-left-4.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-left-5.png b/data/images/shared/old/icetux-walk-left-5.png deleted file mode 100644 index d566fbfb5..000000000 Binary files a/data/images/shared/old/icetux-walk-left-5.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-right-0.png b/data/images/shared/old/icetux-walk-right-0.png deleted file mode 100644 index 2e605da8c..000000000 Binary files a/data/images/shared/old/icetux-walk-right-0.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-right-1.png b/data/images/shared/old/icetux-walk-right-1.png deleted file mode 100644 index 4341ba615..000000000 Binary files a/data/images/shared/old/icetux-walk-right-1.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-right-2.png b/data/images/shared/old/icetux-walk-right-2.png deleted file mode 100644 index 1e047717a..000000000 Binary files a/data/images/shared/old/icetux-walk-right-2.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-right-3.png b/data/images/shared/old/icetux-walk-right-3.png deleted file mode 100644 index 2590dd672..000000000 Binary files a/data/images/shared/old/icetux-walk-right-3.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-right-4.png b/data/images/shared/old/icetux-walk-right-4.png deleted file mode 100644 index 5a0cf4ce6..000000000 Binary files a/data/images/shared/old/icetux-walk-right-4.png and /dev/null differ diff --git a/data/images/shared/old/icetux-walk-right-5.png b/data/images/shared/old/icetux-walk-right-5.png deleted file mode 100644 index 22cecb512..000000000 Binary files a/data/images/shared/old/icetux-walk-right-5.png and /dev/null differ diff --git a/data/images/shared/old/icon.png b/data/images/shared/old/icon.png deleted file mode 100644 index bb5ad7ef0..000000000 Binary files a/data/images/shared/old/icon.png and /dev/null differ diff --git a/data/images/shared/old/laptop-falling-left.png b/data/images/shared/old/laptop-falling-left.png deleted file mode 100644 index e54d9c481..000000000 Binary files a/data/images/shared/old/laptop-falling-left.png and /dev/null differ diff --git a/data/images/shared/old/laptop-falling-right.png b/data/images/shared/old/laptop-falling-right.png deleted file mode 100644 index 0880d91c6..000000000 Binary files a/data/images/shared/old/laptop-falling-right.png and /dev/null differ diff --git a/data/images/shared/old/laptop-flat-left.png b/data/images/shared/old/laptop-flat-left.png deleted file mode 100644 index fdbdb58ba..000000000 Binary files a/data/images/shared/old/laptop-flat-left.png and /dev/null differ diff --git a/data/images/shared/old/laptop-flat-right.png b/data/images/shared/old/laptop-flat-right.png deleted file mode 100644 index 5186ad07e..000000000 Binary files a/data/images/shared/old/laptop-flat-right.png and /dev/null differ diff --git a/data/images/shared/old/laptop-left-0.png b/data/images/shared/old/laptop-left-0.png deleted file mode 100644 index 03b2edd32..000000000 Binary files a/data/images/shared/old/laptop-left-0.png and /dev/null differ diff --git a/data/images/shared/old/laptop-left-1.png b/data/images/shared/old/laptop-left-1.png deleted file mode 100644 index 527477181..000000000 Binary files a/data/images/shared/old/laptop-left-1.png and /dev/null differ diff --git a/data/images/shared/old/laptop-left-2.png b/data/images/shared/old/laptop-left-2.png deleted file mode 100644 index e907d474e..000000000 Binary files a/data/images/shared/old/laptop-left-2.png and /dev/null differ diff --git a/data/images/shared/old/laptop-right-0.png b/data/images/shared/old/laptop-right-0.png deleted file mode 100644 index 46b1e5f96..000000000 Binary files a/data/images/shared/old/laptop-right-0.png and /dev/null differ diff --git a/data/images/shared/old/laptop-right-1.png b/data/images/shared/old/laptop-right-1.png deleted file mode 100644 index 871025717..000000000 Binary files a/data/images/shared/old/laptop-right-1.png and /dev/null differ diff --git a/data/images/shared/old/laptop-right-2.png b/data/images/shared/old/laptop-right-2.png deleted file mode 100644 index 73aaff079..000000000 Binary files a/data/images/shared/old/laptop-right-2.png and /dev/null differ diff --git a/data/images/shared/old/largetux-grab-left-0.png b/data/images/shared/old/largetux-grab-left-0.png deleted file mode 100644 index e7a6c5b49..000000000 Binary files a/data/images/shared/old/largetux-grab-left-0.png and /dev/null differ diff --git a/data/images/shared/old/largetux-grab-right-0.png b/data/images/shared/old/largetux-grab-right-0.png deleted file mode 100644 index 21b63390c..000000000 Binary files a/data/images/shared/old/largetux-grab-right-0.png and /dev/null differ diff --git a/data/images/shared/old/largetux-jump-left-0.png b/data/images/shared/old/largetux-jump-left-0.png deleted file mode 100644 index 41d8167f8..000000000 Binary files a/data/images/shared/old/largetux-jump-left-0.png and /dev/null differ diff --git a/data/images/shared/old/largetux-jump-right-0.png b/data/images/shared/old/largetux-jump-right-0.png deleted file mode 100644 index 005c3268e..000000000 Binary files a/data/images/shared/old/largetux-jump-right-0.png and /dev/null differ diff --git a/data/images/shared/old/largetux-kick-left-0.png b/data/images/shared/old/largetux-kick-left-0.png deleted file mode 100644 index 279e89f48..000000000 Binary files a/data/images/shared/old/largetux-kick-left-0.png and /dev/null differ diff --git a/data/images/shared/old/largetux-kick-right-0.png b/data/images/shared/old/largetux-kick-right-0.png deleted file mode 100644 index 2b5c0af9c..000000000 Binary files a/data/images/shared/old/largetux-kick-right-0.png and /dev/null differ diff --git a/data/images/shared/old/largetux-skid-left.png b/data/images/shared/old/largetux-skid-left.png deleted file mode 100644 index d87a17c2a..000000000 Binary files a/data/images/shared/old/largetux-skid-left.png and /dev/null differ diff --git a/data/images/shared/old/largetux-skid-right.png b/data/images/shared/old/largetux-skid-right.png deleted file mode 100644 index b21152b31..000000000 Binary files a/data/images/shared/old/largetux-skid-right.png and /dev/null differ diff --git a/data/images/shared/old/largetux-stand-left.png b/data/images/shared/old/largetux-stand-left.png deleted file mode 100644 index a70e7d43d..000000000 Binary files a/data/images/shared/old/largetux-stand-left.png and /dev/null differ diff --git a/data/images/shared/old/largetux-stand-right.png b/data/images/shared/old/largetux-stand-right.png deleted file mode 100644 index 94e36bdeb..000000000 Binary files a/data/images/shared/old/largetux-stand-right.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-left-0.png b/data/images/shared/old/largetux-walk-left-0.png deleted file mode 100644 index 7be58643e..000000000 Binary files a/data/images/shared/old/largetux-walk-left-0.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-left-1.png b/data/images/shared/old/largetux-walk-left-1.png deleted file mode 100644 index 208b35db0..000000000 Binary files a/data/images/shared/old/largetux-walk-left-1.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-left-2.png b/data/images/shared/old/largetux-walk-left-2.png deleted file mode 100644 index 0dcf36ad4..000000000 Binary files a/data/images/shared/old/largetux-walk-left-2.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-left-3.png b/data/images/shared/old/largetux-walk-left-3.png deleted file mode 100644 index 9d4bf7b3f..000000000 Binary files a/data/images/shared/old/largetux-walk-left-3.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-left-4.png b/data/images/shared/old/largetux-walk-left-4.png deleted file mode 100644 index 06156bbfd..000000000 Binary files a/data/images/shared/old/largetux-walk-left-4.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-left-5.png b/data/images/shared/old/largetux-walk-left-5.png deleted file mode 100644 index 9ec836e10..000000000 Binary files a/data/images/shared/old/largetux-walk-left-5.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-right-0.png b/data/images/shared/old/largetux-walk-right-0.png deleted file mode 100644 index ac2568aca..000000000 Binary files a/data/images/shared/old/largetux-walk-right-0.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-right-1.png b/data/images/shared/old/largetux-walk-right-1.png deleted file mode 100644 index 304d6c54e..000000000 Binary files a/data/images/shared/old/largetux-walk-right-1.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-right-2.png b/data/images/shared/old/largetux-walk-right-2.png deleted file mode 100644 index ca130dbab..000000000 Binary files a/data/images/shared/old/largetux-walk-right-2.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-right-3.png b/data/images/shared/old/largetux-walk-right-3.png deleted file mode 100644 index 4b2267306..000000000 Binary files a/data/images/shared/old/largetux-walk-right-3.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-right-4.png b/data/images/shared/old/largetux-walk-right-4.png deleted file mode 100644 index 208650f4a..000000000 Binary files a/data/images/shared/old/largetux-walk-right-4.png and /dev/null differ diff --git a/data/images/shared/old/largetux-walk-right-5.png b/data/images/shared/old/largetux-walk-right-5.png deleted file mode 100644 index 31e027db6..000000000 Binary files a/data/images/shared/old/largetux-walk-right-5.png and /dev/null differ diff --git a/data/images/shared/old/mints.png b/data/images/shared/old/mints.png deleted file mode 100644 index f69193cca..000000000 Binary files a/data/images/shared/old/mints.png and /dev/null differ diff --git a/data/images/shared/old/red-glow.png b/data/images/shared/old/red-glow.png deleted file mode 100644 index 23d0c6f2a..000000000 Binary files a/data/images/shared/old/red-glow.png and /dev/null differ diff --git a/data/images/shared/old/skidfiretux-left.png b/data/images/shared/old/skidfiretux-left.png deleted file mode 100644 index dc690b4b9..000000000 Binary files a/data/images/shared/old/skidfiretux-left.png and /dev/null differ diff --git a/data/images/shared/old/skidfiretux-right.png b/data/images/shared/old/skidfiretux-right.png deleted file mode 100644 index 1b16847af..000000000 Binary files a/data/images/shared/old/skidfiretux-right.png and /dev/null differ diff --git a/data/images/shared/old/skidtux-left.png b/data/images/shared/old/skidtux-left.png deleted file mode 100644 index 4948158fe..000000000 Binary files a/data/images/shared/old/skidtux-left.png and /dev/null differ diff --git a/data/images/shared/old/skidtux-right.png b/data/images/shared/old/skidtux-right.png deleted file mode 100644 index 4592c3794..000000000 Binary files a/data/images/shared/old/skidtux-right.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-grab-left-0.png b/data/images/shared/old/smalltux-grab-left-0.png deleted file mode 100644 index 9d1b5d2ca..000000000 Binary files a/data/images/shared/old/smalltux-grab-left-0.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-grab-right-0.png b/data/images/shared/old/smalltux-grab-right-0.png deleted file mode 100644 index ccf44cf58..000000000 Binary files a/data/images/shared/old/smalltux-grab-right-0.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-jump-left.png b/data/images/shared/old/smalltux-jump-left.png deleted file mode 100644 index 9a2e4ab77..000000000 Binary files a/data/images/shared/old/smalltux-jump-left.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-jump-right.png b/data/images/shared/old/smalltux-jump-right.png deleted file mode 100644 index ab5281a91..000000000 Binary files a/data/images/shared/old/smalltux-jump-right.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-kick-left-0.png b/data/images/shared/old/smalltux-kick-left-0.png deleted file mode 100644 index c3b8fd7ff..000000000 Binary files a/data/images/shared/old/smalltux-kick-left-0.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-kick-right-0.png b/data/images/shared/old/smalltux-kick-right-0.png deleted file mode 100644 index eab46e51f..000000000 Binary files a/data/images/shared/old/smalltux-kick-right-0.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-left-1.png b/data/images/shared/old/smalltux-left-1.png deleted file mode 100644 index 122efc444..000000000 Binary files a/data/images/shared/old/smalltux-left-1.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-left-2.png b/data/images/shared/old/smalltux-left-2.png deleted file mode 100644 index e823761b7..000000000 Binary files a/data/images/shared/old/smalltux-left-2.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-left-3.png b/data/images/shared/old/smalltux-left-3.png deleted file mode 100644 index 4c122532c..000000000 Binary files a/data/images/shared/old/smalltux-left-3.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-left-4.png b/data/images/shared/old/smalltux-left-4.png deleted file mode 100644 index 43e8e75cc..000000000 Binary files a/data/images/shared/old/smalltux-left-4.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-left-5.png b/data/images/shared/old/smalltux-left-5.png deleted file mode 100644 index 651b5b2cc..000000000 Binary files a/data/images/shared/old/smalltux-left-5.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-left-6.png b/data/images/shared/old/smalltux-left-6.png deleted file mode 100644 index 52d3285be..000000000 Binary files a/data/images/shared/old/smalltux-left-6.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-left-7.png b/data/images/shared/old/smalltux-left-7.png deleted file mode 100644 index 712c03d81..000000000 Binary files a/data/images/shared/old/smalltux-left-7.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-left-8.png b/data/images/shared/old/smalltux-left-8.png deleted file mode 100644 index 2bf8c08cc..000000000 Binary files a/data/images/shared/old/smalltux-left-8.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-right-1.png b/data/images/shared/old/smalltux-right-1.png deleted file mode 100644 index ee2915d95..000000000 Binary files a/data/images/shared/old/smalltux-right-1.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-right-2.png b/data/images/shared/old/smalltux-right-2.png deleted file mode 100644 index 8a6637ec9..000000000 Binary files a/data/images/shared/old/smalltux-right-2.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-right-3.png b/data/images/shared/old/smalltux-right-3.png deleted file mode 100644 index 4df0faf7e..000000000 Binary files a/data/images/shared/old/smalltux-right-3.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-right-4.png b/data/images/shared/old/smalltux-right-4.png deleted file mode 100644 index 0a84d9f56..000000000 Binary files a/data/images/shared/old/smalltux-right-4.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-right-5.png b/data/images/shared/old/smalltux-right-5.png deleted file mode 100644 index 84b5d7a99..000000000 Binary files a/data/images/shared/old/smalltux-right-5.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-right-6.png b/data/images/shared/old/smalltux-right-6.png deleted file mode 100644 index 748e182c8..000000000 Binary files a/data/images/shared/old/smalltux-right-6.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-right-7.png b/data/images/shared/old/smalltux-right-7.png deleted file mode 100644 index 21fe52f9e..000000000 Binary files a/data/images/shared/old/smalltux-right-7.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-right-8.png b/data/images/shared/old/smalltux-right-8.png deleted file mode 100644 index 838aaf3cb..000000000 Binary files a/data/images/shared/old/smalltux-right-8.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-skid-left.png b/data/images/shared/old/smalltux-skid-left.png deleted file mode 100644 index d4a566724..000000000 Binary files a/data/images/shared/old/smalltux-skid-left.png and /dev/null differ diff --git a/data/images/shared/old/smalltux-skid-right.png b/data/images/shared/old/smalltux-skid-right.png deleted file mode 100644 index 634c51525..000000000 Binary files a/data/images/shared/old/smalltux-skid-right.png and /dev/null differ diff --git a/data/images/shared/old/tux-duck-left.png b/data/images/shared/old/tux-duck-left.png deleted file mode 100644 index f7284387a..000000000 Binary files a/data/images/shared/old/tux-duck-left.png and /dev/null differ diff --git a/data/images/shared/old/tux-duck-right.png b/data/images/shared/old/tux-duck-right.png deleted file mode 100644 index 55249eb51..000000000 Binary files a/data/images/shared/old/tux-duck-right.png and /dev/null differ diff --git a/data/images/shared/old/tux-duck.png b/data/images/shared/old/tux-duck.png deleted file mode 100644 index 9a2c83b75..000000000 Binary files a/data/images/shared/old/tux-duck.png and /dev/null differ diff --git a/data/images/shared/old/tux-left-0.png b/data/images/shared/old/tux-left-0.png deleted file mode 100644 index 89c792c70..000000000 Binary files a/data/images/shared/old/tux-left-0.png and /dev/null differ diff --git a/data/images/shared/old/tux-left-1.png b/data/images/shared/old/tux-left-1.png deleted file mode 100644 index c736096a3..000000000 Binary files a/data/images/shared/old/tux-left-1.png and /dev/null differ diff --git a/data/images/shared/old/tux-left-2.png b/data/images/shared/old/tux-left-2.png deleted file mode 100644 index edd7ff42f..000000000 Binary files a/data/images/shared/old/tux-left-2.png and /dev/null differ diff --git a/data/images/shared/old/tux-right-0.png b/data/images/shared/old/tux-right-0.png deleted file mode 100644 index 7702c8ca0..000000000 Binary files a/data/images/shared/old/tux-right-0.png and /dev/null differ diff --git a/data/images/shared/old/tux-right-1.png b/data/images/shared/old/tux-right-1.png deleted file mode 100644 index 1e899e390..000000000 Binary files a/data/images/shared/old/tux-right-1.png and /dev/null differ diff --git a/data/images/shared/old/tux-right-2.png b/data/images/shared/old/tux-right-2.png deleted file mode 100644 index 5972823d3..000000000 Binary files a/data/images/shared/old/tux-right-2.png and /dev/null differ diff --git a/data/images/shared/old/water.png b/data/images/shared/old/water.png deleted file mode 100644 index 8895554da..000000000 Binary files a/data/images/shared/old/water.png and /dev/null differ diff --git a/data/images/shared/old/waves-0.png b/data/images/shared/old/waves-0.png deleted file mode 100644 index 7cff2217d..000000000 Binary files a/data/images/shared/old/waves-0.png and /dev/null differ diff --git a/data/images/shared/old/waves-1.png b/data/images/shared/old/waves-1.png deleted file mode 100644 index 7625ea714..000000000 Binary files a/data/images/shared/old/waves-1.png and /dev/null differ diff --git a/data/images/shared/old/waves-2.png b/data/images/shared/old/waves-2.png deleted file mode 100644 index 004759545..000000000 Binary files a/data/images/shared/old/waves-2.png and /dev/null differ diff --git a/data/images/shared/super-bkgd.png b/data/images/shared/super-bkgd.png deleted file mode 100644 index ad0c7e78d..000000000 Binary files a/data/images/shared/super-bkgd.png and /dev/null differ diff --git a/data/images/shared/water.png b/data/images/shared/water.png deleted file mode 100644 index 9187b9c60..000000000 Binary files a/data/images/shared/water.png and /dev/null differ diff --git a/data/images/shared/waves-0.png b/data/images/shared/waves-0.png deleted file mode 100644 index d1208a125..000000000 Binary files a/data/images/shared/waves-0.png and /dev/null differ diff --git a/data/images/shared/waves-1.png b/data/images/shared/waves-1.png deleted file mode 100644 index fd37069cb..000000000 Binary files a/data/images/shared/waves-1.png and /dev/null differ diff --git a/data/images/shared/waves-2.png b/data/images/shared/waves-2.png deleted file mode 100644 index 100c6d29c..000000000 Binary files a/data/images/shared/waves-2.png and /dev/null differ diff --git a/data/images/status/old/back.png b/data/images/status/old/back.png deleted file mode 100644 index e44f8ef9c..000000000 Binary files a/data/images/status/old/back.png and /dev/null differ diff --git a/data/images/status/old/back.xcf b/data/images/status/old/back.xcf deleted file mode 100644 index 811e3b7ad..000000000 Binary files a/data/images/status/old/back.xcf and /dev/null differ diff --git a/data/images/status/old/checkbox-checked.png b/data/images/status/old/checkbox-checked.png deleted file mode 100644 index 0859b077c..000000000 Binary files a/data/images/status/old/checkbox-checked.png and /dev/null differ diff --git a/data/images/status/old/checkbox-checked.xcf b/data/images/status/old/checkbox-checked.xcf deleted file mode 100644 index 916aed388..000000000 Binary files a/data/images/status/old/checkbox-checked.xcf and /dev/null differ diff --git a/data/images/status/old/checkbox.png b/data/images/status/old/checkbox.png deleted file mode 100644 index 4fbe0430c..000000000 Binary files a/data/images/status/old/checkbox.png and /dev/null differ diff --git a/data/images/status/old/checkbox.xcf b/data/images/status/old/checkbox.xcf deleted file mode 100644 index d7a6bf34c..000000000 Binary files a/data/images/status/old/checkbox.xcf and /dev/null differ diff --git a/data/images/themes/antarctica/bkgd-00.png b/data/images/themes/antarctica/bkgd-00.png deleted file mode 100644 index 1491f7439..000000000 Binary files a/data/images/themes/antarctica/bkgd-00.png and /dev/null differ diff --git a/data/images/themes/antarctica/bkgd-01.png b/data/images/themes/antarctica/bkgd-01.png deleted file mode 100644 index 0428142d0..000000000 Binary files a/data/images/themes/antarctica/bkgd-01.png and /dev/null differ diff --git a/data/images/themes/antarctica/bkgd-02.png b/data/images/themes/antarctica/bkgd-02.png deleted file mode 100644 index 3fe0f2a21..000000000 Binary files a/data/images/themes/antarctica/bkgd-02.png and /dev/null differ diff --git a/data/images/themes/antarctica/bkgd-03.png b/data/images/themes/antarctica/bkgd-03.png deleted file mode 100644 index 49a011e84..000000000 Binary files a/data/images/themes/antarctica/bkgd-03.png and /dev/null differ diff --git a/data/images/themes/antarctica/bkgd-10.png b/data/images/themes/antarctica/bkgd-10.png deleted file mode 100644 index cd6e20256..000000000 Binary files a/data/images/themes/antarctica/bkgd-10.png and /dev/null differ diff --git a/data/images/themes/antarctica/bkgd-11.png b/data/images/themes/antarctica/bkgd-11.png deleted file mode 100644 index 734bb814a..000000000 Binary files a/data/images/themes/antarctica/bkgd-11.png and /dev/null differ diff --git a/data/images/themes/antarctica/bkgd-12.png b/data/images/themes/antarctica/bkgd-12.png deleted file mode 100644 index 9ba20d7c9..000000000 Binary files a/data/images/themes/antarctica/bkgd-12.png and /dev/null differ diff --git a/data/images/themes/antarctica/bkgd-13.png b/data/images/themes/antarctica/bkgd-13.png deleted file mode 100644 index c642394cf..000000000 Binary files a/data/images/themes/antarctica/bkgd-13.png and /dev/null differ diff --git a/data/images/themes/antarctica/brick0.png b/data/images/themes/antarctica/brick0.png deleted file mode 100644 index bc11142f5..000000000 Binary files a/data/images/themes/antarctica/brick0.png and /dev/null differ diff --git a/data/images/themes/antarctica/brick1.png b/data/images/themes/antarctica/brick1.png deleted file mode 100644 index 32c9545c6..000000000 Binary files a/data/images/themes/antarctica/brick1.png and /dev/null differ diff --git a/data/images/themes/antarctica/solid0.png b/data/images/themes/antarctica/solid0.png deleted file mode 100644 index 48dcd665a..000000000 Binary files a/data/images/themes/antarctica/solid0.png and /dev/null differ diff --git a/data/images/themes/antarctica/solid1.png b/data/images/themes/antarctica/solid1.png deleted file mode 100644 index 4486dce5b..000000000 Binary files a/data/images/themes/antarctica/solid1.png and /dev/null differ diff --git a/data/images/themes/antarctica/solid2.png b/data/images/themes/antarctica/solid2.png deleted file mode 100644 index d196155f8..000000000 Binary files a/data/images/themes/antarctica/solid2.png and /dev/null differ diff --git a/data/images/themes/antarctica/solid3.png b/data/images/themes/antarctica/solid3.png deleted file mode 100644 index f4879c82b..000000000 Binary files a/data/images/themes/antarctica/solid3.png and /dev/null differ diff --git a/data/images/themes/darkstone/bkgd-00.png b/data/images/themes/darkstone/bkgd-00.png deleted file mode 100644 index 1491f7439..000000000 Binary files a/data/images/themes/darkstone/bkgd-00.png and /dev/null differ diff --git a/data/images/themes/darkstone/bkgd-01.png b/data/images/themes/darkstone/bkgd-01.png deleted file mode 100644 index 0428142d0..000000000 Binary files a/data/images/themes/darkstone/bkgd-01.png and /dev/null differ diff --git a/data/images/themes/darkstone/bkgd-02.png b/data/images/themes/darkstone/bkgd-02.png deleted file mode 100644 index 3fe0f2a21..000000000 Binary files a/data/images/themes/darkstone/bkgd-02.png and /dev/null differ diff --git a/data/images/themes/darkstone/bkgd-03.png b/data/images/themes/darkstone/bkgd-03.png deleted file mode 100644 index 49a011e84..000000000 Binary files a/data/images/themes/darkstone/bkgd-03.png and /dev/null differ diff --git a/data/images/themes/darkstone/bkgd-10.png b/data/images/themes/darkstone/bkgd-10.png deleted file mode 100644 index cd6e20256..000000000 Binary files a/data/images/themes/darkstone/bkgd-10.png and /dev/null differ diff --git a/data/images/themes/darkstone/bkgd-11.png b/data/images/themes/darkstone/bkgd-11.png deleted file mode 100644 index 734bb814a..000000000 Binary files a/data/images/themes/darkstone/bkgd-11.png and /dev/null differ diff --git a/data/images/themes/darkstone/bkgd-12.png b/data/images/themes/darkstone/bkgd-12.png deleted file mode 100644 index 9ba20d7c9..000000000 Binary files a/data/images/themes/darkstone/bkgd-12.png and /dev/null differ diff --git a/data/images/themes/darkstone/bkgd-13.png b/data/images/themes/darkstone/bkgd-13.png deleted file mode 100644 index c642394cf..000000000 Binary files a/data/images/themes/darkstone/bkgd-13.png and /dev/null differ diff --git a/data/images/themes/darkstone/brick0.png b/data/images/themes/darkstone/brick0.png deleted file mode 100644 index bc11142f5..000000000 Binary files a/data/images/themes/darkstone/brick0.png and /dev/null differ diff --git a/data/images/themes/darkstone/brick1.png b/data/images/themes/darkstone/brick1.png deleted file mode 100644 index 32c9545c6..000000000 Binary files a/data/images/themes/darkstone/brick1.png and /dev/null differ diff --git a/data/images/themes/darkstone/solid0.png b/data/images/themes/darkstone/solid0.png deleted file mode 100644 index 640c1bab5..000000000 Binary files a/data/images/themes/darkstone/solid0.png and /dev/null differ diff --git a/data/images/themes/darkstone/solid1.png b/data/images/themes/darkstone/solid1.png deleted file mode 100644 index d6ebcb325..000000000 Binary files a/data/images/themes/darkstone/solid1.png and /dev/null differ diff --git a/data/images/themes/darkstone/solid2.png b/data/images/themes/darkstone/solid2.png deleted file mode 100644 index 95db64a12..000000000 Binary files a/data/images/themes/darkstone/solid2.png and /dev/null differ diff --git a/data/images/themes/darkstone/solid3.png b/data/images/themes/darkstone/solid3.png deleted file mode 100644 index 0455f9f78..000000000 Binary files a/data/images/themes/darkstone/solid3.png and /dev/null differ diff --git a/data/images/tilesets/box-empty.png b/data/images/tilesets/box-empty.png deleted file mode 100644 index 814ed5773..000000000 Binary files a/data/images/tilesets/box-empty.png and /dev/null differ diff --git a/data/images/tilesets/box-full.png b/data/images/tilesets/box-full.png deleted file mode 100644 index 0922be015..000000000 Binary files a/data/images/tilesets/box-full.png and /dev/null differ diff --git a/data/images/tilesets/distro-0.png b/data/images/tilesets/distro-0.png deleted file mode 100644 index a0f1b5ddc..000000000 Binary files a/data/images/tilesets/distro-0.png and /dev/null differ diff --git a/data/images/tilesets/distro-1.png b/data/images/tilesets/distro-1.png deleted file mode 100644 index ae606ed14..000000000 Binary files a/data/images/tilesets/distro-1.png and /dev/null differ diff --git a/data/images/tilesets/distro-2.png b/data/images/tilesets/distro-2.png deleted file mode 100644 index 89922def0..000000000 Binary files a/data/images/tilesets/distro-2.png and /dev/null differ diff --git a/data/images/tilesets/distro-3.png b/data/images/tilesets/distro-3.png deleted file mode 100644 index 888cf6095..000000000 Binary files a/data/images/tilesets/distro-3.png and /dev/null differ diff --git a/data/images/tilesets/flag-0.png b/data/images/tilesets/flag-0.png deleted file mode 100644 index f753a1bdf..000000000 Binary files a/data/images/tilesets/flag-0.png and /dev/null differ diff --git a/data/images/tilesets/flag-1.png b/data/images/tilesets/flag-1.png deleted file mode 100644 index c8b6b3e37..000000000 Binary files a/data/images/tilesets/flag-1.png and /dev/null differ diff --git a/data/images/title/title-anim1.png b/data/images/title/title-anim1.png deleted file mode 100644 index 4d861c54c..000000000 Binary files a/data/images/title/title-anim1.png and /dev/null differ diff --git a/data/images/title/title-anim2.png b/data/images/title/title-anim2.png deleted file mode 100644 index 16e6ce645..000000000 Binary files a/data/images/title/title-anim2.png and /dev/null differ diff --git a/data/images/title/title.png b/data/images/title/title.png deleted file mode 100644 index 1fb66a176..000000000 Binary files a/data/images/title/title.png and /dev/null differ diff --git a/data/images/worldmap/messagedot.png b/data/images/worldmap/messagedot.png deleted file mode 100644 index c450ae12e..000000000 Binary files a/data/images/worldmap/messagedot.png and /dev/null differ diff --git a/data/images/worldmap/road_cross.png b/data/images/worldmap/road_cross.png deleted file mode 100644 index 07c59f1d8..000000000 Binary files a/data/images/worldmap/road_cross.png and /dev/null differ diff --git a/data/images/worldmap/road_end.png b/data/images/worldmap/road_end.png deleted file mode 100644 index 1f28ea28d..000000000 Binary files a/data/images/worldmap/road_end.png and /dev/null differ diff --git a/data/images/worldmap/road_h.png b/data/images/worldmap/road_h.png deleted file mode 100644 index 675af3203..000000000 Binary files a/data/images/worldmap/road_h.png and /dev/null differ diff --git a/data/images/worldmap/road_h_stop.png b/data/images/worldmap/road_h_stop.png deleted file mode 100644 index 101da1f67..000000000 Binary files a/data/images/worldmap/road_h_stop.png and /dev/null differ diff --git a/data/images/worldmap/road_v.png b/data/images/worldmap/road_v.png deleted file mode 100644 index 1dead3bfb..000000000 Binary files a/data/images/worldmap/road_v.png and /dev/null differ diff --git a/data/images/worldmap/road_v_stop.png b/data/images/worldmap/road_v_stop.png deleted file mode 100644 index 043a5cd22..000000000 Binary files a/data/images/worldmap/road_v_stop.png and /dev/null differ diff --git a/data/images/worldmap/road_ws.png b/data/images/worldmap/road_ws.png deleted file mode 100644 index 3f9a888ed..000000000 Binary files a/data/images/worldmap/road_ws.png and /dev/null differ