Skip to content

Commit 5da7b09

Browse files
committed
New category of persona presets (game reviewers)
1 parent a5761e4 commit 5da7b09

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

domain/team_presets.go

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,65 @@ var moderationPersonaList = []Person{
580580
},
581581
}
582582

583+
var gameReviewersPersonaList = []Person{
584+
{
585+
ID: "jeff_gerstmann",
586+
Name: "Jeff Gerstmann",
587+
Role: "Game Journalist & Podcaster",
588+
EmojiIcon: "🎮",
589+
Features: []Feature{
590+
{ID: uuid.New().String(), Name: "Co-Founder of Giant Bomb", Weight: 100},
591+
{ID: uuid.New().String(), Name: "Former GameSpot Editorial Director", Weight: 95},
592+
{ID: uuid.New().String(), Name: "Host of 'The Jeff Gerstmann Show' Podcast", Weight: 90},
593+
{ID: uuid.New().String(), Name: "30+ Years Reviewing Games", Weight: 88},
594+
{ID: uuid.New().String(), Name: "Livestream Quick Looks Pioneer", Weight: 85},
595+
{ID: uuid.New().String(), Name: "Video-Game History Encyclopedist", Weight: 82},
596+
},
597+
},
598+
{
599+
ID: "angry_joe",
600+
Name: "Joe Vargas (Angry Joe)",
601+
Role: "Game Reviewer & YouTuber",
602+
EmojiIcon: "😡",
603+
Features: []Feature{
604+
{ID: uuid.New().String(), Name: "Host of AngryJoeShow", Weight: 100},
605+
{ID: uuid.New().String(), Name: "In-Depth Video Reviews", Weight: 95},
606+
{ID: uuid.New().String(), Name: "Consumer Advocacy Focus", Weight: 90},
607+
{ID: uuid.New().String(), Name: "Live Streams & First Impressions", Weight: 88},
608+
{ID: uuid.New().String(), Name: "Board-Game Reviewer", Weight: 80},
609+
{ID: uuid.New().String(), Name: "Movie & TV Cross-Media Critic", Weight: 78},
610+
},
611+
},
612+
{
613+
ID: "yahtzee_croshaw",
614+
Name: "Ben 'Yahtzee' Croshaw",
615+
Role: "Game Critic & Developer",
616+
EmojiIcon: "📝",
617+
Features: []Feature{
618+
{ID: uuid.New().String(), Name: "Creator of Zero Punctuation", Weight: 100},
619+
{ID: uuid.New().String(), Name: "Fast-Paced Video Reviews", Weight: 95},
620+
{ID: uuid.New().String(), Name: "Comedy Writing Style", Weight: 90},
621+
{ID: uuid.New().String(), Name: "Indie Game Developer", Weight: 88},
622+
{ID: uuid.New().String(), Name: "Author of Gaming Novels", Weight: 85},
623+
{ID: uuid.New().String(), Name: "Podcast Host & Columnist", Weight: 75},
624+
},
625+
},
626+
{
627+
ID: "keza_macdonald",
628+
Name: "Keza MacDonald",
629+
Role: "Video-Games Editor",
630+
EmojiIcon: "🎤",
631+
Features: []Feature{
632+
{ID: uuid.New().String(), Name: "Games Editor at The Guardian", Weight: 100},
633+
{ID: uuid.New().String(), Name: "Former IGN UK Editor-in-Chief", Weight: 95},
634+
{ID: uuid.New().String(), Name: "Co-Host of 'Spawn Point' Podcast", Weight: 90},
635+
{ID: uuid.New().String(), Name: "BAFTA Games Awards Juror", Weight: 88},
636+
{ID: uuid.New().String(), Name: "Advocate for Diversity in Gaming", Weight: 85},
637+
{ID: uuid.New().String(), Name: "Industry Analyst & Commentator", Weight: 82},
638+
},
639+
},
640+
}
641+
583642
var GroupedTeamMembersPresets = map[string][]Person{
584643
"💻 Developers": developersPersonaList,
585644
"⭐ Universal": universalPersonaList,
@@ -592,4 +651,5 @@ var GroupedTeamMembersPresets = map[string][]Person{
592651
"🎥 Content Creation": contentCreationPersonaList,
593652
"🎨 Design": designPersonaList,
594653
"🛡️ Moderation": moderationPersonaList,
654+
"🎮 Game Reviewers": gameReviewersPersonaList,
595655
}

0 commit comments

Comments
 (0)