Skip to content

Commit

Permalink
Remove youtube quest
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinludu committed Dec 6, 2024
1 parent 920a6ab commit fcbffc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ import type { ReactNode } from 'react';
export const QuestIcon: Record<QuestType, ReactNode> = {
'follow-x-account': <XIcon fontSize='large' />,
'share-x-channel': <XIcon fontSize='large' />,
'watch-gameplay-video': <PlayCircleOutlineIcon fontSize='large' />,
'invite-friend': <Image src='/images/friends-icon.svg' alt='Friends icon' width={35} height={35} />
};
10 changes: 2 additions & 8 deletions packages/scoutgame/src/quests/questRecords.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type QuestRecord = {
link?: string;
};

export type QuestType = 'follow-x-account' | 'share-x-channel' | 'watch-gameplay-video' | 'invite-friend';
export type QuestType = 'follow-x-account' | 'share-x-channel' | 'invite-friend';

export type QuestInfo = {
type: QuestType;
Expand All @@ -24,14 +24,8 @@ export const questsRecord: Record<QuestType, QuestRecord> = {
"I'm playing @scoutgamexyz on Telegram! 🕹️ Come join me, play in the channel, and discover top builders while earning points and rewards. Let’s scout together! 👉 https://t.me/+J0dl4_uswBY2NTkx #PlayAndEarn"
)}`
},
'watch-gameplay-video': {
points: 50,
label: 'Watch game play video',
link: 'https://www.youtube.com/@scoutgamexyz'
},
'invite-friend': {
points: 5,
label: 'Invite a friend',
link: '/friends'
label: 'Invite a friend'
}
};

0 comments on commit fcbffc9

Please sign in to comment.