diff options
| author | 2022-05-09 18:21:21 +0200 | |
|---|---|---|
| committer | 2022-05-09 18:21:21 +0200 | |
| commit | 019983c3785191a0c7182c62394cec2bac123d51 (patch) | |
| tree | 54c296bd04a13a0097cbd7249b78a6716556d735 /bot/exts/fun/game.py | |
| parent | Doublefixed indentation and removed unused import. (diff) | |
| parent | Bump pillow from 9.0.0 to 9.0.1 (#1045) (diff) | |
Merge branch 'main' into uwu
Diffstat (limited to 'bot/exts/fun/game.py')
| -rw-r--r-- | bot/exts/fun/game.py | 32 | 
1 files changed, 32 insertions, 0 deletions
| diff --git a/bot/exts/fun/game.py b/bot/exts/fun/game.py index f9c150e6..5f56bef7 100644 --- a/bot/exts/fun/game.py +++ b/bot/exts/fun/game.py @@ -118,6 +118,7 @@ class GameStatus(IntEnum):      Offline = 5      Cancelled = 6      Rumored = 7 +    Delisted = 8  class AgeRatingCategories(IntEnum): @@ -125,6 +126,11 @@ class AgeRatingCategories(IntEnum):      ESRB = 1      PEGI = 2 +    CERO = 3 +    USK = 4 +    GRAC = 5 +    CLASS_IND = 6 +    ACB = 7  class AgeRatings(IntEnum): @@ -142,6 +148,32 @@ class AgeRatings(IntEnum):      T = 10      M = 11      AO = 12 +    CERO_A = 13 +    CERO_B = 14 +    CERO_C = 15 +    CERO_D = 16 +    CERO_Z = 17 +    USK_0 = 18 +    USK_6 = 19 +    USK_12 = 20 +    USK_18 = 21 +    GRAC_ALL = 22 +    GRAC_Twelve = 23 +    GRAC_Fifteen = 24 +    GRAC_Eighteen = 25 +    GRAC_TESTING = 26 +    CLASS_IND_L = 27 +    CLASS_IND_Ten = 28 +    CLASS_IND_Twelve = 29 +    CLASS_IND_Fourteen = 30 +    CLASS_IND_Sixteen = 31 +    CLASS_IND_Eighteen = 32 +    ACB_G = 33 +    ACB_PG = 34 +    ACB_M = 35 +    ACB_MA15 = 36 +    ACB_R18 = 37 +    ACB_RC = 38  class Games(Cog): | 
