-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappids.py
29 lines (23 loc) · 919 Bytes
/
appids.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Objective: list appID of examples of "hidden gems"
# This is the appID of the game called "Contradiction".
appidContradiction = "373390" # Contradiction - Spot The Liar!
# This is a set including appID of games which will serve as references of "hidden gems".
# Reference: http://www.neogaf.com/forum/showpost.php?p=241232835&postcount=5886
appid_hidden_gems_reference_set = {
appidContradiction, # Contradiction - Spot The Liar!
"320090", # This Starry Midnight We Make
"363980", # Forget Me Not: My Organic Garden
"561740", # MidBoss
"333300", # ADOM (Ancient Domains Of Mystery)
"329970", # KeeperRL
"323220", # Vagante
"534290", # Cursed Castilla (Maldita Castilla EX)
"440880", # The Count Lucanor
"402040", # The Guest
"233980", # UnEpic
}
def main():
print(appid_hidden_gems_reference_set)
return True
if __name__ == "__main__":
main()