예제 #1
0
    def _configure(self):
        super(KanoWorldQuest, self)._configure()
        self._id = 'travel-to-kano-world'
        self._title = _("Travel to Kano World")
        self._description = """
Godard distillery bitters dreamcatcher butcher, pop-up irony Austin scenester
narwhal retro raw denim. Irony pork belly slow-carb seitan Austin. Mlkshk
plaid Neutra, quinoa tattooed bitters Odd Future paleo Helvetica next level
crucifix High Life flannel VHS. Pour-over Austin paleo umami. Deep v small
batch mustache, fap polaroid try-hard biodiesel dreamcatcher wayfarers butcher
Schlitz you probably haven't heard of them. Odd Future lumbersexual umami
hella fap you probably haven't heard of them American Apparel, paleo wolf
whatever readymade farm-to-table. Thundercats Pitchfork brunch drinking
vinegar, four loko fashion axe polaroid freegan trust fund scenester meggings
semiotics keytar vegan."""

        self._icon = quest_media(__file__, 'quest-icon.svg')
        self._fulfilled_icon = quest_media(__file__,
                                           'quest-icon-completed.svg')

        self._steps = [Step1(), Step2(), Step3()]
        self._rewards = [
            WorldExplorerBadge(),
            # SpaceSuit(),
            XP(50)
        ]
        self._depends = []
예제 #2
0
    def _configure(self):
        super(HackInternetQuest, self)._configure()
        self._id = 'hack-the-internet'
        self._title = 'Hack the internet'
        self._description = """
Godard distillery bitters dreamcatcher butcher, pop-up irony Austin scenester
narwhal retro raw denim. Irony pork belly slow-carb seitan Austin. Mlkshk
plaid Neutra, quinoa tattooed bitters Odd Future paleo Helvetica next level
crucifix High Life flannel VHS. Pour-over Austin paleo umami. Deep v small
batch mustache, fap polaroid try-hard biodiesel dreamcatcher wayfarers butcher
Schlitz you probably haven't heard of them. Odd Future lumbersexual umami
hella fap you probably haven't heard of them American Apparel, paleo wolf
whatever readymade farm-to-table. Thundercats Pitchfork brunch drinking
vinegar, four loko fashion axe polaroid freegan trust fund scenester meggings
semiotics keytar vegan."""

        self._icon = quest_media(__file__, 'quest-icon.svg')
        self._fulfilled_icon = quest_media(__file__, 'quest-icon-completed.svg')

        self._steps = [
            Step1(),
            Step2()
        ]
        self._rewards = [
            HackerBadge(),
            XP(150)
        ]
        self._depends = [
            'travel-to-kano-world'
        ]
예제 #3
0
    def _configure(self):
        super(HackerBadge, self)._configure()

        self._id = 'hack-the-internet'
        self._title = title = 'Hipster Hacker'
        self._icon = quest_media(__file__, 'badge.svg')

        self._desc_locked = title
        self._desc_unlocked = 'You did it!'
        self._bg_color = 'ffe591'
        self._image = self._icon
        self._image_locked = self._icon

        n = self._notification
        n['title'] = title
        n['byline'] = 'You made it to Kano World!'
        n['command'] = 'kano-profile badges'
        n['image'] = quest_media(__file__, 'badge-notification.png')
예제 #4
0
    def _configure(self):
        super(WorldExplorerBadge, self)._configure()

        self._id = 'world-explorer'
        self._title = title = _("World Explorer")
        self._icon = quest_media(__file__, 'badge.svg')

        self._desc_locked = title
        self._desc_unlocked = _("You discovered Kano World!")
        self._bg_color = 'ffe591'
        self._image = self._icon
        self._image_locked = self._icon

        n = self._notification
        n['title'] = title
        n['byline'] = _("You made it to Kano World!")
        n['command'] = 'kano-profile badges'
        n['image'] = quest_media(__file__, 'badge-notification.png')
예제 #5
0
    def _configure(self):
        super(WorldExplorerBadge, self)._configure()

        self._id = 'world-explorer'
        self._title = title = _("World Explorer")
        self._icon = quest_media(__file__, 'badge.svg')

        self._desc_locked = title
        self._desc_unlocked = _("You discovered Kano World!")
        self._bg_color = 'ffe591'
        self._image = self._icon
        self._image_locked = self._icon

        n = self._notification
        n['title'] = title
        n['byline'] = _("You made it to Kano World!")
        n['command'] = 'kano-profile badges'
        n['image'] = quest_media(__file__, 'badge-notification.png')
예제 #6
0
    def _configure(self):
        super(HackerBadge, self)._configure()

        self._id = 'hack-the-internet'
        self._title = title = _("Hipster Hacker")
        self._icon = quest_media(__file__, 'badge.svg')

        self._desc_locked = title
        self._desc_unlocked = _("You did it!")
        self._bg_color = 'ffe591'
        self._image = self._icon
        self._image_locked = self._icon

        n = self._notification
        n['title'] = title
        n['byline'] = _("You made it to Kano World!")
        n['command'] = 'kano-profile badges'
        n['image'] = quest_media(__file__, 'badge-notification.png')
예제 #7
0
    def _configure(self):
        super(WorldExplorerBadge, self)._configure()

        self._id = "world-explorer"
        self._title = title = "World Explorer"
        self._icon = quest_media(__file__, "badge.svg")

        self._desc_locked = title
        self._desc_unlocked = "You discovered Kano World!"
        self._bg_color = "ffe591"
        self._image = self._icon
        self._image_locked = self._icon

        n = self._notification
        n["title"] = title
        n["byline"] = "You made it to Kano World!"
        n["command"] = "kano-profile badges"
        n["image"] = quest_media(__file__, "badge-notification.png")