diff --git a/aliens.py b/aliens.py index a8f2aa8..4beb2c7 100644 --- a/aliens.py +++ b/aliens.py @@ -22,19 +22,19 @@ def alien_table(index): def image_display(index): return { - 0: "res/omnitrix.png", - 1: "res/heatblast.png", - 2: "res/nasaSquare.png", - 3: "res/????.jpg", - 4: "res/energy-momentum-relation-equation-epc.jpg", - 5: "res/em1_patch_final.png", - 6: "res/artemis.png", - 7: "XLR8", - 8: "Grey Matter", - 9: "Wildmutt", - 10: "Ghostfreak", - 11: "Wildvine", - 12: "Heatblast", + 0: "res/Omnitrix.png", + 1: "res/Heatblast.png", + 2: "res/", + 3: "res/", + 4: "res/", + 5: "res/", + 6: "res/", + 7: "res/", + 8: "res/", + 9: "res/", + 10: "res/Ghostfreak.png", + 11: "res/", + 12: "res/", # TODO: Add more aliens # TODO: Add proper alien silhouettes }.get(index, "res/omnitrix.png") diff --git a/ben10.py b/ben10.py index 0c4bfb8..021209a 100644 --- a/ben10.py +++ b/ben10.py @@ -14,7 +14,7 @@ root.rowconfigure(1, weight=1) # root window parameters -path = "res/omnitrix.png" +path = "res/Omnitrix.png" img = ImageTk.PhotoImage(Image.open(path)) omnitrix_button = Button(root, bg="#70b607", image=img, activebackground='#70b607', highlightthickness=0, bd=0, command=button_press) diff --git a/res/Ghostfreak.png b/res/Ghostfreak.png new file mode 100644 index 0000000..ec77b76 Binary files /dev/null and b/res/Ghostfreak.png differ diff --git a/res/heatblast.png b/res/Heatblast.png similarity index 100% rename from res/heatblast.png rename to res/Heatblast.png diff --git a/res/omnitrix.png b/res/Omnitrix.png similarity index 100% rename from res/omnitrix.png rename to res/Omnitrix.png