omnitrix-app/aliens.py

28 lines
584 B
Python
Raw Permalink Normal View History

2021-04-27 22:27:25 -04:00
def alien_table(index):
return {
2021-04-27 22:40:12 -04:00
0: "Omnitrix",
2021-05-01 19:11:47 -04:00
1: "Heatblast",
2021-04-27 22:27:25 -04:00
2: "Ripjaws",
3: "Diamondhead",
4: "Stinkfly",
2021-05-01 21:51:56 -04:00
5: "Four Arms",
2021-04-27 22:27:25 -04:00
6: "Upgrade",
7: "XLR8",
8: "Grey Matter",
9: "Wildmutt",
10: "Ghostfreak",
11: "Wildvine",
2021-05-01 19:11:47 -04:00
12: "Cannonbolt",
2021-05-01 21:51:56 -04:00
13: "Upchuck",
14: "Way Big",
15: "Eye Guy",
16: "Snare-oh",
17: "Ditto",
18: "Frankenstrike",
19: "Blitzwolfer",
2021-05-03 19:25:36 -04:00
2021-05-02 00:23:48 -04:00
}.get(index, 0)
2021-05-03 19:25:36 -04:00
# list of aliens program can displays