diff --git a/aliens.py b/aliens.py index 4beb2c7..a666890 100644 --- a/aliens.py +++ b/aliens.py @@ -7,7 +7,7 @@ def alien_table(index): 2: "Ripjaws", 3: "Diamondhead", 4: "Stinkfly", - 5: "Fourarms", + 5: "Four Arms", 6: "Upgrade", 7: "XLR8", 8: "Grey Matter", @@ -15,6 +15,13 @@ def alien_table(index): 10: "Ghostfreak", 11: "Wildvine", 12: "Cannonbolt", + 13: "Upchuck", + 14: "Way Big", + 15: "Eye Guy", + 16: "Snare-oh", + 17: "Ditto", + 18: "Frankenstrike", + 19: "Blitzwolfer", # TODO: Add more aliens }.get(index, "ERROR") @@ -24,17 +31,24 @@ def image_display(index): 0: "res/Omnitrix.png", 1: "res/Heatblast.png", - 2: "res/", - 3: "res/", - 4: "res/", - 5: "res/", - 6: "res/", - 7: "res/", - 8: "res/", - 9: "res/", + 2: "res/ripJaws.png", + 3: "res/Diamondhead.png", + 4: "res/Stinkfly.png", + 5: "res/Four Arms.png", + 6: "res/Upgrade.png", + 7: "res/XLR8.png", + 8: "res/Grey Matter.png", + 9: "res/Wildmutt.png", 10: "res/Ghostfreak.png", - 11: "res/", - 12: "res/", + 11: "res/Wildvine.png", + 12: "res/Cannonbolt.png", + 13: "res/Upchuck.png", + 14: "res/Way Big.png", + 15: "res/Eye Guy.png", + 16: "res/Snare-oh.png", + 17: "res/Ditto.png", + 18: "res/Frankenstrike.png", + 19: "res/Blitzwolfer.png", # TODO: Add more aliens # TODO: Add proper alien silhouettes }.get(index, "res/omnitrix.png") diff --git a/res/Blitzwolfer.png b/res/Blitzwolfer.png new file mode 100644 index 0000000..990ce0f Binary files /dev/null and b/res/Blitzwolfer.png differ diff --git a/res/Cannonbolt.png b/res/Cannonbolt.png new file mode 100644 index 0000000..2c1883d Binary files /dev/null and b/res/Cannonbolt.png differ diff --git a/res/Diamondhead.png b/res/Diamondhead.png new file mode 100644 index 0000000..2d0ec19 Binary files /dev/null and b/res/Diamondhead.png differ diff --git a/res/Ditto.png b/res/Ditto.png new file mode 100644 index 0000000..c01e3c4 Binary files /dev/null and b/res/Ditto.png differ diff --git a/res/Eye Guy.png b/res/Eye Guy.png new file mode 100644 index 0000000..47bbeb3 Binary files /dev/null and b/res/Eye Guy.png differ diff --git a/res/Four Arms.png b/res/Four Arms.png new file mode 100644 index 0000000..66aa97c Binary files /dev/null and b/res/Four Arms.png differ diff --git a/res/Frankenstrike.png b/res/Frankenstrike.png new file mode 100644 index 0000000..037abc4 Binary files /dev/null and b/res/Frankenstrike.png differ diff --git a/res/Grey Matter.png b/res/Grey Matter.png new file mode 100644 index 0000000..5eaf38a Binary files /dev/null and b/res/Grey Matter.png differ diff --git a/res/Snare-oh.png b/res/Snare-oh.png new file mode 100644 index 0000000..9218fde Binary files /dev/null and b/res/Snare-oh.png differ diff --git a/res/Stinkfly.png b/res/Stinkfly.png new file mode 100644 index 0000000..c3086c8 Binary files /dev/null and b/res/Stinkfly.png differ diff --git a/res/Upchuck.png b/res/Upchuck.png new file mode 100644 index 0000000..ab31652 Binary files /dev/null and b/res/Upchuck.png differ diff --git a/res/Upgrade.png b/res/Upgrade.png new file mode 100644 index 0000000..01b799c Binary files /dev/null and b/res/Upgrade.png differ diff --git a/res/Way Big.png b/res/Way Big.png new file mode 100644 index 0000000..c145731 Binary files /dev/null and b/res/Way Big.png differ diff --git a/res/Wildmutt.png b/res/Wildmutt.png new file mode 100644 index 0000000..900bc0a Binary files /dev/null and b/res/Wildmutt.png differ diff --git a/res/Wildvine.png b/res/Wildvine.png new file mode 100644 index 0000000..29141b0 Binary files /dev/null and b/res/Wildvine.png differ diff --git a/res/XLR8.png b/res/XLR8.png new file mode 100644 index 0000000..c088c0b Binary files /dev/null and b/res/XLR8.png differ diff --git a/res/all.jpg b/res/all.jpg new file mode 100644 index 0000000..5cf54eb Binary files /dev/null and b/res/all.jpg differ diff --git a/res/ripJaws.png b/res/ripJaws.png new file mode 100644 index 0000000..21c185d Binary files /dev/null and b/res/ripJaws.png differ