Skip to content

Commit

Permalink
ADD Myth category
Browse files Browse the repository at this point in the history
  • Loading branch information
rubysdeadname committed May 27, 2021
1 parent 6e7a099 commit 0452e6b
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
1 change: 1 addition & 0 deletions qual_id/categories/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
from .instrument import Instrument
from .language import Language
from .music import Music
from .myth import Myth
from .operatingsystem import OperatingSystem
from .particle import Particle
from .pasta import Pasta
Expand Down
33 changes: 33 additions & 0 deletions qual_id/categories/myth.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
from .category import Category


class Myth(Category):
_name = "myth"
_values = [
"banshee",
"bigfoot",
"centaur",
"cyclops",
"dragon",
"dybbuk",
"fairy",
"faun",
"gnome",
"goblin",
"golem",
"gorgon",
"griffin",
"hydra",
"leprechaun",
"mermaid",
"minotaur",
"nymph",
"ogre",
"phoenix",
"sasquatch",
"unicorn",
"vampire",
"werewolf",
"yeti",
"zombie",
]
1 change: 1 addition & 0 deletions qual_id/groups/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class All(Group):
Instrument,
Language,
Music,
Myth,
OperatingSystem,
Particle,
Pasta,
Expand Down

0 comments on commit 0452e6b

Please sign in to comment.