HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<div id="app">
<v-app>
<v-container>
<v-card>
<v-card-title>
<v-spacer></v-spacer>
<v-text-field v-model="search" append-icon="mdi-magnify" label="Search" single-line hide-details></v-text-field>
</v-card-title>
<v-card-text>
<v-data-table :search="search" :headers="headers" :items="JackboxGames" :items-per-page="-1" sort-by="title" show-expand>
<template #item.title="{item}">
<a :href="item.url" target="_blank" rel="noreferrer noopener" class="title">
{{item.title}}
</a>
<div v-if="$vuetify.breakpoint.smAndUp">
<v-btn color="success" target="_blank" :href="getSteamLink(item)" x-small>launch {{getProgramName(item.pack)}}</v-btn>
</div>
</template>
<template #item.family_mode="{item}">
<v-icon :class="checkboxColor(item.family_mode)">{{checkbox(item.family_mode)}}</v-icon>
</template>
<template #item.audience="{item}">
<v-icon :class="checkboxColor(item.audience)">{{checkbox(item.audience)}}</v-icon>
</template>
<template #item.drawing="{item}">
<v-icon :class="checkboxColor(item.drawing)">{{checkbox(item.drawing)}}</v-icon>
</template>
<template v-slot:expanded-item="{ headers, item }">
<td :colspan="headers.length">
<v-row>
<v-col cols="12" sm="6">
<a :href="item.url" target="_blank" rel="noreferrer noopener">
<img :src="getImgURL(item)" :alt="item.title">
</a>
</v-col>
<v-col cols="12" sm="6">
<p>
{{item.description}}
</p>
</v-col>
</v-row>
</td>
</template>
</v-data-table>
</v-card-text>
</v-card>
</v-container>
</v-app>
</div>
const ASSET = (file) => `https://assets.codepen.io/729148/${file}?width=300&height=137&format=auto&fit=pad`;
const ASSETS='';
const GAMES = {
1: "JPP1",
2: "JPP2",
3: "JPP3",
4: "JPP4",
5: "JPP5",
6: "JPP6",
7: "JPP7",
8: "JPP8",
9: "JPP9",
drawful2: "Drawful 2",
};
const STEAM_ID = {
1:"331670",
2:"397460",
3:"434170",
4:"610180",
5:"774461",
6:"1005300",
7:"1211630",
8:"1552350",
9:"1850960",
drawful2:"442070",
}
var app = new Vue({
el: "#app",
vuetify: new Vuetify({
icons: {
iconfont: "mdi"
}
}),
data() {
return {
search: "",
headers: [
{ text: "Name", value: "title" },
{ text: "Min Players", value: "min_players" },
{ text: "Max Players", value: "max_players" },
{ text: "Family Mode", value: "family_mode" },
{ text: "Audience", value: "audience" },
{ text: "Drawing", value: "drawing" },
{ text: "Game Length", value: "game_length" }
],
JackboxGames: jackboxData()
};
},
methods: {
checkbox(value) {
console.log(value);
return value ? "mdi-check-outline" : "mdi-close-outline";
},
checkboxColor(value) {
return value ? "success--text" : "error--text";
},
getProgramName(pack) {
return GAMES[pack];
},
getSteamLink(item) {
return 'steam://run/'+ STEAM_ID[item.pack];
},
getImgURL(item) {
return ASSET(item.img);
}
}
});
function jackboxData() {
return [
{
id: 1,
title: "You Don't Know Jack 2015",
pack: 1,
min_players: 1,
max_players: 4,
extended_timers: false,
img: `ydkj2015.jpg`,
family_mode: false,
audience: false,
drawing: false,
game_length: 20,
steam_id: 331670,
url: "https://jackboxgames.com/ydkj-2015",
description:
"The comedy trivia sensation returns with hundreds of new questions that you can tackle on a night in by yourself or when you’re joined by friends."
},
{
id: 2,
title: "Fibbage XL",
pack: 1,
min_players: 2,
max_players: 8,
extended_timers: false,
img: `fibbagexl.jpg`,
family_mode: false,
audience: false,
drawing: false,
game_length: 20,
steam_id: 331670,
url: "https://jackboxgames.com/fibbage-xl",
description:
"The hilarious bluffing game now has 50% more questions added to the original hit game, Fibbage. Convince your friends that you know the answers to odd trivia questions OR aim to win the Thumbs Cup with the funniest answer."
},
{
id: 3,
title: "Drawful",
pack: 1,
min_players: 3,
max_players: 8,
extended_timers: false,
img: `drawful.jpg`,
family_mode: false,
audience: false,
drawing: true,
game_length: 20,
steam_id: 331670,
url: "https://jackboxgames.com/drawful",
description:
"The first installment of the wildly popular drawing game allows you to draw bizarre doodles on your phone or tablet."
},
{
id: 4,
title: "Word Spud",
pack: 1,
min_players: 2,
max_players: 8,
extended_timers: false,
img: `word.jpg`,
family_mode: false,
audience: false,
drawing: false,
steam_id: 331670,
url: "https://jackboxgames.com/word-spud",
description:
"Test your vocabulary chops in the racy-as-you-want-it-to-be fill-in-the-blank word game."
},
{
id: 5,
title: "Lie Swatter",
pack: 1,
min_players: 1,
max_players: 100,
extended_timers: false,
img: `lie.jpg`,
family_mode: false,
audience: false,
drawing: false,
steam_id: 331670,
url: "https://jackboxgames.com/lie-swatter",
description:
"Need a game for a big group? Grab yourself or a crowd and play true-or-false with a timer. Don’t get swatted in this wacky fact-filled game! Grab the original Jackbox Party Pack to experience the storied Jackbox Games franchises in their first form."
},
{
id: 6,
title: "Fibbage 2",
pack: 2,
min_players: 2,
max_players: 8,
extended_timers: true,
img: `fibbage2.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 20,
steam_id: 397460,
url: "https://jackboxgames.com/fibbage-two",
description:
"The runaway hit bluffing game with over 500 brand-new questions, more than 2x the original! Plus new features, like the deFIBrillator!"
},
{
id: 7,
title: "Earwax",
pack: 2,
min_players: 3,
max_players: 8,
extended_timers: false,
img: `ear.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 20,
steam_id: 397460,
url: "https://jackboxgames.com/earwax",
description:
"The hear-larious sound-effects game that will leave you up to your ears in laughter! Cow moo? Huge explosion? Or tiny fart? Which to choose?"
},
{
id: 8,
title: "Bidiots",
pack: 2,
min_players: 3,
max_players: 6,
extended_timers: false,
img: `bid.jpg`,
family_mode: false,
audience: false,
drawing: true,
game_length: 20,
steam_id: 397460,
url: "https://jackboxgames.com/bidiots",
description:
"The absurd art auction game where you draw right there on your phone or tablet. Outbid your opponents for weird art pieces – drawn by players themselves – and win this strangely competitive auction game! Don’t be a bidiot!"
},
{
id: 9,
title: "Quiplash XL",
pack: 2,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `quipxl.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 20,
steam_id: 397460,
url: "https://jackboxgames.com/quiplash-xl",
description:
"The say-anything, gut-busting Quiplash XL (3-8 players), which includes everything in Quiplash, Quip Pack 1, AND over 100 brand-new prompts!"
},
{
id: 10,
title: "Bomb Corp.",
pack: 2,
min_players: 1,
max_players: 4,
extended_timers: false,
img: `bomb.jpg`,
family_mode: false,
audience: false,
drawing: false,
game_length: 20,
steam_id: 397460,
url: "https://jackboxgames.com/bomb-corp",
description:
"The bomb-defusing nailbiter of a party game! As interns at Bomb Corp., you must defuse random bombs in the office in order to keep your jobs. You’ll probably die, but it’ll be good work experience!"
},
{
id: 11,
title: "Quiplash 2",
pack: 3,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `quip2.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 15,
steam_id: 434170,
url: "https://jackboxgames.com/quiplash-two",
description:
"The say-anything sequel. Play all new questions or make your own!"
},
{
id: 12,
title: "Trivia Murder Party",
pack: 3,
min_players: 1,
max_players: 8,
extended_timers: true,
img: `tmp.jpg`,
family_mode: false,
audience: true,
drawing: true,
game_length: 20,
steam_id: 434170,
url: "https://jackboxgames.com/trivia-murder-party",
description:
"A deadly quiz show where you match wits with a trivia-obsessed killer."
},
{
id: 13,
title: "Guesspionage",
pack: 3,
min_players: 2,
max_players: 8,
extended_timers: false,
img: `guess.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 15,
steam_id: 434170,
url: "https://jackboxgames.com/guesspionage",
description: "The brain-battering data-mining guessing game."
},
{
id: 14,
title: "Tee K.O.",
pack: 3,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `teeko.jpg`,
family_mode: true,
audience: true,
drawing: true,
game_length: 30,
steam_id: 434170,
url: "https://jackboxgames.com/tee-ko",
description:
"The t-shirt slugfest where you battle your custom t-shirts to the death!"
},
{
id: 15,
title: "Fakin' It",
pack: 3,
min_players: 3,
max_players: 6,
extended_timers: false,
img: `fakin.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 20,
steam_id: 434170,
url: "https://jackboxgames.com/fakin-it",
description:
"One of your friends has something to hide in this sneaky game for tricksters."
},
{
id: 16,
title: "Fibbage 3",
pack: 4,
min_players: 2,
max_players: 8,
extended_timers: true,
img: `fibbage3.webp`,
family_mode: true,
audience: true,
drawing: false,
game_length: 20,
steam_id: 610180,
url: "https://jackboxgames.com/fibbage-three",
description:
"The blanking fun sequel with all-new question types and the game mode Fibbage: Enough About You where you guess the weird facts about your friends."
},
{
id: 17,
title: "Survive the Internet",
pack: 4,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `survive.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 20,
steam_id: 610180,
url: "https://jackboxgames.com/survive-the-internet",
description:
"The web-based frame game where you twist your friends’ “online” comments in hilarious ways."
},
{
id: 18,
title: "Monster Seeking Monster",
pack: 4,
min_players: 3,
max_players: 7,
extended_timers: true,
img: `monster.jpg`,
family_mode: false,
audience: true,
drawing: false,
game_length: 20,
steam_id: 610180,
url: "https://jackboxgames.com/monster-seeking-monster",
description:
"The spooky date-a-thon where you message and date fellow monsters with special powers."
},
{
id: 19,
title: "Bracketeering",
pack: 4,
min_players: 3,
max_players: 16,
extended_timers: true,
img: `bracket.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 20,
steam_id: 610180,
url: "https://jackboxgames.com/bracketeering",
description:
"The deranged debate match where you place smart bets on stupid arguments."
},
{
id: 20,
title: "Civic Doodle",
pack: 4,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `civic.jpg`,
family_mode: true,
audience: true,
drawing: true,
game_length: 20,
steam_id: 610180,
url: "https://jackboxgames.com/civic-doodle",
description:
"The one-up art game where you compete to improve the town murals."
},
{
id: 21,
title: "You Don't Know Jack: Full Stream",
pack: 5,
min_players: 1,
max_players: 8,
extended_timers: true,
img: `ydkjfs.png`,
family_mode: false,
audience: true,
drawing: false,
game_length: 20,
steam_id: 774461,
url: "https://jackboxgames.com/ydkj-full-stream",
description:
"The pop-culture trivia mash-up YOU DON’T KNOW JACK: Full Stream. The classic returns, full of wild new surprises."
},
{
id: 22,
title: "Split the Room",
pack: 5,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `split.png`,
family_mode: true,
audience: true,
drawing: false,
game_length: 15,
steam_id: 774461,
url: "https://jackboxgames.com/split-the-room",
description:
"The what-if game Split the Room. Create strange and divisive hypothetical situations."
},
{
id: 23,
title: "Mad Verse City",
pack: 5,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `mad.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 20,
steam_id: 774461,
url: "https://jackboxgames.com/mad-verse-city",
description:
"The lyric-writing game Mad Verse City. Channel your inner MC as a rap battling robot."
},
{
id: 24,
title: "Patently Stupid",
pack: 5,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `patently.png`,
family_mode: true,
audience: true,
drawing: true,
game_length: 20,
steam_id: 774461,
url: "https://jackboxgames.com/patently-stupid",
description:
"The competitive drawing game Patently Stupid. Create odd inventions to solve bizarre problems."
},
{
id: 25,
title: "Zeeple Dome",
pack: 5,
min_players: 1,
max_players: 6,
extended_timers: false,
img: `zeeple.jpg`,
family_mode: true,
audience: false,
drawing: false,
game_length: 10,
steam_id: 774461,
url: "https://jackboxgames.com/zeeple-dome",
description:
"The deadliest game show in the Crab Nebula, Zeeple Dome! Fling yourself at bloodthirsty aliens to win millions of Zubabucks!"
},
{
id: 26,
title: "Trivia Murder Party 2",
pack: 6,
min_players: 1,
max_players: 8,
extended_timers: true,
img: `tmp2.jpg`,
family_mode: false,
audience: true,
drawing: true,
game_length: 25,
steam_id: 1005300,
url: "https://jackboxgames.com/trivia-murder-party-two/",
description:
"The popular trivia deathmatch Trivia Murder Party 2. Try to survive the bizarre new minigames."
},
{
id: 27,
title: "Role Models",
pack: 6,
min_players: 3,
max_players: 6,
extended_timers: true,
img: `role.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 15,
steam_id: 1005300,
url: "https://jackboxgames.com/role-models/",
description:
"The offbeat personality test Role Models. Find out who you really are. (Or at least what your friends think of you.)"
},
{
id: 28,
title: "Joke Boat",
pack: 6,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `joke.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 25,
steam_id: 1005300,
url: "https://jackboxgames.com/joke-boat/",
description:
"The comedy contest Joke Boat. Craft one-liners for a cruise ship talent show."
},
{
id: 29,
title: "Dictionarium",
pack: 6,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `dict.png`,
family_mode: true,
audience: true,
drawing: false,
game_length: 10,
steam_id: 1005300,
url: "https://jackboxgames.com/dictionarium/",
description:
"The weird word circus Dictionarium. May the funniest definition win."
},
{
id: 30,
title: "Push the Button",
pack: 6,
min_players: 4,
max_players: 10,
extended_timers: false,
img: `push.jpg`,
family_mode: true,
audience: false,
drawing: true,
steam_id: 1005300,
url: "https://jackboxgames.com/push-the-button/",
description:
"The hidden identity game Push The Button. Can you discover the aliens in time?"
},
{
id: 31,
title: "Drawful 2",
pack: "drawful2",
min_players: 3,
max_players: 8,
extended_timers: true,
img: `drawful2.jpg`,
family_mode: true,
audience: true,
drawing: true,
game_length: 20,
steam_id: 442070,
url: "https://www.jackboxgames.com/drawful-two/",
description:
"Drawful is back to save your next party with Drawful 2, which challenges players to draw ridiculous prompts on their smartphones and tablets."
},
{
id: 32,
title: "Quiplash 3",
pack: 7,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `quiplash3.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 15,
steam_id: 1211630,
url: "https://www.jackboxgames.com/quiplash-three/",
description: "The say-anything threequel Quiplash 3 (3-8 players). It’s a head-to-head battle of the wits as you give hilarious responses to quirky prompts while everyone else votes for their favorite!"
},
{
id: 33,
title: "Devils and the Details, The",
pack: 7,
min_players: 3,
max_players: 8,
extended_timers: false,
img: `devilDetails.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 15,
steam_id: 1211630,
url: "https://www.jackboxgames.com/the-devils-and-the-details/",
description: "The collaborative chaos game The Devils and the Details (3-8 players). You’re a family of devils working together to survive in suburbia. Can you handle the daily torture of human life?"
},
{
id: 34,
title: "Champed UP",
pack: 7,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `champedUp.jpg`,
family_mode: true,
audience: true,
drawing: true,
game_length: 20,
steam_id: 1211630,
url: "https://www.jackboxgames.com/champd-up/",
description: "The drawing fighting game Champ’d Up (3-8 players). Create absurd characters that will battle over unusual titles. Can you take down the heavy favorite?"
},
{
id: 35,
title: "Talking Points",
pack: 7,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `talkingPoints.png`,
family_mode: true,
audience: true,
drawing: false,
game_length: 40,
steam_id: 1211630,
url: "https://www.jackboxgames.com/talking-points/",
description: "The on-the-spot public-speaking game Talking Points (3-8 players). Give a speech responding to picture slides you’ve never seen before or be the Assistant and approve pictures as fast as you can. Just keep talking whether it makes sense or not."
},
{
id: 36,
title: "Blather Round",
pack: 7,
min_players: 2,
max_players: 6,
extended_timers: false,
img: `blatherRound.jpg`,
family_mode: true,
audience: true,
drawing: false,
game_length: 30,
steam_id: 1211630,
url: "https://www.jackboxgames.com/blather-round/",
description: "The pop culture guessing game Blather Round (2-6 players). Describe your secret prompt with a very limited vocabulary and hope that someone can figure it out in time. It’s a “GOOD” “FUN TIME” “EXPERIENCE.”"
},
{
id: 37,
title: "Drawful Animate",
pack: 8,
min_players: 3,
max_players: 10,
extended_timers: true,
img: `drawful-animate.png`,
family_mode: true,
audience: true,
drawing: true,
game_length: 30,
url: "https://www.jackboxgames.com/drawful-animate/",
description: "It’s alive! The guessing game with terrible drawings and hilariously wrong answers makes a dynamic return. In this revamped title, players create looping, two-frame animations based on weird and random titles."
},{
id: 38,
title: "Job Job",
pack: 8,
min_players: 3,
max_players: 10,
extended_timers: true,
img: `job-job.png`,
family_mode: true,
audience: true,
drawing: false,
game_length: 25,
url: "https://www.jackboxgames.com/job-job/",
description: "Use other people’s words to create unique and funny answers to classic job interview questions. Go head to head to see who scores the job!"
},{
id: 39,
title: "The Poll Mine",
pack: 8,
min_players: 2,
max_players: 10,
extended_timers: false,
img: `poll-mine.png`,
family_mode: true,
audience: true,
drawing: false,
game_length: 20,
inPerson: true,
url: "https://www.jackboxgames.com/the-poll-mine/",
description: "A survey game that’s all about YOU! Split into teams and see who can escape from the witch’s lair! Players individually rank their choices to a difficult question, then must guess how the group answered as a whole. How well do you know your friends?!"
},{
id: 40,
title: "Weapons Drawn",
pack: 8,
min_players: 4,
max_players: 8,
extended_timers: true,
img: `weapons-drawn.png`,
family_mode: true,
audience: true,
drawing: true,
inPerson: true,
game_length: 35,
steam_id: 1211630,
url: "https://www.jackboxgames.com/weapons-drawn/",
description: "A social deduction game where everyone is both a murderer and a detective. Players doodle all the clues, hiding a letter from their name in the weapon drawings. Can you solve murders while trying to get away with your own?"
},{
id: 41,
title: "The Wheel of Enormous Proportions",
pack: 8,
min_players: 2,
max_players: 8,
extended_timers: true,
img: `wheel-of-enourmous-proportions.png`,
family_mode: true,
audience: true,
drawing: false,
game_length: 30,
url: "https://www.jackboxgames.com/the-wheel-of-enormous-proportions/",
description: "Trivia has never been so large! A fantastic, mystical wheel challenges you with a variety of trivia prompts. Winners are awarded slices of the Wheel’s face with a chance to win big with each nail-biting spin. In the end, one player will have their most burning question answered by the great Wheel."
},
{
id: 42,
title: "Fibbage 4",
pack: 9,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `Fibbage4.webp`,
family_mode: true,
audience: true,
drawing: false,
game_length: 20,
url: "https://www.jackboxgames.com/fibbage-four/",
description: "The hilarious bluffing party game returns with an all-new Final Fibbage, video questions, fan-submitted questions, and Fibbage Enough About You mode! It’s a game so beloved that we decided to slap a 4 on it."
},
{
id: 43,
url: "https://www.jackboxgames.com/quixort/",
title: "Quixort",
description: "In this trivia sorting factory, work with your team to sort falling answers into their proper order before they hit the floor! Or, play the single player mode and see how many blocks you can sort before topping out. It’s as easy as A, C, B!",
pack: 9,
min_players: 1,
max_players: 10,
extended_timers: true,
img: `quixort.webp`,
family_mode: true,
audience: true,
drawing: false,
game_length: 20,
},
{
id: 44,
url: "https://www.jackboxgames.com/junktopia/",
title: "Junktopia",
description: "In Junktopia, a strange wizard has turned you into a frog! Create hilarious backstories for weird objects and then get them appraised. The player with the most valuable items becomes human again!",
pack: 9,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `junktopia.webp`,
family_mode: true,
audience: true,
drawing: false,
game_length: 25,
},
{
id: 45,
url: "https://www.jackboxgames.com/nonsensory/",
title: "Nonsensory",
description: "Professor Nanners is here to test your NSP (Nonsensory Perception) in this drawing, writing, and guessing game! How close can you get to guessing where another player’s prompt ranks on the silliest of scales? ",
pack: 9,
min_players: 3,
max_players: 8,
extended_timers: true,
img: `nonsensory.webp`,
family_mode: true,
audience: true,
drawing: true,
game_length: 25,
},
{
id: 46,
url: "https://www.jackboxgames.com/roomerang/",
title: "Roomerang",
description: "In Roomerang, channel your inner reality TV star in an attempt to come out on top! Respond to prompts, bring the competition and role-play to avoid being voted out.",
pack: 9,
min_players: 4,
max_players: 9,
extended_timers: true,
img: `roomerang.webp`,
family_mode: true,
audience: true,
drawing: false,
game_length: 35,
},
];
}
Also see: Tab Triggers