From 34b72abf7a9d270ca19d71d34b81216b63a25994 Mon Sep 17 00:00:00 2001 From: Irina Kuzmina Date: Fri, 22 Sep 2023 17:26:52 +0300 Subject: [PATCH] chore(D3 plugin): add D3 showcase (#301) * chore(D3 plugin): add D3 showcase * add pie and scatter --- src/plugins/d3/__stories__/BarX.stories.tsx | 74 + src/plugins/d3/__stories__/Pie.stories.tsx | 48 + .../d3/__stories__/Showcase.stories.tsx | 81 + .../bar-x/DatetimeAxis.stories.tsx | 81 - .../d3/__stories__/bar-x/Grouped.stories.tsx | 125 - .../bar-x/GroupedAndStacked.stories.tsx | 142 - .../__stories__/bar-x/LinearAxis.stories.tsx | 89 - .../d3/__stories__/bar-x/Stacked.stories.tsx | 107 - .../bar-x/\320\241ategoryAxis.stories.tsx" | 96 - .../d3/__stories__/pie/BasicDonut.stories.tsx | 66 - .../d3/__stories__/pie/BasicPie.stories.tsx | 74 - .../__stories__/scatter/Scatter.stories.tsx | 40 + src/plugins/d3/examples/bar-x/Basic.tsx | 89 + .../d3/examples/bar-x/GroupedColumns.tsx | 55 + .../d3/examples/bar-x/StackedColumns.tsx | 56 + src/plugins/d3/examples/nintendoGames.js | 12037 ++++++++++++++++ src/plugins/d3/examples/pie/Basic.tsx | 35 + src/plugins/d3/examples/pie/Donut.tsx | 36 + src/plugins/d3/examples/scatter/Basic.tsx | 70 + src/plugins/d3/renderer/components/Title.tsx | 5 +- .../renderer/hooks/useChartOptions/title.ts | 3 +- 21 files changed, 12627 insertions(+), 782 deletions(-) create mode 100644 src/plugins/d3/__stories__/BarX.stories.tsx create mode 100644 src/plugins/d3/__stories__/Pie.stories.tsx create mode 100644 src/plugins/d3/__stories__/Showcase.stories.tsx delete mode 100644 src/plugins/d3/__stories__/bar-x/DatetimeAxis.stories.tsx delete mode 100644 src/plugins/d3/__stories__/bar-x/Grouped.stories.tsx delete mode 100644 src/plugins/d3/__stories__/bar-x/GroupedAndStacked.stories.tsx delete mode 100644 src/plugins/d3/__stories__/bar-x/LinearAxis.stories.tsx delete mode 100644 src/plugins/d3/__stories__/bar-x/Stacked.stories.tsx delete mode 100644 "src/plugins/d3/__stories__/bar-x/\320\241ategoryAxis.stories.tsx" delete mode 100644 src/plugins/d3/__stories__/pie/BasicDonut.stories.tsx delete mode 100644 src/plugins/d3/__stories__/pie/BasicPie.stories.tsx create mode 100644 src/plugins/d3/__stories__/scatter/Scatter.stories.tsx create mode 100644 src/plugins/d3/examples/bar-x/Basic.tsx create mode 100644 src/plugins/d3/examples/bar-x/GroupedColumns.tsx create mode 100644 src/plugins/d3/examples/bar-x/StackedColumns.tsx create mode 100644 src/plugins/d3/examples/nintendoGames.js create mode 100644 src/plugins/d3/examples/pie/Basic.tsx create mode 100644 src/plugins/d3/examples/pie/Donut.tsx create mode 100644 src/plugins/d3/examples/scatter/Basic.tsx diff --git a/src/plugins/d3/__stories__/BarX.stories.tsx b/src/plugins/d3/__stories__/BarX.stories.tsx new file mode 100644 index 00000000..dc28cfdc --- /dev/null +++ b/src/plugins/d3/__stories__/BarX.stories.tsx @@ -0,0 +1,74 @@ +import React from 'react'; +import {StoryObj} from '@storybook/react'; +import {withKnobs} from '@storybook/addon-knobs'; +import {Button} from '@gravity-ui/uikit'; +import {settings} from '../../../libs'; +import {D3Plugin} from '..'; +import { + BasicBarXChart, + BasicLinearBarXChart, + BasicDateTimeBarXChart, +} from '../examples/bar-x/Basic'; +import {GroupedColumns} from '../examples/bar-x/GroupedColumns'; +import {StackedColumns} from '../examples/bar-x/StackedColumns'; + +const ChartStory = ({Chart}: {Chart: React.FC}) => { + const [shown, setShown] = React.useState(false); + + if (!shown) { + settings.set({plugins: [D3Plugin]}); + return ; + } + + return ( +
+ +
+ ); +}; + +export const BasicBarXChartStory: StoryObj = { + name: 'Basic column chart', + args: { + Chart: BasicBarXChart, + }, +}; + +export const BasicLinearBarXChartStory: StoryObj = { + name: 'Linear X axis', + args: { + Chart: BasicLinearBarXChart, + }, +}; + +export const BasicDateTimeBarXChartStory: StoryObj = { + name: 'Datetime X axis', + args: { + Chart: BasicDateTimeBarXChart, + }, +}; + +export const GroupedBarXChartStory: StoryObj = { + name: 'Grouped columns', + args: { + Chart: GroupedColumns, + }, +}; + +export const StackedBarXChartStory: StoryObj = { + name: 'Stacked columns', + args: { + Chart: StackedColumns, + }, +}; + +export default { + title: 'Plugins/D3/Bar-X', + decorators: [withKnobs], + component: ChartStory, +}; diff --git a/src/plugins/d3/__stories__/Pie.stories.tsx b/src/plugins/d3/__stories__/Pie.stories.tsx new file mode 100644 index 00000000..2d4d00a1 --- /dev/null +++ b/src/plugins/d3/__stories__/Pie.stories.tsx @@ -0,0 +1,48 @@ +import React from 'react'; +import {StoryObj} from '@storybook/react'; +import {withKnobs} from '@storybook/addon-knobs'; +import {Button} from '@gravity-ui/uikit'; +import {settings} from '../../../libs'; +import {D3Plugin} from '..'; +import {BasicPie} from '../examples/pie/Basic'; +import {Donut} from '../examples/pie/Donut'; + +const ChartStory = ({Chart}: {Chart: React.FC}) => { + const [shown, setShown] = React.useState(false); + + if (!shown) { + settings.set({plugins: [D3Plugin]}); + return ; + } + + return ( +
+ +
+ ); +}; + +export const BasicPieStory: StoryObj = { + name: 'Basic pie', + args: { + Chart: BasicPie, + }, +}; + +export const BasicDonutStory: StoryObj = { + name: 'Basic donut', + args: { + Chart: Donut, + }, +}; + +export default { + title: 'Plugins/D3/Pie', + decorators: [withKnobs], + component: ChartStory, +}; diff --git a/src/plugins/d3/__stories__/Showcase.stories.tsx b/src/plugins/d3/__stories__/Showcase.stories.tsx new file mode 100644 index 00000000..5ef4ec0c --- /dev/null +++ b/src/plugins/d3/__stories__/Showcase.stories.tsx @@ -0,0 +1,81 @@ +import React from 'react'; +import {StoryObj} from '@storybook/react'; +import {withKnobs} from '@storybook/addon-knobs'; +import {BasicBarXChart} from '../examples/bar-x/Basic'; +import {settings} from '../../../libs'; +import {D3Plugin} from '../index'; +import {Loader} from '../../../components/Loader/Loader'; +import {GroupedColumns} from '../examples/bar-x/GroupedColumns'; +import {StackedColumns} from '../examples/bar-x/StackedColumns'; +import {Container, Row, Col, Text} from '@gravity-ui/uikit'; +import {BasicPie} from '../examples/pie/Basic'; +import {Basic as BasicScatter} from '../examples/scatter/Basic'; +import {Donut} from '../examples/pie/Donut'; + +const ShowcaseStory = () => { + const [loading, setLoading] = React.useState(true); + React.useEffect(() => { + settings.set({plugins: [D3Plugin]}); + setLoading(false); + }, []); + + return ( +
+ {loading ? ( + + ) : ( + + + Bar-x charts + + + + Basic column chart + + + + Grouped columns + + + + Stacked columns + + + + + Pie charts + + + + Basic pie chart + + + + Donut chart + + + + + Scatter charts + + + + Basic scatter + + + + + )} +
+ ); +}; + +export const D3ShowcaseStory: StoryObj = { + name: 'Showcase', +}; + +export default { + title: 'Plugins/D3/Showcase', + decorators: [withKnobs], + component: ShowcaseStory, +}; diff --git a/src/plugins/d3/__stories__/bar-x/DatetimeAxis.stories.tsx b/src/plugins/d3/__stories__/bar-x/DatetimeAxis.stories.tsx deleted file mode 100644 index f37f39b3..00000000 --- a/src/plugins/d3/__stories__/bar-x/DatetimeAxis.stories.tsx +++ /dev/null @@ -1,81 +0,0 @@ -import React from 'react'; -import {Meta, Story} from '@storybook/react'; -import {object, withKnobs} from '@storybook/addon-knobs'; -import {Button} from '@gravity-ui/uikit'; -import {settings} from '../../../../libs'; -import {ChartKit} from '../../../../components/ChartKit'; -import type {ChartKitRef} from '../../../../types'; -import type {ChartKitWidgetData} from '../../../../types/widget-data'; -import {D3Plugin} from '../..'; - -const Template: Story = () => { - const [shown, setShown] = React.useState(false); - const chartkitRef = React.useRef(); - const data: ChartKitWidgetData = { - title: {text: 'DateTime axis'}, - xAxis: { - type: 'datetime', - labels: {enabled: true}, - }, - legend: {enabled: true}, - tooltip: {enabled: true}, - yAxis: [ - { - type: 'linear', - labels: {enabled: true}, - lineColor: 'transparent', - min: 0, - }, - ], - series: { - data: [ - { - type: 'bar-x', - visible: true, - data: [ - { - x: Number(new Date(2022, 10, 10)), - y: 100, - }, - { - x: Number(new Date(2023, 2, 5)), - y: 80, - }, - ], - name: 'AB', - }, - { - type: 'bar-x', - visible: true, - data: [ - { - x: Number(new Date(2022, 11, 25)), - y: 120, - }, - ], - name: 'C', - }, - ], - }, - }; - - if (!shown) { - settings.set({plugins: [D3Plugin]}); - return ; - } - - return ( -
- ('data', data)} /> -
- ); -}; - -export const DatetimeXAxis = Template.bind({}); - -const meta: Meta = { - title: 'Plugins/D3/Bar-X', - decorators: [withKnobs], -}; - -export default meta; diff --git a/src/plugins/d3/__stories__/bar-x/Grouped.stories.tsx b/src/plugins/d3/__stories__/bar-x/Grouped.stories.tsx deleted file mode 100644 index 1aabda37..00000000 --- a/src/plugins/d3/__stories__/bar-x/Grouped.stories.tsx +++ /dev/null @@ -1,125 +0,0 @@ -import React from 'react'; -import {Meta, Story} from '@storybook/react'; -import {object, withKnobs} from '@storybook/addon-knobs'; -import {Button} from '@gravity-ui/uikit'; -import {settings} from '../../../../libs'; -import {ChartKit} from '../../../../components/ChartKit'; -import type {ChartKitWidgetData, ChartKitRef} from '../../../../types'; -import {D3Plugin} from '../..'; - -const Template: Story = () => { - const [shown, setShown] = React.useState(false); - const chartkitRef = React.useRef(); - const data: ChartKitWidgetData = { - tooltip: {enabled: true}, - title: {text: 'Grouped'}, - xAxis: { - type: 'category', - categories: ['A', 'B', 'C'], - labels: {enabled: true}, - }, - yAxis: [ - { - type: 'linear', - labels: {enabled: true}, - min: 0, - lineColor: 'transparent', - }, - ], - series: { - data: [ - { - type: 'bar-x', - visible: true, - data: [ - { - x: 'A', - y: 10, - }, - { - x: 'B', - y: 80, - }, - { - x: 'C', - y: 25, - }, - ], - name: 'Min', - dataLabels: { - enabled: true, - }, - }, - { - type: 'bar-x', - visible: true, - data: [ - { - x: 'A', - y: 110, - }, - { - x: 'B', - y: 80, - }, - { - x: 'C', - y: 200, - }, - ], - name: 'Mid', - dataLabels: { - enabled: true, - }, - }, - { - type: 'bar-x', - visible: true, - data: [ - { - x: 'A', - y: 410, - }, - { - x: 'B', - y: 580, - }, - { - x: 'C', - y: 205, - }, - ], - name: 'Max', - dataLabels: { - enabled: true, - }, - }, - ], - }, - }; - - if (!shown) { - settings.set({plugins: [D3Plugin]}); - return ; - } - - return ( -
- ('data', data)} /> -
- ); -}; - -export const Grouped = Template.bind({}); - -const meta: Meta = { - title: 'Plugins/D3/Bar-X', - decorators: [withKnobs], -}; - -export default meta; diff --git a/src/plugins/d3/__stories__/bar-x/GroupedAndStacked.stories.tsx b/src/plugins/d3/__stories__/bar-x/GroupedAndStacked.stories.tsx deleted file mode 100644 index 1d234bd8..00000000 --- a/src/plugins/d3/__stories__/bar-x/GroupedAndStacked.stories.tsx +++ /dev/null @@ -1,142 +0,0 @@ -import React from 'react'; -import {Meta, Story} from '@storybook/react'; -import {object, withKnobs} from '@storybook/addon-knobs'; -import {Button} from '@gravity-ui/uikit'; -import {settings} from '../../../../libs'; -import {ChartKit} from '../../../../components/ChartKit'; -import type {ChartKitWidgetData, ChartKitRef} from '../../../../types'; -import {D3Plugin} from '../..'; - -const Template: Story = () => { - const [shown, setShown] = React.useState(false); - const chartkitRef = React.useRef(); - const data: ChartKitWidgetData = { - tooltip: {enabled: true}, - title: {text: 'Grouped and stacked'}, - xAxis: { - type: 'category', - categories: ['A', 'B', 'C'], - labels: {enabled: true}, - }, - yAxis: [ - { - type: 'linear', - labels: {enabled: true}, - min: 0, - }, - ], - series: { - data: [ - { - type: 'bar-x', - visible: true, - stacking: 'normal', - data: [ - { - x: 'A', - y: 100, - }, - { - x: 'B', - y: 805, - }, - { - x: 'C', - y: 250, - }, - ], - stackId: 'stack1', - name: 'Base1', - }, - { - type: 'bar-x', - visible: true, - stacking: 'normal', - data: [ - { - x: 'A', - y: 40, - }, - { - x: 'B', - y: 80, - }, - { - x: 'C', - y: 25, - }, - ], - stackId: 'stack1', - name: 'Extended1', - }, - { - type: 'bar-x', - visible: true, - stacking: 'normal', - data: [ - { - x: 'A', - y: 110, - }, - { - x: 'B', - y: 80, - }, - { - x: 'C', - y: 200, - }, - ], - stackId: 'stack2', - name: 'Base2', - }, - { - type: 'bar-x', - visible: true, - stacking: 'normal', - data: [ - { - x: 'A', - y: 110, - }, - { - x: 'B', - y: 80, - }, - { - x: 'C', - y: 200, - }, - ], - stackId: 'stack2', - name: 'Extended2', - }, - ], - }, - }; - - if (!shown) { - settings.set({plugins: [D3Plugin]}); - return ; - } - - return ( -
- ('data', data)} /> -
- ); -}; - -export const GroupedAndStacked = Template.bind({}); - -const meta: Meta = { - title: 'Plugins/D3/Bar-X', - decorators: [withKnobs], -}; - -export default meta; diff --git a/src/plugins/d3/__stories__/bar-x/LinearAxis.stories.tsx b/src/plugins/d3/__stories__/bar-x/LinearAxis.stories.tsx deleted file mode 100644 index 9d7c516c..00000000 --- a/src/plugins/d3/__stories__/bar-x/LinearAxis.stories.tsx +++ /dev/null @@ -1,89 +0,0 @@ -import React from 'react'; -import {Meta, Story} from '@storybook/react'; -import {withKnobs, object} from '@storybook/addon-knobs'; -import {Button} from '@gravity-ui/uikit'; -import {settings} from '../../../../libs'; -import {ChartKit} from '../../../../components/ChartKit'; -import type {ChartKitRef} from '../../../../types'; -import type {ChartKitWidgetData} from '../../../../types/widget-data'; -import {D3Plugin} from '../..'; - -const Template: Story = () => { - const [shown, setShown] = React.useState(false); - const chartkitRef = React.useRef(); - const data: ChartKitWidgetData = { - series: { - data: [ - { - type: 'bar-x', - visible: true, - data: [ - { - x: 10, - y: 100, - }, - { - x: 12, - y: 80, - }, - ], - name: 'AB', - }, - { - type: 'bar-x', - visible: true, - data: [ - { - x: 95.5, - y: 120, - }, - ], - name: 'C', - }, - ], - }, - title: {text: 'Linear axis'}, - xAxis: { - min: 0, - type: 'linear', - labels: {enabled: true}, - }, - yAxis: [ - { - type: 'linear', - labels: {enabled: true}, - min: 0, - ticks: { - pixelInterval: 100, - }, - }, - ], - legend: {enabled: true}, - tooltip: {enabled: true}, - }; - - if (!shown) { - settings.set({plugins: [D3Plugin]}); - return ; - } - - return ( -
- ('data', data)} /> -
- ); -}; - -export const LinearXAxis = Template.bind({}); - -const meta: Meta = { - title: 'Plugins/D3/Bar-X', - decorators: [withKnobs], -}; - -export default meta; diff --git a/src/plugins/d3/__stories__/bar-x/Stacked.stories.tsx b/src/plugins/d3/__stories__/bar-x/Stacked.stories.tsx deleted file mode 100644 index 241024f3..00000000 --- a/src/plugins/d3/__stories__/bar-x/Stacked.stories.tsx +++ /dev/null @@ -1,107 +0,0 @@ -import React from 'react'; -import {Meta, Story} from '@storybook/react'; -import {object, withKnobs} from '@storybook/addon-knobs'; -import {Button} from '@gravity-ui/uikit'; -import {settings} from '../../../../libs'; -import {ChartKit} from '../../../../components/ChartKit'; -import type {ChartKitRef} from '../../../../types'; -import type {ChartKitWidgetData} from '../../../../types/widget-data'; -import {D3Plugin} from '../..'; - -const Template: Story = () => { - const [shown, setShown] = React.useState(false); - const chartkitRef = React.useRef(); - const data: ChartKitWidgetData = { - legend: {enabled: true}, - tooltip: {enabled: true}, - title: {text: 'Category axis'}, - xAxis: { - type: 'category', - categories: ['A', 'B', 'C'], - labels: {enabled: true}, - }, - yAxis: [ - { - type: 'linear', - labels: {enabled: true}, - min: 0, - }, - ], - series: { - data: [ - { - type: 'bar-x', - visible: true, - stacking: 'normal', - data: [ - { - x: 'A', - y: 100, - }, - { - x: 'B', - y: 80, - }, - { - x: 'C', - y: 120, - }, - ], - name: 'Sales', - dataLabels: { - enabled: true, - inside: true, - style: { - fontWeight: 'normal', - fontColor: '#fff', - }, - }, - }, - { - type: 'bar-x', - visible: true, - stacking: 'normal', - data: [ - { - x: 'A', - y: 5, - }, - { - x: 'B', - y: 25, - }, - ], - name: 'Discount', - dataLabels: { - enabled: true, - }, - }, - ], - }, - }; - - if (!shown) { - settings.set({plugins: [D3Plugin]}); - return ; - } - - return ( -
- ('data', data)} /> -
- ); -}; - -export const Stacked = Template.bind({}); - -const meta: Meta = { - title: 'Plugins/D3/Bar-X', - decorators: [withKnobs], -}; - -export default meta; diff --git "a/src/plugins/d3/__stories__/bar-x/\320\241ategoryAxis.stories.tsx" "b/src/plugins/d3/__stories__/bar-x/\320\241ategoryAxis.stories.tsx" deleted file mode 100644 index bc19e978..00000000 --- "a/src/plugins/d3/__stories__/bar-x/\320\241ategoryAxis.stories.tsx" +++ /dev/null @@ -1,96 +0,0 @@ -import React from 'react'; -import {Meta, Story} from '@storybook/react'; -import {object, withKnobs} from '@storybook/addon-knobs'; -import {Button} from '@gravity-ui/uikit'; -import {settings} from '../../../../libs'; -import {ChartKit} from '../../../../components/ChartKit'; -import type {ChartKitRef} from '../../../../types'; -import type {ChartKitWidgetData} from '../../../../types/widget-data'; -import {D3Plugin} from '../..'; - -const Template: Story = () => { - const [shown, setShown] = React.useState(false); - const chartkitRef = React.useRef(); - const data: ChartKitWidgetData = { - series: { - options: { - 'bar-x': { - barMaxWidth: 10, - }, - }, - data: [ - { - type: 'bar-x', - visible: true, - data: [ - { - label: 10, - x: 'A', - y: 100, - }, - { - label: 12, - x: 'B', - y: 80, - }, - ], - name: 'AB', - dataLabels: { - enabled: true, - }, - }, - { - type: 'bar-x', - visible: true, - data: [ - { - x: 'C', - y: 120, - }, - ], - name: 'C', - }, - ], - }, - legend: {enabled: true}, - title: {text: 'Category axis'}, - tooltip: {enabled: true}, - xAxis: { - type: 'category', - categories: ['A', 'B', 'C'], - labels: {enabled: true}, - }, - yAxis: [ - { - type: 'linear', - labels: {enabled: true}, - min: 0, - }, - ], - }; - - if (!shown) { - settings.set({plugins: [D3Plugin]}); - return ; - } - - return ( -
- ('data', data)} /> -
- ); -}; - -export const CategoryXAxis = Template.bind({}); - -const meta: Meta = { - title: 'Plugins/D3/Bar-X', - decorators: [withKnobs], -}; - -export default meta; diff --git a/src/plugins/d3/__stories__/pie/BasicDonut.stories.tsx b/src/plugins/d3/__stories__/pie/BasicDonut.stories.tsx deleted file mode 100644 index 314a6b01..00000000 --- a/src/plugins/d3/__stories__/pie/BasicDonut.stories.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import React from 'react'; -import {Meta, Story} from '@storybook/react'; -import {withKnobs, object} from '@storybook/addon-knobs'; -import {Button} from '@gravity-ui/uikit'; -import {settings} from '../../../../libs'; -import {ChartKit} from '../../../../components/ChartKit'; -import type {ChartKitRef} from '../../../../types'; -import type {ChartKitWidgetData} from '../../../../types/widget-data'; -import {D3Plugin} from '../..'; - -const Template: Story = () => { - const [shown, setShown] = React.useState(false); - const chartkitRef = React.useRef(); - const data: ChartKitWidgetData = { - series: { - data: [ - { - type: 'pie', - innerRadius: '50%', - data: [ - { - name: 'One', - value: 50, - }, - { - name: 'Two', - value: 20, - }, - { - name: 'Three', - value: 90, - }, - ], - }, - ], - }, - title: {text: 'Basic donut'}, - legend: {enabled: false}, - tooltip: {enabled: false}, - }; - - if (!shown) { - settings.set({plugins: [D3Plugin]}); - return ; - } - - return ( -
- ('data', data)} /> -
- ); -}; - -export const BasicDonut = Template.bind({}); - -const meta: Meta = { - title: 'Plugins/D3/Pie', - decorators: [withKnobs], -}; - -export default meta; diff --git a/src/plugins/d3/__stories__/pie/BasicPie.stories.tsx b/src/plugins/d3/__stories__/pie/BasicPie.stories.tsx deleted file mode 100644 index 1e8a43bf..00000000 --- a/src/plugins/d3/__stories__/pie/BasicPie.stories.tsx +++ /dev/null @@ -1,74 +0,0 @@ -import React from 'react'; -import {Meta, Story} from '@storybook/react'; -import {withKnobs, object} from '@storybook/addon-knobs'; -import {Button} from '@gravity-ui/uikit'; -import {settings} from '../../../../libs'; -import {ChartKit} from '../../../../components/ChartKit'; -import type {ChartKitRef} from '../../../../types'; -import type {ChartKitWidgetData} from '../../../../types/widget-data'; -import {D3Plugin} from '../..'; - -const Template: Story = () => { - const [shown, setShown] = React.useState(false); - const chartkitRef = React.useRef(); - const data: ChartKitWidgetData = { - series: { - data: [ - { - type: 'pie', - dataLabels: {enabled: true}, - data: [ - { - name: 'One', - value: 50, - }, - { - name: 'Two', - value: 130, - }, - { - name: 'Three', - value: 50, - }, - { - name: 'Four', - value: 95, - }, - { - name: 'Five', - value: 100, - }, - ], - }, - ], - }, - title: {text: 'Basic pie'}, - legend: {enabled: true}, - tooltip: {enabled: false}, - }; - - if (!shown) { - settings.set({plugins: [D3Plugin]}); - return ; - } - - return ( -
- ('data', data)} /> -
- ); -}; - -export const BasicPie = Template.bind({}); - -const meta: Meta = { - title: 'Plugins/D3/Pie', - decorators: [withKnobs], -}; - -export default meta; diff --git a/src/plugins/d3/__stories__/scatter/Scatter.stories.tsx b/src/plugins/d3/__stories__/scatter/Scatter.stories.tsx new file mode 100644 index 00000000..4063dd30 --- /dev/null +++ b/src/plugins/d3/__stories__/scatter/Scatter.stories.tsx @@ -0,0 +1,40 @@ +import React from 'react'; +import {StoryObj} from '@storybook/react'; +import {withKnobs} from '@storybook/addon-knobs'; +import {Button} from '@gravity-ui/uikit'; +import {settings} from '../../../../libs'; +import {D3Plugin} from '../..'; +import {Basic} from '../../examples/scatter/Basic'; + +const ChartStory = ({Chart}: {Chart: React.FC}) => { + const [shown, setShown] = React.useState(false); + + if (!shown) { + settings.set({plugins: [D3Plugin]}); + return ; + } + + return ( +
+ +
+ ); +}; + +export const BasicScatterStory: StoryObj = { + name: 'Basic', + args: { + Chart: Basic, + }, +}; + +export default { + title: 'Plugins/D3/Scatter', + decorators: [withKnobs], + component: ChartStory, +}; diff --git a/src/plugins/d3/examples/bar-x/Basic.tsx b/src/plugins/d3/examples/bar-x/Basic.tsx new file mode 100644 index 00000000..789b0ae3 --- /dev/null +++ b/src/plugins/d3/examples/bar-x/Basic.tsx @@ -0,0 +1,89 @@ +import React from 'react'; +import {ChartKit} from '../../../../components/ChartKit'; +import type {ChartKitWidgetData, BarXSeries, BarXSeriesData} from '../../../../types'; +import nintendoGames from '../nintendoGames'; +import {groups} from 'd3'; + +function prepareData(field: 'platform' | 'meta_score' | 'date' = 'platform') { + const gamesByPlatform = groups(nintendoGames, (item) => item[field]); + const data = gamesByPlatform.map(([value, games]) => ({ + x: value, + y: games.length, + })); + + return { + categories: gamesByPlatform.map(([key]) => key), + series: [ + { + data, + name: 'Games released', + }, + ], + }; +} + +export const BasicBarXChart = () => { + const {categories, series} = prepareData(); + + const widgetData: ChartKitWidgetData = { + series: { + data: series.map((s) => ({ + type: 'bar-x', + data: s.data as BarXSeriesData[], + name: s.name, + })), + }, + xAxis: { + type: 'category', + categories: categories.map(String), + title: { + text: 'Game Platforms', + }, + }, + }; + + return ; +}; + +export const BasicLinearBarXChart = () => { + const {series} = prepareData('meta_score'); + + const widgetData: ChartKitWidgetData = { + series: { + data: series.map((s) => ({ + type: 'bar-x', + data: s.data as BarXSeriesData[], + name: s.name, + })), + }, + xAxis: { + title: { + text: 'Meta scores', + }, + }, + }; + + return ; +}; + +export const BasicDateTimeBarXChart = () => { + const {series} = prepareData('date'); + + const widgetData: ChartKitWidgetData = { + series: { + data: series.map((s) => ({ + type: 'bar-x', + data: s.data as BarXSeriesData[], + name: s.name, + })), + }, + xAxis: { + type: 'datetime', + title: { + text: 'Release date', + }, + }, + }; + + return ; +}; diff --git a/src/plugins/d3/examples/bar-x/GroupedColumns.tsx b/src/plugins/d3/examples/bar-x/GroupedColumns.tsx new file mode 100644 index 00000000..60694aa7 --- /dev/null +++ b/src/plugins/d3/examples/bar-x/GroupedColumns.tsx @@ -0,0 +1,55 @@ +import React from 'react'; +import {ChartKit} from '../../../../components/ChartKit'; +import type {BarXSeries, ChartKitWidgetData} from '../../../../types'; +import nintendoGames from '../nintendoGames'; +import {groups} from 'd3'; + +function prepareData() { + const grouped = groups( + nintendoGames, + (d) => d.platform, + (d) => (d.date ? new Date(d.date as number).getFullYear() : 'unknown'), + ); + const categories: string[] = []; + const series = grouped.map(([platform, years]) => { + return { + name: platform, + data: years.map(([year, list]) => { + categories.push(String(year)); + + return { + x: String(year), + y: list.length, + }; + }), + }; + }); + + return {categories, series}; +} + +export const GroupedColumns = () => { + const {series, categories} = prepareData(); + const data = series.map((s) => { + return { + type: 'bar-x', + name: s.name, + data: s.data, + } as BarXSeries; + }); + + const widgetData: ChartKitWidgetData = { + series: { + data: data, + }, + xAxis: { + type: 'category', + categories: categories.sort(), + title: { + text: 'Release year', + }, + }, + }; + + return ; +}; diff --git a/src/plugins/d3/examples/bar-x/StackedColumns.tsx b/src/plugins/d3/examples/bar-x/StackedColumns.tsx new file mode 100644 index 00000000..aa1c953b --- /dev/null +++ b/src/plugins/d3/examples/bar-x/StackedColumns.tsx @@ -0,0 +1,56 @@ +import React from 'react'; +import {ChartKit} from '../../../../components/ChartKit'; +import type {BarXSeries, ChartKitWidgetData} from '../../../../types'; +import nintendoGames from '../nintendoGames'; +import {groups} from 'd3'; + +function prepareData() { + const grouped = groups( + nintendoGames, + (d) => d.platform, + (d) => (d.date ? new Date(d.date as number).getFullYear() : 'unknown'), + ); + const categories: string[] = []; + const series = grouped.map(([platform, years]) => { + return { + name: platform, + data: years.map(([year, list]) => { + categories.push(String(year)); + + return { + x: String(year), + y: list.length, + }; + }), + }; + }); + + return {categories, series}; +} + +export const StackedColumns = () => { + const {series, categories} = prepareData(); + const data = series.map((s) => { + return { + type: 'bar-x', + stacking: 'normal', + name: s.name, + data: s.data, + } as BarXSeries; + }); + + const widgetData: ChartKitWidgetData = { + series: { + data: data, + }, + xAxis: { + type: 'category', + categories: categories.sort(), + title: { + text: 'Release year', + }, + }, + }; + + return ; +}; diff --git a/src/plugins/d3/examples/nintendoGames.js b/src/plugins/d3/examples/nintendoGames.js new file mode 100644 index 00000000..96121256 --- /dev/null +++ b/src/plugins/d3/examples/nintendoGames.js @@ -0,0 +1,12037 @@ +//source: https://www.kaggle.com/datasets/joebeachcapital/nintendo-games +export default [ + { + meta_score: null, + title: 'Super Mario RPG', + platform: 'Switch', + date: 1700172000000, + user_score: null, + link: '/game/switch/super-mario-rpg', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: null, + title: 'WarioWare: Move It!', + platform: 'Switch', + date: 1698962400000, + user_score: null, + link: '/game/switch/warioware-move-it!', + esrb_rating: 'RP', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Super Mario Bros. Wonder', + platform: 'Switch', + date: 1697749200000, + user_score: null, + link: '/game/switch/super-mario-bros-wonder', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Detective Pikachu Returns', + platform: 'Switch', + date: 1696539600000, + user_score: null, + link: '/game/switch/detective-pikachu-returns', + esrb_rating: '', + developers: "['Creatures Inc.']", + genres: "['Adventure', '3D', 'Third-Person']", + }, + { + meta_score: null, + title: 'Fae Farm', + platform: 'Switch', + date: 1694120400000, + user_score: null, + link: '/game/switch/fae-farm', + esrb_rating: 'E10+', + developers: "['Phoenix Labs']", + genres: "['Simulation', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 87, + title: 'Pikmin 4', + platform: 'Switch', + date: 1689886800000, + user_score: 9, + link: '/game/switch/pikmin-4', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Strategy', 'Real-Time', 'General']", + }, + { + meta_score: null, + title: 'Pokemon Sleep', + platform: 'iOS', + date: 1689800400000, + user_score: null, + link: '/game/ios/pokemon-sleep', + esrb_rating: '', + developers: "['The Pokemon Company', ' Select Button']", + genres: "['Role-Playing', 'Miscellaneous', 'Application', 'Trainer']", + }, + { + meta_score: 74, + title: 'Mario Kart 8 Deluxe: Booster Course Pass - Wave 5', + platform: 'Switch', + date: 1689109200000, + user_score: 7.6, + link: '/game/switch/mario-kart-8-deluxe-booster-course-pass---wave-5', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: 56, + title: 'Everybody 1-2-Switch!', + platform: 'Switch', + date: 1688072400000, + user_score: 5.4, + link: '/game/switch/everybody-1-2-switch!', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 82, + title: 'Pikmin 1', + platform: 'Switch', + date: 1687294800000, + user_score: 8.4, + link: '/game/switch/pikmin-1', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Strategy', 'Real-Time', 'General']", + }, + { + meta_score: 65, + title: 'Pikmin 2', + platform: 'Switch', + date: 1687294800000, + user_score: 8.6, + link: '/game/switch/pikmin-2', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Strategy', 'Real-Time', 'General']", + }, + { + meta_score: 80, + title: 'Pikmin 1 + 2', + platform: 'Switch', + date: 1687294800000, + user_score: 8.5, + link: '/game/switch/pikmin-1-+-2', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Compilation']", + }, + { + meta_score: 96, + title: 'The Legend of Zelda: Tears of the Kingdom', + platform: 'Switch', + date: 1683838800000, + user_score: 8.2, + link: '/game/switch/the-legend-of-zelda-tears-of-the-kingdom', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Open-World']", + }, + { + meta_score: 92, + title: 'Xenoblade Chronicles 3: Expansion Pass Wave 4 - Future Redeemed', + platform: 'Switch', + date: 1682370000000, + user_score: 8.8, + link: '/game/switch/xenoblade-chronicles-3-expansion-pass-wave-4---future-redeemed', + esrb_rating: 'T', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 82, + title: 'Advance Wars 1 + 2: Re-Boot Camp', + platform: 'Switch', + date: 1682024400000, + user_score: 8.1, + link: '/game/switch/advance-wars-1-+-2-re-boot-camp', + esrb_rating: 'E10+', + developers: "['Nintendo', ' WayForward']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Engage: Expansion Pass Wave 4', + platform: 'Switch', + date: 1680642000000, + user_score: null, + link: '/game/switch/fire-emblem-engage-expansion-pass-wave-4', + esrb_rating: '', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 81, + title: 'Bayonetta Origins: Cereza and the Lost Demon', + platform: 'Switch', + date: 1679004000000, + user_score: 8.6, + link: '/game/switch/bayonetta-origins-cereza-and-the-lost-demon', + esrb_rating: 'T', + developers: "['PlatinumGames']", + genres: "['Action Adventure', 'Linear']", + }, + { + meta_score: 86, + title: 'Mario Kart 8 Deluxe: Booster Course Pass - Wave 4', + platform: 'Switch', + date: 1678312800000, + user_score: 7.8, + link: '/game/switch/mario-kart-8-deluxe-booster-course-pass---wave-4', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: null, + title: 'Fire Emblem Engage: Expansion Pass Wave 3', + platform: 'Switch', + date: 1678140000000, + user_score: null, + link: '/game/switch/fire-emblem-engage-expansion-pass-wave-3', + esrb_rating: '', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Splatoon 3: Expansion Pass Wave 1 - Inkopolis', + platform: 'Switch', + date: 1677535200000, + user_score: null, + link: '/game/switch/splatoon-3-expansion-pass-wave-1---inkopolis', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Shooter', 'Third-Person', 'Arcade']", + }, + { + meta_score: 79, + title: "Kirby's Return to Dream Land Deluxe", + platform: 'Switch', + date: 1677189600000, + user_score: 8.8, + link: '/game/switch/kirbys-return-to-dream-land-deluxe', + esrb_rating: 'E10+', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Xenoblade Chronicles 3: Expansion Pass Wave 3', + platform: 'Switch', + date: 1676412000000, + user_score: null, + link: '/game/switch/xenoblade-chronicles-3-expansion-pass-wave-3', + esrb_rating: '', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: null, + title: 'Fire Emblem Engage: Expansion Pass Wave 2', + platform: 'Switch', + date: 1675807200000, + user_score: null, + link: '/game/switch/fire-emblem-engage-expansion-pass-wave-2', + esrb_rating: '', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 94, + title: 'Metroid Prime Remastered', + platform: 'Switch', + date: 1675807200000, + user_score: 8.7, + link: '/game/switch/metroid-prime-remastered', + esrb_rating: 'T', + developers: "['Nintendo', ' Retro Studios', ' Iron Galaxy Studios']", + genres: "['Action', 'Shooter', 'First-Person', 'Arcade']", + }, + { + meta_score: 80, + title: 'Fire Emblem Engage', + platform: 'Switch', + date: 1674165600000, + user_score: 6.6, + link: '/game/switch/fire-emblem-engage', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Engage: Expansion Pass Wave 1', + platform: 'Switch', + date: 1674165600000, + user_score: null, + link: '/game/switch/fire-emblem-engage-expansion-pass-wave-1', + esrb_rating: '', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 83, + title: 'Mario Kart 8 Deluxe: Booster Course Pass - Wave 3', + platform: 'Switch', + date: 1670364000000, + user_score: 7.3, + link: '/game/switch/mario-kart-8-deluxe-booster-course-pass---wave-3', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: 71, + title: 'Pokemon Violet', + platform: 'Switch', + date: 1668722400000, + user_score: 4, + link: '/game/switch/pokemon-violet', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 72, + title: 'Pokemon Scarlet', + platform: 'Switch', + date: 1668722400000, + user_score: 3.4, + link: '/game/switch/pokemon-scarlet', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: 'Pokemon Scarlet / Pokemon Violet Dual Pack Steelbook Edition', + platform: 'Switch', + date: 1668722400000, + user_score: 8, + link: '/game/switch/pokemon-scarlet-pokemon-violet-dual-pack-steelbook-edition', + esrb_rating: 'RP', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Compilation', 'Role-Playing', 'Trainer']", + }, + { + meta_score: 86, + title: 'Bayonetta 3', + platform: 'Switch', + date: 1666904400000, + user_score: 7.1, + link: '/game/switch/bayonetta-3', + esrb_rating: 'M', + developers: "['PlatinumGames']", + genres: "['Action Adventure', 'Linear']", + }, + { + meta_score: null, + title: 'Xenoblade Chronicles 3: Expansion Pass Wave 2', + platform: 'Switch', + date: 1665608400000, + user_score: null, + link: '/game/switch/xenoblade-chronicles-3-expansion-pass-wave-2', + esrb_rating: 'T', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 83, + title: 'Splatoon 3', + platform: 'Switch', + date: 1662670800000, + user_score: 6.8, + link: '/game/switch/splatoon-3', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Shooter', 'Third-Person', 'Arcade']", + }, + { + meta_score: 67, + title: "Kirby's Dream Buffet", + platform: 'Switch', + date: 1660683600000, + user_score: 7.3, + link: '/game/switch/kirbys-dream-buffet', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 77, + title: 'Mario Kart 8 Deluxe: Booster Course Pass - Wave 2', + platform: 'Switch', + date: 1659560400000, + user_score: 6.8, + link: '/game/switch/mario-kart-8-deluxe-booster-course-pass---wave-2', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: 89, + title: 'Xenoblade Chronicles 3', + platform: 'Switch', + date: 1659042000000, + user_score: 8.5, + link: '/game/switch/xenoblade-chronicles-3', + esrb_rating: 'T', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 81, + title: 'Live A Live', + platform: 'Switch', + date: 1658437200000, + user_score: 7.5, + link: '/game/switch/live-a-live', + esrb_rating: 'T', + developers: "['Square Enix', ' historia Inc']", + genres: "['Role-Playing', 'Strategy', 'Turn-Based', 'Japanese-Style', 'Tactics']", + }, + { + meta_score: 80, + title: 'Fire Emblem Warriors: Three Hopes', + platform: 'Switch', + date: 1656018000000, + user_score: 8.9, + link: '/game/switch/fire-emblem-warriors-three-hopes', + esrb_rating: 'T', + developers: "['Nintendo', ' Koei Tecmo Games']", + genres: "['Strategy', 'Real-Time', 'General', 'Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 73, + title: 'Mario Strikers: Battle League', + platform: 'Switch', + date: 1654808400000, + user_score: 4.4, + link: '/game/switch/mario-strikers-battle-league', + esrb_rating: 'E10+', + developers: "['Next Level Games', ' Nintendo']", + genres: "['Sports', 'Team', 'Soccer', 'Arcade']", + }, + { + meta_score: 72, + title: 'Nintendo Switch Sports', + platform: 'Switch', + date: 1651179600000, + user_score: 5.9, + link: '/game/switch/nintendo-switch-sports', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Sports', 'General', 'Individual', 'Athletics']", + }, + { + meta_score: 85, + title: 'Kirby and the Forgotten Land', + platform: 'Switch', + date: 1648159200000, + user_score: 8.9, + link: '/game/switch/kirby-and-the-forgotten-land', + esrb_rating: 'E10+', + developers: "['Nintendo', ' HAL Labs']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: 73, + title: 'Mario Kart 8 Deluxe: Booster Course Pass - Wave 1', + platform: 'Switch', + date: 1647554400000, + user_score: 6.8, + link: '/game/switch/mario-kart-8-deluxe-booster-course-pass---wave-1', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: 83, + title: 'Pokemon Legends: Arceus', + platform: 'Switch', + date: 1643320800000, + user_score: 8.1, + link: '/game/switch/pokemon-legends-arceus', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 73, + title: 'Big Brain Academy: Brain vs. Brain', + platform: 'Switch', + date: 1638482400000, + user_score: 8.1, + link: '/game/switch/big-brain-academy-brain-vs-brain', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 69, + title: 'Disney Magical World 2: Enchanted Edition', + platform: 'Switch', + date: 1638482400000, + user_score: 7, + link: '/game/switch/disney-magical-world-2-enchanted-edition', + esrb_rating: 'E', + developers: "['h.a.n.d. Inc.']", + genres: "['Simulation', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 73, + title: 'Pokemon Brilliant Diamond', + platform: 'Switch', + date: 1637272800000, + user_score: 5.3, + link: '/game/switch/pokemon-brilliant-diamond', + esrb_rating: 'E', + developers: "['ILCA', ' Inc.']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 73, + title: 'Pokemon Shining Pearl', + platform: 'Switch', + date: 1637272800000, + user_score: 5.5, + link: '/game/switch/pokemon-shining-pearl', + esrb_rating: 'E', + developers: "['ILCA', ' Inc.']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: 'Pokemon Brilliant Diamond / Pokemon Shining Pearl Double Pack', + platform: 'Switch', + date: 1637272800000, + user_score: 6.4, + link: '/game/switch/pokemon-brilliant-diamond-pokemon-shining-pearl-double-pack', + esrb_rating: 'E', + developers: "['ILCA', ' Inc.']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 82, + title: 'Animal Crossing: New Horizons - Happy Home Paradise', + platform: 'Switch', + date: 1636063200000, + user_score: 7.9, + link: '/game/switch/animal-crossing-new-horizons---happy-home-paradise', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Simulation', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 80, + title: 'Mario Party Superstars', + platform: 'Switch', + date: 1635454800000, + user_score: 8, + link: '/game/switch/mario-party-superstars', + esrb_rating: 'E', + developers: "['Nintendo', ' Nd Cube']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Hyrule Warriors: Age of Calamity - Guardian of Remembrance', + platform: 'Switch', + date: 1635454800000, + user_score: null, + link: '/game/switch/hyrule-warriors-age-of-calamity---guardian-of-remembrance', + esrb_rating: '', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 65, + title: 'Pikmin Bloom', + platform: 'iOS', + date: 1635368400000, + user_score: 6, + link: '/game/ios/pikmin-bloom', + esrb_rating: '', + developers: "['Niantic Tokyo Studio']", + genres: "['Action', 'General']", + }, + { + meta_score: null, + title: 'Minecraft Dungeons: Ultimate Edition', + platform: 'Switch', + date: 1635195600000, + user_score: 7.1, + link: '/game/switch/minecraft-dungeons-ultimate-edition', + esrb_rating: '', + developers: "['Nintendo', ' Mojang AB']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Sora', + platform: 'Switch', + date: 1634504400000, + user_score: 6.8, + link: '/game/switch/super-smash-bros-ultimate-sora', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 88, + title: 'Metroid Dread', + platform: 'Switch', + date: 1633640400000, + user_score: 8.7, + link: '/game/switch/metroid-dread', + esrb_rating: 'T', + developers: "['Mercury Steam', ' Nintendo']", + genres: "['Action', 'Action Adventure', 'Platformer', 'Open-World', '', 'Metroidvania']", + }, + { + meta_score: 76, + title: 'WarioWare: Get It Together!', + platform: 'Switch', + date: 1631221200000, + user_score: 7.7, + link: '/game/switch/warioware-get-it-together!', + esrb_rating: 'E10+', + developers: "['Nintendo', ' Intelligent Systems']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 81, + title: 'The Legend of Zelda: Skyward Sword HD', + platform: 'Switch', + date: 1626382800000, + user_score: 7.3, + link: '/game/switch/the-legend-of-zelda-skyward-sword-hd', + esrb_rating: 'E10+', + developers: "['Tantalus', ' Nintendo']", + genres: "['Action Adventure', 'Open-World']", + }, + { + meta_score: null, + title: 'Fitness Boxing 2: Rhythm & Exercise - Musical Journey', + platform: 'Switch', + date: 1625086800000, + user_score: null, + link: '/game/switch/fitness-boxing-2-rhythm-exercise---musical-journey', + esrb_rating: '', + developers: "['Jupiter Corporation']", + genres: "['Miscellaneous', 'Exercise / Fitness']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Kazuya', + platform: 'Switch', + date: 1624914000000, + user_score: null, + link: '/game/switch/super-smash-bros-ultimate-kazuya', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 70, + title: 'Mario Golf: Super Rush', + platform: 'Switch', + date: 1624568400000, + user_score: 5.5, + link: '/game/switch/mario-golf-super-rush', + esrb_rating: 'E', + developers: "['Nintendo', ' Camelot Software Planning']", + genres: "['Sports', 'Individual', 'Golf', 'Arcade']", + }, + { + meta_score: 67, + title: 'Hyrule Warriors: Age of Calamity - Pulse of the Ancients', + platform: 'Switch', + date: 1623963600000, + user_score: 8.2, + link: '/game/switch/hyrule-warriors-age-of-calamity---pulse-of-the-ancients', + esrb_rating: '', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 77, + title: 'Game Builder Garage', + platform: 'Switch', + date: 1623358800000, + user_score: 7.8, + link: '/game/switch/game-builder-garage', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Application']", + }, + { + meta_score: 66, + title: 'DC Super Hero Girls: Teen Power', + platform: 'Switch', + date: 1622754000000, + user_score: 6.7, + link: '/game/switch/dc-super-hero-girls-teen-power', + esrb_rating: 'E10+', + developers: "['Nintendo', ' TOYBOX']", + genres: "['Action Adventure', 'Open-World']", + }, + { + meta_score: 71, + title: 'Miitopia', + platform: 'Switch', + date: 1621544400000, + user_score: 8.1, + link: '/game/switch/miitopia', + esrb_rating: 'E', + developers: "['Nintendo', ' GREZZO']", + genres: "['Action', 'Role-Playing', 'General']", + }, + { + meta_score: 74, + title: 'Famicom Detective Club: The Missing Heir', + platform: 'Switch', + date: 1620939600000, + user_score: 7.1, + link: '/game/switch/famicom-detective-club-the-missing-heir', + esrb_rating: 'T', + developers: "['Nintendo', ' Mages.']", + genres: "['Adventure', 'Visual Novel']", + }, + { + meta_score: 74, + title: 'Famicom Detective Club: The Girl Who Stands Behind', + platform: 'Switch', + date: 1620939600000, + user_score: 7.1, + link: '/game/switch/famicom-detective-club-the-girl-who-stands-behind', + esrb_rating: 'T', + developers: "['Nintendo', ' Mages.']", + genres: "['Adventure', 'Visual Novel']", + }, + { + meta_score: 79, + title: 'New Pokemon Snap', + platform: 'Switch', + date: 1619730000000, + user_score: 6.9, + link: '/game/switch/new-pokemon-snap', + esrb_rating: 'E', + developers: "['Bandai Namco Games', ' The Pokemon Company']", + genres: "['Action', 'Shooter', 'Rail']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Pyra / Mythra', + platform: 'Switch', + date: 1614808800000, + user_score: 7.7, + link: '/game/switch/super-smash-bros-ultimate-pyra-mythra', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: null, + title: 'Project Triangle Strategy Debut Demo', + platform: 'Switch', + date: 1613512800000, + user_score: null, + link: '/game/switch/project-triangle-strategy-debut-demo', + esrb_rating: '', + developers: "['Square Enix', ' Nintendo']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 89, + title: "Super Mario 3D World + Bowser's Fury", + platform: 'Switch', + date: 1613080800000, + user_score: 8.7, + link: '/game/switch/super-mario-3d-world-+-bowsers-fury', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Sephiroth', + platform: 'Switch', + date: 1608588000000, + user_score: 7.7, + link: '/game/switch/super-smash-bros-ultimate-sephiroth', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 66, + title: 'Fitness Boxing 2: Rhythm & Exercise', + platform: 'Switch', + date: 1607032800000, + user_score: 5.7, + link: '/game/switch/fitness-boxing-2-rhythm-exercise', + esrb_rating: 'E', + developers: "['Nintendo', ' Jupiter Corporation', ' Imagineer Co.', 'Ltd.']", + genres: "['Miscellaneous', 'Exercise / Fitness']", + }, + { + meta_score: 63, + title: 'Fire Emblem: Shadow Dragon & the Blade of Light', + platform: 'Switch', + date: 1607032800000, + user_score: 7.8, + link: '/game/switch/fire-emblem-shadow-dragon-the-blade-of-light', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 78, + title: 'Hyrule Warriors: Age of Calamity', + platform: 'Switch', + date: 1605823200000, + user_score: 8, + link: '/game/switch/hyrule-warriors-age-of-calamity', + esrb_rating: 'T', + developers: "['Omega Force', ' Koei Tecmo Games']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: null, + title: 'Pokemon Sword + Pokemon Sword Expansion Pass', + platform: 'Switch', + date: 1604613600000, + user_score: 6.5, + link: '/game/switch/pokemon-sword-+-pokemon-sword-expansion-pass', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: 'Pokemon Shield + Pokemon Shield Expansion Pass', + platform: 'Switch', + date: 1604613600000, + user_score: 6.4, + link: '/game/switch/pokemon-shield-+-pokemon-shield-expansion-pass', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 85, + title: 'Pikmin 3 Deluxe', + platform: 'Switch', + date: 1604008800000, + user_score: 8.6, + link: '/game/switch/pikmin-3-deluxe', + esrb_rating: 'E10+', + developers: "['Eighting', ' Nintendo']", + genres: "['Strategy', 'Real-Time', 'General']", + }, + { + meta_score: 78, + title: 'Part Time UFO', + platform: 'Switch', + date: 1603836000000, + user_score: 7.5, + link: '/game/switch/part-time-ufo', + esrb_rating: 'E10+', + developers: "['HAL Labs']", + genres: "['Action', 'Arcade']", + }, + { + meta_score: null, + title: 'Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda - Complete Edition', + platform: 'Switch', + date: 1603400400000, + user_score: 8.8, + link: '/game/switch/cadence-of-hyrule-crypt-of-the-necrodancer-featuring-the-legend-of-zelda---complete-edition', + esrb_rating: 'E', + developers: "['Brace Yourself Games']", + genres: "['Action', 'Rhythm', 'Music']", + }, + { + meta_score: 75, + title: 'Pokemon Sword / Shield: The Crown Tundra', + platform: 'Switch', + date: 1603314000000, + user_score: 7.1, + link: '/game/switch/pokemon-sword-shield-the-crown-tundra', + esrb_rating: '', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 75, + title: 'Mario Kart Live: Home Circuit', + platform: 'Switch', + date: 1602795600000, + user_score: 7.1, + link: '/game/switch/mario-kart-live-home-circuit', + esrb_rating: 'E', + developers: "['Nintendo', ' Velan Studios']", + genres: "['Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Steve & Alex', + platform: 'Switch', + date: 1602536400000, + user_score: 7.6, + link: '/game/switch/super-smash-bros-ultimate-steve-alex', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: null, + title: 'Mario Kart 8 Deluxe + Super Mario Party', + platform: 'Switch', + date: 1601758800000, + user_score: null, + link: '/game/switch/mario-kart-8-deluxe-+-super-mario-party', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Compilation']", + }, + { + meta_score: 75, + title: 'Super Mario Bros. 35', + platform: 'Switch', + date: 1601499600000, + user_score: 7.6, + link: '/game/switch/super-mario-bros-35', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda - DLC 3 Story Pack: Symphony of the Mask', + platform: 'Switch', + date: 1600808400000, + user_score: null, + link: '/game/switch/cadence-of-hyrule-crypt-of-the-necrodancer-featuring-the-legend-of-zelda---dlc-3-story-pack-symphony-of-the-mask', + esrb_rating: 'E', + developers: "['Brace Yourself Games']", + genres: "['Action', 'Rhythm', 'Music']", + }, + { + meta_score: 65, + title: 'Kirby Fighters 2', + platform: 'Switch', + date: 1600808400000, + user_score: 7.9, + link: '/game/switch/kirby-fighters-2', + esrb_rating: 'E', + developers: "['Nintendo', ' HAL Labs']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 82, + title: 'Super Mario 3D All-Stars', + platform: 'Switch', + date: 1600376400000, + user_score: 6.4, + link: '/game/switch/super-mario-3d-all-stars', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Compilation']", + }, + { + meta_score: null, + title: 'Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda - DLC 2 Melody Pack', + platform: 'Switch', + date: 1598389200000, + user_score: null, + link: '/game/switch/cadence-of-hyrule-crypt-of-the-necrodancer-featuring-the-legend-of-zelda---dlc-2-melody-pack', + esrb_rating: 'E', + developers: "['Brace Yourself Games']", + genres: "['Action', 'Rhythm', 'Music']", + }, + { + meta_score: null, + title: 'Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda - DLC 1 Character Pack', + platform: 'Switch', + date: 1595192400000, + user_score: null, + link: '/game/switch/cadence-of-hyrule-crypt-of-the-necrodancer-featuring-the-legend-of-zelda---dlc-1-character-pack', + esrb_rating: 'E', + developers: "['Brace Yourself Games']", + genres: "['Action', 'Rhythm', 'Music']", + }, + { + meta_score: 80, + title: 'Paper Mario: The Origami King', + platform: 'Switch', + date: 1594933200000, + user_score: 7, + link: '/game/switch/paper-mario-the-origami-king', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Role-Playing', 'General']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Min Min', + platform: 'Switch', + date: 1593378000000, + user_score: 8.2, + link: '/game/switch/super-smash-bros-ultimate-min-min', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 64, + title: 'Pokemon Cafe Mix', + platform: 'Switch', + date: 1592859600000, + user_score: 6.2, + link: '/game/switch/pokemon-cafe-mix', + esrb_rating: 'E', + developers: "['Genius Sonority Inc.', ' The Pokemon Company']", + genres: "['Puzzle', 'Matching']", + }, + { + meta_score: 69, + title: 'Pokemon Sword / Shield: The Isle of Armor', + platform: 'Switch', + date: 1592341200000, + user_score: 5.2, + link: '/game/switch/pokemon-sword-shield-the-isle-of-armor', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: 'Jump Rope Challenge', + platform: 'Switch', + date: 1592168400000, + user_score: 6.9, + link: '/game/switch/jump-rope-challenge', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'Miscellaneous', 'Exercise / Fitness']", + }, + { + meta_score: 82, + title: 'Clubhouse Games: 51 Worldwide Classics', + platform: 'Switch', + date: 1591304400000, + user_score: 7.7, + link: '/game/switch/clubhouse-games-51-worldwide-classics', + esrb_rating: 'E', + developers: "['Nintendo', ' Nd Cube']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 89, + title: 'Xenoblade Chronicles: Definitive Edition', + platform: 'Switch', + date: 1590699600000, + user_score: 8.8, + link: '/game/switch/xenoblade-chronicles-definitive-edition', + esrb_rating: 'T', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: null, + title: 'Arcade Archives: Vs. Wrecking Crew', + platform: 'Switch', + date: 1588280400000, + user_score: null, + link: '/game/switch/arcade-archives-vs-wrecking-crew', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Marvel Ultimate Alliance 3: The Black Order - Expansion 3 - Fantastic Four: Shadow of Doom', + platform: 'Switch', + date: 1585173600000, + user_score: 7.9, + link: '/game/switch/marvel-ultimate-alliance-3-the-black-order---expansion-3---fantastic-four-shadow-of-doom', + esrb_rating: 'T', + developers: "['Team Ninja']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 78, + title: 'Good Job!', + platform: 'Switch', + date: 1585173600000, + user_score: 8, + link: '/game/switch/good-job!', + esrb_rating: 'E', + developers: "['Nintendo', ' Paladin Studios']", + genres: "['Puzzle', 'Action', 'General']", + }, + { + meta_score: 90, + title: 'Animal Crossing: New Horizons', + platform: 'Switch', + date: 1584655200000, + user_score: 5.6, + link: '/game/switch/animal-crossing-new-horizons', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 69, + title: 'Pokemon Mystery Dungeon: Rescue Team DX', + platform: 'Switch', + date: 1583445600000, + user_score: 8.1, + link: '/game/switch/pokemon-mystery-dungeon-rescue-team-dx', + esrb_rating: 'E', + developers: "['Spike Chunsoft']", + genres: "['Role-Playing', 'Roguelike']", + }, + { + meta_score: null, + title: "Luigi's Mansion 3: Multiplayer Pack 1 & 2", + platform: 'Switch', + date: 1583272800000, + user_score: null, + link: '/game/switch/luigis-mansion-3-multiplayer-pack-1-2', + esrb_rating: '', + developers: "['Next Level Games']", + genres: "['Action Adventure', 'General']", + }, + { + meta_score: 75, + title: 'Fire Emblem: Three Houses - Side Story: Cindered Shadows', + platform: 'Switch', + date: 1581544800000, + user_score: 8.1, + link: '/game/switch/fire-emblem-three-houses---side-story-cindered-shadows', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Pokemon HOME', + platform: 'iOS', + date: 1581372000000, + user_score: 3.9, + link: '/game/ios/pokemon-home', + esrb_rating: '', + developers: "['Game Freak', ' ILCA', ' Inc.']", + genres: "['Miscellaneous', 'Application']", + }, + { + meta_score: null, + title: 'Pokemon HOME', + platform: 'Switch', + date: 1581372000000, + user_score: 3.1, + link: '/game/switch/pokemon-home', + esrb_rating: 'E', + developers: "['Game Freak', ' ILCA', ' Inc.']", + genres: "['Miscellaneous', 'Application']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Byleth', + platform: 'Switch', + date: 1580162400000, + user_score: 7.1, + link: '/game/switch/super-smash-bros-ultimate-byleth', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 81, + title: 'Tokyo Mirage Sessions #FE Encore', + platform: 'Switch', + date: 1579212000000, + user_score: 6.2, + link: '/game/switch/tokyo-mirage-sessions-fe-encore', + esrb_rating: 'T', + developers: "['Atlus']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: 64, + title: "Dr. Kawashima's Brain Training for Nintendo Switch", + platform: 'Switch', + date: 1578002400000, + user_score: 6.4, + link: '/game/switch/dr-kawashimas-brain-training-for-nintendo-switch', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Edutainment']", + }, + { + meta_score: null, + title: 'Arcade Archives: Vs. Balloon Fight', + platform: 'Switch', + date: 1577397600000, + user_score: null, + link: '/game/switch/arcade-archives-vs-balloon-fight', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Arcade']", + }, + { + meta_score: null, + title: 'Marvel Ultimate Alliance 3: The Black Order - Expansion 2: Rise of the Phoenix', + platform: 'Switch', + date: 1577052000000, + user_score: null, + link: '/game/switch/marvel-ultimate-alliance-3-the-black-order---expansion-2-rise-of-the-phoenix', + esrb_rating: 'T', + developers: "['Team Ninja']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 80, + title: 'Pokemon Shield', + platform: 'Switch', + date: 1573768800000, + user_score: 4.7, + link: '/game/switch/pokemon-shield', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 80, + title: 'Pokemon Sword', + platform: 'Switch', + date: 1573768800000, + user_score: 4.7, + link: '/game/switch/pokemon-sword', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 80, + title: 'Pokemon Sword / Shield Dual Pack', + platform: 'Switch', + date: 1573768800000, + user_score: 4.4, + link: '/game/switch/pokemon-sword-shield-dual-pack', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 73, + title: "Layton's Mystery Journey: Katrielle and The Millionaires' Conspiracy - Deluxe Edition", + platform: 'Switch', + date: 1573164000000, + user_score: 6.8, + link: '/game/switch/laytons-mystery-journey-katrielle-and-the-millionaires-conspiracy---deluxe-edition', + esrb_rating: 'E10+', + developers: "['Level 5', ' h.a.n.d. Inc.']", + genres: "['Puzzle', 'General']", + }, + { + meta_score: 75, + title: 'The Stretchers', + platform: 'Switch', + date: 1573164000000, + user_score: 7.2, + link: '/game/switch/the-stretchers', + esrb_rating: 'E', + developers: "['Tarsier Studios']", + genres: "['Action', 'General']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Terry Bogard', + platform: 'Switch', + date: 1572991200000, + user_score: 7.6, + link: '/game/switch/super-smash-bros-ultimate-terry-bogard', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 86, + title: "Luigi's Mansion 3", + platform: 'Switch', + date: 1572472800000, + user_score: 8.4, + link: '/game/switch/luigis-mansion-3', + esrb_rating: 'E', + developers: "['Next Level Games', ' Nintendo']", + genres: "['Action Adventure', 'General']", + }, + { + meta_score: 83, + title: 'Ring Fit Adventure', + platform: 'Switch', + date: 1571346000000, + user_score: 8.6, + link: '/game/switch/ring-fit-adventure', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Exercise / Fitness']", + }, + { + meta_score: 64, + title: 'Little Town Hero', + platform: 'Switch', + date: 1571173200000, + user_score: 4.7, + link: '/game/switch/little-town-hero', + esrb_rating: 'E10+', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: null, + title: 'Marvel Ultimate Alliance 3: The Black Order - Expansion 1: Curse of the Vampire', + platform: 'Switch', + date: 1569790800000, + user_score: null, + link: '/game/switch/marvel-ultimate-alliance-3-the-black-order---expansion-1-curse-of-the-vampire', + esrb_rating: 'T', + developers: "['Team Ninja']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 91, + title: 'Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition', + platform: 'Switch', + date: 1569531600000, + user_score: 8.6, + link: '/game/switch/dragon-quest-xi-s-echoes-of-an-elusive-age---definitive-edition', + esrb_rating: 'T', + developers: "['Square Enix']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: 59, + title: 'Mario Kart Tour', + platform: 'iOS', + date: 1569358800000, + user_score: 4.2, + link: '/game/ios/mario-kart-tour', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: 87, + title: "The Legend of Zelda: Link's Awakening", + platform: 'Switch', + date: 1568926800000, + user_score: 8.4, + link: '/game/switch/the-legend-of-zelda-links-awakening', + esrb_rating: 'E', + developers: "['Nintendo', ' GREZZO']", + genres: "['Action Adventure', 'Open-World']", + }, + { + meta_score: 69, + title: 'Daemon X Machina', + platform: 'Switch', + date: 1568322000000, + user_score: 7.6, + link: '/game/switch/daemon-x-machina', + esrb_rating: 'T', + developers: "['First Studio', ' Marvelous First Studio']", + genres: "['Simulation', 'Vehicle', 'Combat']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Banjo & Kazooie', + platform: 'Switch', + date: 1567544400000, + user_score: 8.1, + link: '/game/switch/super-smash-bros-ultimate-banjo-kazooie', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 74, + title: 'Super Kirby Clash', + platform: 'Switch', + date: 1567544400000, + user_score: 7.5, + link: '/game/switch/super-kirby-clash', + esrb_rating: 'E', + developers: "['Nintendo', ' HAL Labs']", + genres: "['Action', 'General']", + }, + { + meta_score: null, + title: 'Arcade Archives: Pinball', + platform: 'Switch', + date: 1567112400000, + user_score: null, + link: '/game/switch/arcade-archives-pinball', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Pinball']", + }, + { + meta_score: 87, + title: 'Astral Chain', + platform: 'Switch', + date: 1567112400000, + user_score: 8.9, + link: '/game/switch/astral-chain', + esrb_rating: 'T', + developers: "['PlatinumGames']", + genres: "['Action Adventure', 'General']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Hero', + platform: 'Switch', + date: 1564434000000, + user_score: 7.8, + link: '/game/switch/super-smash-bros-ultimate-hero', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 89, + title: 'Fire Emblem: Three Houses', + platform: 'Switch', + date: 1564088400000, + user_score: 8.8, + link: '/game/switch/fire-emblem-three-houses', + esrb_rating: 'T', + developers: "['Intelligent Systems', ' Koei Tecmo Games']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 73, + title: 'Marvel Ultimate Alliance 3: The Black Order', + platform: 'Switch', + date: 1563483600000, + user_score: 7.3, + link: '/game/switch/marvel-ultimate-alliance-3-the-black-order', + esrb_rating: 'T', + developers: "['Team Ninja']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 58, + title: 'Dr. Mario World', + platform: 'iOS', + date: 1562706000000, + user_score: 3.4, + link: '/game/ios/dr-mario-world', + esrb_rating: '', + developers: "['Nintendo', ' LINE Corporation']", + genres: "['Puzzle', 'Action']", + }, + { + meta_score: null, + title: 'Arcade Archives: Clu Clu Land', + platform: 'Switch', + date: 1561669200000, + user_score: null, + link: '/game/switch/arcade-archives-clu-clu-land', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Arcade']", + }, + { + meta_score: 88, + title: 'Super Mario Maker 2', + platform: 'Switch', + date: 1561669200000, + user_score: 8.5, + link: '/game/switch/super-mario-maker-2', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 85, + title: 'Cadence of Hyrule: Crypt of the NecroDancer Featuring The Legend of Zelda', + platform: 'Switch', + date: 1560373200000, + user_score: 8, + link: '/game/switch/cadence-of-hyrule-crypt-of-the-necrodancer-featuring-the-legend-of-zelda', + esrb_rating: 'E', + developers: "['Brace Yourself Games']", + genres: "['Action', 'Rhythm', 'Music']", + }, + { + meta_score: 71, + title: 'Nintendo Labo: Toycon 04 VR Kit', + platform: 'Switch', + date: 1557608400000, + user_score: 6.6, + link: '/game/switch/nintendo-labo-toycon-04-vr-kit', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'General']", + }, + { + meta_score: null, + title: 'Tetris 99: Big Block', + platform: 'Switch', + date: 1557435600000, + user_score: 5.9, + link: '/game/switch/tetris-99-big-block', + esrb_rating: 'E', + developers: "['Arika']", + genres: "['Puzzle', 'Stacking']", + }, + { + meta_score: 81, + title: 'BoxBoy! + BoxGirl!', + platform: 'Switch', + date: 1556226000000, + user_score: 8, + link: '/game/switch/boxboy!-+-boxgirl!', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Puzzle', 'Action']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Joker', + platform: 'Switch', + date: 1555448400000, + user_score: 8.1, + link: '/game/switch/super-smash-bros-ultimate-joker', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 79, + title: "Yoshi's Crafted World", + platform: 'Switch', + date: 1553724000000, + user_score: 7.8, + link: '/game/switch/yoshis-crafted-world', + esrb_rating: 'E', + developers: "['Good-Feel']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: 81, + title: 'Captain Toad: Treasure Tracker - Special Episode', + platform: 'Switch', + date: 1552514400000, + user_score: 8.2, + link: '/game/switch/captain-toad-treasure-tracker---special-episode', + esrb_rating: '', + developers: "['Nintendo Software Technology']", + genres: "['Puzzle', 'Action', 'Platformer', '3D']", + }, + { + meta_score: 79, + title: "Kirby's Extra Epic Yarn", + platform: '3DS', + date: 1551996000000, + user_score: 6.7, + link: '/game/3ds/kirbys-extra-epic-yarn', + esrb_rating: 'E', + developers: "['Good-Feel']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Arcade Archives: Vs. Ice Climber', + platform: 'Switch', + date: 1550786400000, + user_score: 7.3, + link: '/game/switch/arcade-archives-vs-ice-climber', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 83, + title: 'Tetris 99', + platform: 'Switch', + date: 1550008800000, + user_score: 8.1, + link: '/game/switch/tetris-99', + esrb_rating: 'E', + developers: "['Arika', ' Nintendo']", + genres: "['Puzzle', 'Stacking']", + }, + { + meta_score: null, + title: 'Daemon X Machina: Prototype Missions', + platform: 'Switch', + date: 1550008800000, + user_score: 6.6, + link: '/game/switch/daemon-x-machina-prototype-missions', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Simulation', 'Vehicle', 'Combat']", + }, + { + meta_score: 80, + title: 'Yo-kai Watch 3', + platform: '3DS', + date: 1549576800000, + user_score: 8.4, + link: '/game/3ds/yo-kai-watch-3', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: 'Super Smash Bros. Ultimate: Piranha Plant', + platform: 'Switch', + date: 1548712800000, + user_score: 7.1, + link: '/game/switch/super-smash-bros-ultimate-piranha-plant', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 67, + title: 'Travis Strikes Again: No More Heroes', + platform: 'Switch', + date: 1547762400000, + user_score: 7.8, + link: '/game/switch/travis-strikes-again-no-more-heroes', + esrb_rating: 'M', + developers: "['Grasshopper Manufacture']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 84, + title: "Mario & Luigi: Bowser's Inside Story + Bowser Jr.'s Journey", + platform: '3DS', + date: 1547157600000, + user_score: 7.8, + link: '/game/3ds/mario-luigi-bowsers-inside-story-+-bowser-jrs-journey', + esrb_rating: 'E', + developers: "['Nintendo', ' Alphadream Corporation']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: 80, + title: 'New Super Mario Bros. U Deluxe', + platform: 'Switch', + date: 1547157600000, + user_score: 7, + link: '/game/switch/new-super-mario-bros-u-deluxe', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 66, + title: 'Fitness Boxing', + platform: 'Switch', + date: 1546552800000, + user_score: 6.5, + link: '/game/switch/fitness-boxing', + esrb_rating: 'T', + developers: "['Imagineer Co.', 'Ltd.']", + genres: "['Miscellaneous', 'Exercise / Fitness']", + }, + { + meta_score: 93, + title: 'Super Smash Bros. Ultimate', + platform: 'Switch', + date: 1544133600000, + user_score: 8.6, + link: '/game/switch/super-smash-bros-ultimate', + esrb_rating: 'E10+', + developers: "['Nintendo', ' HAL Labs', ' Bandai Namco Games', ' Sora Ltd.']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 80, + title: "Pokemon: Let's Go, Eevee!", + platform: 'Switch', + date: 1542319200000, + user_score: 6.4, + link: '/game/switch/pokemon-lets-go-eevee!', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Action RPG', 'Role-Playing', 'Trainer']", + }, + { + meta_score: 79, + title: "Pokemon: Let's Go, Pikachu!", + platform: 'Switch', + date: 1542319200000, + user_score: 6.3, + link: '/game/switch/pokemon-lets-go-pikachu!', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Action RPG', 'Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: 'Arcade Archives: Urban Champion', + platform: 'Switch', + date: 1541714400000, + user_score: null, + link: '/game/switch/arcade-archives-urban-champion', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 77, + title: 'The World Ends with You: Final Remix', + platform: 'Switch', + date: 1539291600000, + user_score: 7.4, + link: '/game/switch/the-world-ends-with-you-final-remix', + esrb_rating: 'T', + developers: "['Square Enix', ' h.a.n.d. Inc.', ' Jupiter Corporation']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 74, + title: "Luigi's Mansion", + platform: '3DS', + date: 1539291600000, + user_score: 8.1, + link: '/game/3ds/luigis-mansion', + esrb_rating: 'E', + developers: "['Nintendo', ' GREZZO']", + genres: "['Action Adventure', 'General']", + }, + { + meta_score: 76, + title: 'Super Mario Party', + platform: 'Switch', + date: 1538686800000, + user_score: 7, + link: '/game/switch/super-mario-party', + esrb_rating: 'E', + developers: "['Nintendo', ' Nd Cube']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 69, + title: 'Dragalia Lost', + platform: 'iOS', + date: 1537995600000, + user_score: 7.7, + link: '/game/ios/dragalia-lost', + esrb_rating: 'T', + developers: "['Cygames']", + genres: "['Role-Playing', 'General']", + }, + { + meta_score: null, + title: 'Yo-kai Watch Blasters: Moon Rabbit Crew', + platform: '3DS', + date: 1537995600000, + user_score: 7.5, + link: '/game/3ds/yo-kai-watch-blasters-moon-rabbit-crew', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: null, + title: 'Arcade Archives: Excitebike', + platform: 'Switch', + date: 1537477200000, + user_score: null, + link: '/game/switch/arcade-archives-excitebike', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: 80, + title: 'Xenoblade Chronicles 2: Torna ~ The Golden Country', + platform: 'Switch', + date: 1536872400000, + user_score: 8.5, + link: '/game/switch/xenoblade-chronicles-2-torna-the-golden-country', + esrb_rating: 'T', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 69, + title: 'Nintendo Labo: Toycon 03 Vehicle Kit', + platform: 'Switch', + date: 1536872400000, + user_score: 7.2, + link: '/game/switch/nintendo-labo-toycon-03-vehicle-kit', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 67, + title: 'Yo-kai Watch Blasters: Red Cat Corps', + platform: '3DS', + date: 1536267600000, + user_score: 6.8, + link: '/game/3ds/yo-kai-watch-blasters-red-cat-corps', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 67, + title: 'Yo-kai Watch Blasters: White Dog Squad', + platform: '3DS', + date: 1536267600000, + user_score: 7.1, + link: '/game/3ds/yo-kai-watch-blasters-white-dog-squad', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 78, + title: 'WarioWare Gold', + platform: '3DS', + date: 1533243600000, + user_score: 8.2, + link: '/game/3ds/warioware-gold', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 62, + title: 'Go Vacation', + platform: 'Switch', + date: 1532638800000, + user_score: 7.7, + link: '/game/switch/go-vacation', + esrb_rating: 'E', + developers: "['Bandai Namco Games']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Xenoblade Chronicles 2: New Quests Pack 4', + platform: 'Switch', + date: 1532552400000, + user_score: 8.3, + link: '/game/switch/xenoblade-chronicles-2-new-quests-pack-4', + esrb_rating: '', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 82, + title: 'Captain Toad: Treasure Tracker', + platform: 'Switch', + date: 1531429200000, + user_score: 7.9, + link: '/game/switch/captain-toad-treasure-tracker', + esrb_rating: 'E', + developers: "['Nintendo EAD Tokyo ', ' Nintendo Software Technology']", + genres: "['Puzzle', 'Action', 'Platformer', '3D']", + }, + { + meta_score: 79, + title: 'Captain Toad: Treasure Tracker', + platform: '3DS', + date: 1531429200000, + user_score: 7, + link: '/game/3ds/captain-toad-treasure-tracker', + esrb_rating: 'E', + developers: "['Nintendo EAD Tokyo ', ' Nintendo Software Technology']", + genres: "['Puzzle', 'Action', 'Platformer', '3D']", + }, + { + meta_score: 83, + title: 'Octopath Traveler', + platform: 'Switch', + date: 1531342800000, + user_score: 8.4, + link: '/game/switch/octopath-traveler', + esrb_rating: 'T', + developers: "['Square Enix', ' Acquire']", + genres: "['General', 'Role-Playing', 'Japanese-Style']", + }, + { + meta_score: 75, + title: 'Mario Tennis Aces', + platform: 'Switch', + date: 1529614800000, + user_score: 7, + link: '/game/switch/mario-tennis-aces', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Individual', 'Tennis']", + }, + { + meta_score: 82, + title: 'Arcade Archives: Donkey Kong', + platform: 'Switch', + date: 1528923600000, + user_score: 7.7, + link: '/game/switch/arcade-archives-donkey-kong', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 82, + title: 'Splatoon 2: Octo Expansion', + platform: 'Switch', + date: 1528837200000, + user_score: 8.5, + link: '/game/switch/splatoon-2-octo-expansion', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Shooter', 'Third-Person', 'Arcade']", + }, + { + meta_score: null, + title: 'Xenoblade Chronicles 2: Battle Challenge Mode Pack', + platform: 'Switch', + date: 1528837200000, + user_score: 8.9, + link: '/game/switch/xenoblade-chronicles-2-battle-challenge-mode-pack', + esrb_rating: 'T', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: null, + title: 'Sushi Striker: The Way of Sushido', + platform: '3DS', + date: 1528405200000, + user_score: 6.6, + link: '/game/3ds/sushi-striker-the-way-of-sushido', + esrb_rating: 'E', + developers: "['indieszero']", + genres: "['Puzzle', 'Matching']", + }, + { + meta_score: 76, + title: 'Sushi Striker: The Way of Sushido', + platform: 'Switch', + date: 1528405200000, + user_score: 7.7, + link: '/game/switch/sushi-striker-the-way-of-sushido', + esrb_rating: 'E', + developers: "['indieszero']", + genres: "['Puzzle', 'Matching']", + }, + { + meta_score: 62, + title: 'Pokemon Quest', + platform: 'iOS', + date: 1527627600000, + user_score: 4.1, + link: '/game/ios/pokemon-quest', + esrb_rating: '', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 64, + title: 'Pokemon Quest', + platform: 'Switch', + date: 1527541200000, + user_score: 6, + link: '/game/switch/pokemon-quest', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: null, + title: 'Xenoblade Chronicles 2: New Quests Pack 3', + platform: 'Switch', + date: 1527195600000, + user_score: 8.9, + link: '/game/switch/xenoblade-chronicles-2-new-quests-pack-3', + esrb_rating: 'T', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 69, + title: "Dillon's Dead-Heat Breakers", + platform: '3DS', + date: 1527109200000, + user_score: 7.7, + link: '/game/3ds/dillons-dead-heat-breakers', + esrb_rating: 'E10+', + developers: "['Nintendo', ' Vanpool']", + genres: "['Action', 'General']", + }, + { + meta_score: 78, + title: 'Hyrule Warriors: Definitive Edition', + platform: 'Switch', + date: 1526590800000, + user_score: 7.9, + link: '/game/switch/hyrule-warriors-definitive-edition', + esrb_rating: 'T', + developers: "['Koei Tecmo Games']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 86, + title: 'Donkey Kong Country: Tropical Freeze', + platform: 'Switch', + date: 1525381200000, + user_score: 8.6, + link: '/game/switch/donkey-kong-country-tropical-freeze', + esrb_rating: 'E', + developers: "['Retro Studios']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 77, + title: 'Nintendo Labo: Toycon 01 Variety Kit', + platform: 'Switch', + date: 1524171600000, + user_score: 6.9, + link: '/game/switch/nintendo-labo-toycon-01-variety-kit', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 68, + title: 'Nintendo Labo: Toycon 02 Robot Kit', + platform: 'Switch', + date: 1524171600000, + user_score: 6.5, + link: '/game/switch/nintendo-labo-toycon-02-robot-kit', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Arcade Archives: Punch-Out!', + platform: 'Switch', + date: 1522357200000, + user_score: 7.5, + link: '/game/switch/arcade-archives-punch-out!', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Sports', 'Individual', 'Combat', 'Boxing / Martial Arts']", + }, + { + meta_score: null, + title: 'Xenoblade Chronicles 2: New Quests Pack 2', + platform: 'Switch', + date: 1522357200000, + user_score: 8.9, + link: '/game/switch/xenoblade-chronicles-2-new-quests-pack-2', + esrb_rating: 'T', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: null, + title: 'Fire Emblem Warriors: Awakening Pack', + platform: '3DS', + date: 1522270800000, + user_score: null, + link: '/game/3ds/fire-emblem-warriors-awakening-pack', + esrb_rating: 'T', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 71, + title: 'Detective Pikachu', + platform: '3DS', + date: 1521756000000, + user_score: 7.4, + link: '/game/3ds/detective-pikachu', + esrb_rating: 'E', + developers: "['Creatures Inc.']", + genres: "['Adventure', '3D', 'Third-Person']", + }, + { + meta_score: 73, + title: 'Kirby Star Allies', + platform: 'Switch', + date: 1521151200000, + user_score: 7.5, + link: '/game/switch/kirby-star-allies', + esrb_rating: 'E10+', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Kirby Star Allies Demo', + platform: 'Switch', + date: 1520114400000, + user_score: 6.6, + link: '/game/switch/kirby-star-allies-demo', + esrb_rating: '', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 90, + title: 'Bayonetta + Bayonetta 2', + platform: 'Switch', + date: 1518732000000, + user_score: 8.7, + link: '/game/switch/bayonetta-+-bayonetta-2', + esrb_rating: 'M', + developers: "['PlatinumGames']", + genres: "['Miscellaneous', 'Compilation']", + }, + { + meta_score: 92, + title: 'Bayonetta 2', + platform: 'Switch', + date: 1518732000000, + user_score: 8.6, + link: '/game/switch/bayonetta-2', + esrb_rating: 'M', + developers: "['Nintendo', ' PlatinumGames']", + genres: "['Action Adventure', 'Linear']", + }, + { + meta_score: 84, + title: 'Bayonetta', + platform: 'Switch', + date: 1518732000000, + user_score: 8.3, + link: '/game/switch/bayonetta', + esrb_rating: 'M', + developers: "['Nintendo', ' PlatinumGames']", + genres: "['Action Adventure', 'Linear']", + }, + { + meta_score: null, + title: 'Fire Emblem Warriors: Shadow Dragon Pack', + platform: 'Switch', + date: 1518559200000, + user_score: null, + link: '/game/switch/fire-emblem-warriors-shadow-dragon-pack', + esrb_rating: 'T', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: null, + title: 'Fire Emblem Warriors: Shadow Dragon Pack', + platform: '3DS', + date: 1518559200000, + user_score: null, + link: '/game/3ds/fire-emblem-warriors-shadow-dragon-pack', + esrb_rating: 'T', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 81, + title: 'Dragon Quest Builders', + platform: 'Switch', + date: 1518127200000, + user_score: 8, + link: '/game/switch/dragon-quest-builders', + esrb_rating: 'E10+', + developers: "['Square Enix']", + genres: "['Action Adventure', 'Sandbox']", + }, + { + meta_score: null, + title: 'Pokken Tournament DX: Battle Pack', + platform: 'Switch', + date: 1517349600000, + user_score: 6.6, + link: '/game/switch/pokken-tournament-dx-battle-pack', + esrb_rating: '', + developers: "['Bandai Namco Games']", + genres: "['Action', 'Fighting', '3D']", + }, + { + meta_score: null, + title: 'Xenoblade Chronicles 2: New Quests Pack 1', + platform: 'Switch', + date: 1517263200000, + user_score: 7.5, + link: '/game/switch/xenoblade-chronicles-2-new-quests-pack-1', + esrb_rating: '', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 57, + title: 'Kirby Battle Royale', + platform: '3DS', + date: 1516312800000, + user_score: 7, + link: '/game/3ds/kirby-battle-royale', + esrb_rating: 'E10+', + developers: "['Nintendo', ' HAL Labs']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 80, + title: 'Style Savvy: Styling Star', + platform: '3DS', + date: 1514152800000, + user_score: 7.6, + link: '/game/3ds/style-savvy-styling-star', + esrb_rating: 'E', + developers: "['Nintendo', ' syn Sophia']", + genres: "['Simulation', 'Virtual', 'Career']", + }, + { + meta_score: null, + title: 'Arcade Archives: Vs. Super Mario Bros.', + platform: 'Switch', + date: 1513893600000, + user_score: 7.2, + link: '/game/switch/arcade-archives-vs-super-mario-bros', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Fire Emblem Warriors: Fates Pack', + platform: 'Switch', + date: 1513807200000, + user_score: 7.6, + link: '/game/switch/fire-emblem-warriors-fates-pack', + esrb_rating: 'T', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: null, + title: 'Fire Emblem Warriors: Fates Pack', + platform: '3DS', + date: 1513807200000, + user_score: 9.1, + link: '/game/3ds/fire-emblem-warriors-fates-pack', + esrb_rating: 'T', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 81, + title: "The Legend of Zelda: Breath of the Wild - The Champions' Ballad", + platform: 'Switch', + date: 1512597600000, + user_score: 8.5, + link: '/game/switch/the-legend-of-zelda-breath-of-the-wild---the-champions-ballad', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Open-World']", + }, + { + meta_score: null, + title: "The Legend of Zelda: Breath of the Wild - The Champions' Ballad", + platform: 'WIIU', + date: 1512597600000, + user_score: 9, + link: '/game/wii-u/the-legend-of-zelda-breath-of-the-wild---the-champions-ballad', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Open-World']", + }, + { + meta_score: 83, + title: 'Xenoblade Chronicles 2', + platform: 'Switch', + date: 1512079200000, + user_score: 8.5, + link: '/game/switch/xenoblade-chronicles-2', + esrb_rating: 'T', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 72, + title: 'Animal Crossing: Pocket Camp', + platform: 'iOS', + date: 1511215200000, + user_score: 6.8, + link: '/game/ios/animal-crossing-pocket-camp', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 84, + title: 'Pokemon Ultra Sun', + platform: '3DS', + date: 1510869600000, + user_score: 7.7, + link: '/game/3ds/pokemon-ultra-sun', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 84, + title: 'Pokemon Ultra Moon', + platform: '3DS', + date: 1510869600000, + user_score: 7.6, + link: '/game/3ds/pokemon-ultra-moon', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: "Pokemon Ultra Sun & Pokemon Ultra Moon Veteran Trainer's Dual Pack", + platform: '3DS', + date: 1510869600000, + user_score: 6.3, + link: '/game/3ds/pokemon-ultra-sun-pokemon-ultra-moon-veteran-trainers-dual-pack', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 77, + title: 'Ittle Dew 2+', + platform: 'Switch', + date: 1510610400000, + user_score: 7.8, + link: '/game/switch/ittle-dew-2+', + esrb_rating: 'E10+', + developers: "['Ludosity Interactive']", + genres: "['Role-Playing', 'Action Adventure', 'General', 'Action RPG']", + }, + { + meta_score: 59, + title: 'Mario Party: The Top 100', + platform: '3DS', + date: 1510264800000, + user_score: 6.2, + link: '/game/3ds/mario-party-the-top-100', + esrb_rating: 'E', + developers: "['Nintendo', ' Nd Cube']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 84, + title: 'Snipperclips Plus: Cut It Out, Together!', + platform: 'Switch', + date: 1510264800000, + user_score: 8, + link: '/game/switch/snipperclips-plus-cut-it-out-together!', + esrb_rating: 'E', + developers: "['SFB Games']", + genres: "['Puzzle', 'General']", + }, + { + meta_score: 97, + title: 'Super Mario Odyssey', + platform: 'Switch', + date: 1509051600000, + user_score: 8.9, + link: '/game/switch/super-mario-odyssey', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: 69, + title: 'Fire Emblem Warriors', + platform: '3DS', + date: 1508446800000, + user_score: 7.8, + link: '/game/3ds/fire-emblem-warriors', + esrb_rating: 'T', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 74, + title: 'Fire Emblem Warriors', + platform: 'Switch', + date: 1508446800000, + user_score: 7.7, + link: '/game/switch/fire-emblem-warriors', + esrb_rating: 'T', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 72, + title: "Layton's Mystery Journey: Katrielle and The Millionaires' Conspiracy", + platform: '3DS', + date: 1507237200000, + user_score: 6.3, + link: '/game/3ds/laytons-mystery-journey-katrielle-and-the-millionaires-conspiracy', + esrb_rating: 'E10+', + developers: "['Level 5', ' h.a.n.d. Inc.']", + genres: "['Puzzle', 'General']", + }, + { + meta_score: 81, + title: "Mario & Luigi: Superstar Saga + Bowser's Minions", + platform: '3DS', + date: 1507237200000, + user_score: 8.2, + link: '/game/3ds/mario-luigi-superstar-saga-+-bowsers-minions', + esrb_rating: 'E', + developers: "['Alphadream Corporation']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: 73, + title: 'Yo-kai Watch 2: Psychic Specters', + platform: '3DS', + date: 1506632400000, + user_score: 8.5, + link: '/game/3ds/yo-kai-watch-2-psychic-specters', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: 'Hive Jump', + platform: 'WIIU', + date: 1506546000000, + user_score: null, + link: '/game/wii-u/hive-jump', + esrb_rating: 'E10+', + developers: "['Graphite Lab']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Monster Hunter Stories: The Legend of Zelda', + platform: '3DS', + date: 1506546000000, + user_score: null, + link: '/game/3ds/monster-hunter-stories-the-legend-of-zelda', + esrb_rating: 'E10+', + developers: "['Capcom']", + genres: "['Role-Playing', 'Action RPG', 'Japanese-Style']", + }, + { + meta_score: null, + title: 'Arcade Archives: Mario Bros.', + platform: 'Switch', + date: 1506459600000, + user_score: 6.7, + link: '/game/switch/arcade-archives-mario-bros', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 75, + title: 'Dragon Ball: Xenoverse 2', + platform: 'Switch', + date: 1506027600000, + user_score: 7.5, + link: '/game/switch/dragon-ball-xenoverse-2', + esrb_rating: 'T', + developers: "['Dimps Corporation']", + genres: "['Action', 'Fighting', '3D']", + }, + { + meta_score: 79, + title: 'Pokken Tournament DX', + platform: 'Switch', + date: 1506027600000, + user_score: 7.3, + link: '/game/switch/pokken-tournament-dx', + esrb_rating: 'E10+', + developers: "['Bandai Namco Games']", + genres: "['Action', 'Fighting', '3D']", + }, + { + meta_score: 85, + title: 'Metroid: Samus Returns', + platform: '3DS', + date: 1505422800000, + user_score: 8.7, + link: '/game/3ds/metroid-samus-returns', + esrb_rating: 'E10+', + developers: "['Mercury Steam']", + genres: "['Action', 'Action Adventure', 'Platformer', 'Open-World', '', 'Metroidvania']", + }, + { + meta_score: null, + title: 'ARMS: Lola Pop', + platform: 'Switch', + date: 1505250000000, + user_score: null, + link: '/game/switch/arms-lola-pop', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '3D']", + }, + { + meta_score: 79, + title: 'Monster Hunter Stories', + platform: '3DS', + date: 1504818000000, + user_score: 8.2, + link: '/game/3ds/monster-hunter-stories', + esrb_rating: 'E10+', + developers: "['Capcom']", + genres: "['Role-Playing', 'Action RPG', 'Japanese-Style']", + }, + { + meta_score: 70, + title: 'Sine Mora EX', + platform: 'Switch', + date: 1502139600000, + user_score: 7.2, + link: '/game/switch/sine-mora-ex', + esrb_rating: 'M', + developers: "['Grasshopper Manufacture']", + genres: "['Action', 'Shooter', \"Shoot-'Em-Up\", 'Horizontal']", + }, + { + meta_score: 69, + title: 'Hey! Pikmin', + platform: '3DS', + date: 1501189200000, + user_score: 6.6, + link: '/game/3ds/hey!-pikmin', + esrb_rating: 'E10+', + developers: "['Nintendo', ' Arzest']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 67, + title: 'Miitopia', + platform: '3DS', + date: 1501189200000, + user_score: 7.9, + link: '/game/3ds/miitopia', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Role-Playing', 'General']", + }, + { + meta_score: 83, + title: 'Splatoon 2', + platform: 'Switch', + date: 1500584400000, + user_score: 8.4, + link: '/game/switch/splatoon-2', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Shooter', 'Third-Person', 'Arcade']", + }, + { + meta_score: 73, + title: "Layton's Mystery Journey: Katrielle and The Millionaire's Conspiracy", + platform: 'iOS', + date: 1500498000000, + user_score: 7.3, + link: '/game/ios/laytons-mystery-journey-katrielle-and-the-millionaires-conspiracy', + esrb_rating: '', + developers: "['Level 5', ' h.a.n.d. Inc.']", + genres: "['Puzzle', 'General']", + }, + { + meta_score: null, + title: 'Miitopia: Casting Call', + platform: '3DS', + date: 1499893200000, + user_score: 7.1, + link: '/game/3ds/miitopia-casting-call', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Application']", + }, + { + meta_score: null, + title: 'ARMS: Max Brass', + platform: 'Switch', + date: 1499806800000, + user_score: 7.3, + link: '/game/switch/arms-max-brass', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '3D']", + }, + { + meta_score: 53, + title: 'Flip Wars', + platform: 'Switch', + date: 1499288400000, + user_score: 5.9, + link: '/game/switch/flip-wars', + esrb_rating: 'T', + developers: "['OVER FENCE CO.', 'LTD.', ' Over Fence']", + genres: "['Puzzle', 'General']", + }, + { + meta_score: 69, + title: "Kirby's Blowout Blast", + platform: '3DS', + date: 1499288400000, + user_score: 7, + link: '/game/3ds/kirbys-blowout-blast', + esrb_rating: 'E', + developers: "['Nintendo', ' HAL Labs']", + genres: "['Action', 'General']", + }, + { + meta_score: 78, + title: 'The Legend of Zelda: Breath of the Wild - The Master Trials', + platform: 'Switch', + date: 1498770000000, + user_score: 7.7, + link: '/game/switch/the-legend-of-zelda-breath-of-the-wild---the-master-trials', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Open-World']", + }, + { + meta_score: null, + title: 'The Legend of Zelda: Breath of the Wild - The Master Trials', + platform: 'WIIU', + date: 1498770000000, + user_score: 8.6, + link: '/game/wii-u/the-legend-of-zelda-breath-of-the-wild---the-master-trials', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Open-World']", + }, + { + meta_score: 76, + title: 'Ever Oasis', + platform: '3DS', + date: 1498165200000, + user_score: 8.1, + link: '/game/3ds/ever-oasis', + esrb_rating: 'E10+', + developers: "['GREZZO']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Cipher Legends I', + platform: '3DS', + date: 1498078800000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---cipher-legends-i', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Cipher Legends II', + platform: '3DS', + date: 1498078800000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---cipher-legends-ii', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Cipher Companions Pack', + platform: '3DS', + date: 1498078800000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---cipher-companions-pack', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 77, + title: 'ARMS', + platform: 'Switch', + date: 1497560400000, + user_score: 7.1, + link: '/game/switch/arms', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Sports', 'Fighting', 'Individual', '3D', 'Combat', 'Boxing / Martial Arts']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Rise of the Deliverance Pack', + platform: '3DS', + date: 1496264400000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---rise-of-the-deliverance-pack', + esrb_rating: '', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Flight from the Ruins', + platform: '3DS', + date: 1496264400000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---flight-from-the-ruins', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Outpost Rescue', + platform: '3DS', + date: 1496264400000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---outpost-rescue', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Battle of Zofia Harbor', + platform: '3DS', + date: 1496264400000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---battle-of-zofia-harbor', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Siege of Zofia Castle', + platform: '3DS', + date: 1496264400000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---siege-of-zofia-castle', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'ARMS: Global Testpunch', + platform: 'Switch', + date: 1495746000000, + user_score: null, + link: '/game/switch/arms-global-testpunch', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '3D']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Undaunted Heroes Pack', + platform: '3DS', + date: 1495659600000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---undaunted-heroes-pack', + esrb_rating: '', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Inner Sanctum', + platform: '3DS', + date: 1495659600000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---inner-sanctum', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Lords of the Grave', + platform: '3DS', + date: 1495659600000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---lords-of-the-grave', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Lost Altars Pack', + platform: '3DS', + date: 1495659600000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---lost-altars-pack', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Wealth Before Health', + platform: '3DS', + date: 1495659600000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---wealth-before-health', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 81, + title: 'Fire Emblem Echoes: Shadows of Valentia', + platform: '3DS', + date: 1495141200000, + user_score: 8.6, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Fledging Warriors Pack', + platform: '3DS', + date: 1495141200000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---fledging-warriors-pack', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - The Astral Temple', + platform: '3DS', + date: 1495141200000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---the-astral-temple', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Wretches and Riches', + platform: '3DS', + date: 1495141200000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---wretches-and-riches', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem Echoes: Shadows of Valentia - Band of Bandages', + platform: '3DS', + date: 1495141200000, + user_score: null, + link: '/game/3ds/fire-emblem-echoes-shadows-of-valentia---band-of-bandages', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 92, + title: 'Mario Kart 8 Deluxe', + platform: 'Switch', + date: 1493326800000, + user_score: 8.6, + link: '/game/switch/mario-kart-8-deluxe', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Other', 'Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: 83, + title: 'BYE-BYE BOXBOY!', + platform: '3DS', + date: 1491944400000, + user_score: 7.9, + link: '/game/3ds/bye-bye-boxboy!', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Puzzle', 'Action']", + }, + { + meta_score: 57, + title: 'Team Kirby Clash Deluxe', + platform: '3DS', + date: 1491944400000, + user_score: 6.5, + link: '/game/3ds/team-kirby-clash-deluxe', + esrb_rating: 'E', + developers: "['Nintendo', ' HAL Labs']", + genres: "['Action', 'Miscellaneous', 'General', 'Party / Minigame']", + }, + { + meta_score: 62, + title: 'Mario Sports Superstars', + platform: '3DS', + date: 1490306400000, + user_score: 7.3, + link: '/game/3ds/mario-sports-superstars', + esrb_rating: 'E', + developers: "['Nintendo', ' Camelot Software Planning']", + genres: "['Sports', 'General']", + }, + { + meta_score: null, + title: 'Splatoon 2: Global Testfire', + platform: 'Switch', + date: 1490306400000, + user_score: null, + link: '/game/switch/splatoon-2-global-testfire', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Shooter', 'Third-Person', 'Arcade']", + }, + { + meta_score: 96, + title: 'The Legend of Zelda: Breath of the Wild', + platform: 'WIIU', + date: 1488492000000, + user_score: 8.3, + link: '/game/wii-u/the-legend-of-zelda-breath-of-the-wild', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Fantasy', 'Fantasy', 'Action Adventure', 'Open-World']", + }, + { + meta_score: 97, + title: 'The Legend of Zelda: Breath of the Wild', + platform: 'Switch', + date: 1488492000000, + user_score: 8.7, + link: '/game/switch/the-legend-of-zelda-breath-of-the-wild', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Open-World']", + }, + { + meta_score: 58, + title: '1-2-Switch', + platform: 'Switch', + date: 1488492000000, + user_score: 4.8, + link: '/game/switch/1-2-switch', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 80, + title: 'Snipperclips - Cut it out, together!', + platform: 'Switch', + date: 1488492000000, + user_score: 8.2, + link: '/game/switch/snipperclips---cut-it-out-together!', + esrb_rating: 'E', + developers: "['Nintendo', ' SFB Games']", + genres: "['Puzzle', 'General']", + }, + { + meta_score: 64, + title: 'Tank Troopers', + platform: '3DS', + date: 1487196000000, + user_score: 6, + link: '/game/3ds/tank-troopers', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Vehicle', 'Combat']", + }, + { + meta_score: 77, + title: "Poochy & Yoshi's Woolly World", + platform: '3DS', + date: 1486072800000, + user_score: 7.8, + link: '/game/3ds/poochy-yoshis-woolly-world', + esrb_rating: 'E', + developers: "['Good-Feel']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 72, + title: 'Fire Emblem Heroes', + platform: 'iOS', + date: 1485986400000, + user_score: 7.2, + link: '/game/ios/fire-emblem-heroes', + esrb_rating: 'T', + developers: "['Nintendo', ' Intelligent Systems']", + genres: "['Role-Playing', 'Strategy', 'Turn-Based', 'General', 'Tactics']", + }, + { + meta_score: 85, + title: 'Dragon Quest VIII: Journey of the Cursed King', + platform: '3DS', + date: 1484863200000, + user_score: 8.6, + link: '/game/3ds/dragon-quest-viii-journey-of-the-cursed-king', + esrb_rating: 'T', + developers: "['TOSE', ' Cygames']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: 76, + title: 'Super Mario Run', + platform: 'iOS', + date: 1481752800000, + user_score: 6.2, + link: '/game/ios/super-mario-run', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Excitebots: Trick Racing', + platform: 'WIIU', + date: 1481752800000, + user_score: null, + link: '/game/wii-u/excitebots-trick-racing', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: null, + title: 'Animal Crossing: New Leaf - Welcome Amiibo', + platform: '3DS', + date: 1480888800000, + user_score: 7.6, + link: '/game/3ds/animal-crossing-new-leaf---welcome-amiibo', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 73, + title: 'Super Mario Maker for Nintendo 3DS', + platform: '3DS', + date: 1480629600000, + user_score: 6.5, + link: '/game/3ds/super-mario-maker-for-nintendo-3ds', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 87, + title: 'Pokemon Sun', + platform: '3DS', + date: 1479420000000, + user_score: 7.6, + link: '/game/3ds/pokemon-sun', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 87, + title: 'Pokemon Moon', + platform: '3DS', + date: 1479420000000, + user_score: 7.6, + link: '/game/3ds/pokemon-moon', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: 'Pokemon Sun and Moon Dual Pack', + platform: '3DS', + date: 1479420000000, + user_score: 6.1, + link: '/game/3ds/pokemon-sun-and-moon-dual-pack', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: 'Swapdoodle', + platform: '3DS', + date: 1479333600000, + user_score: null, + link: '/game/3ds/swapdoodle', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Application']", + }, + { + meta_score: 68, + title: 'Mario Party: Star Rush', + platform: '3DS', + date: 1478210400000, + user_score: 6.9, + link: '/game/3ds/mario-party-star-rush', + esrb_rating: 'E', + developers: "['Nintendo', ' Nd Cube']", + genres: "['Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Hyrule Warriors Legends: A Link Between Worlds Pack', + platform: '3DS', + date: 1477864800000, + user_score: null, + link: '/game/3ds/hyrule-warriors-legends-a-link-between-worlds-pack', + esrb_rating: '', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: null, + title: 'Pokemon Sun and Pokemon Moon Special Demo Version', + platform: '3DS', + date: 1476738000000, + user_score: 5.9, + link: '/game/3ds/pokemon-sun-and-pokemon-moon-special-demo-version', + esrb_rating: '', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 73, + title: 'Disney Magical World 2', + platform: '3DS', + date: 1476392400000, + user_score: 5.5, + link: '/game/3ds/disney-magical-world-2', + esrb_rating: 'E', + developers: "['h.a.n.d. Inc.', ' Bandai Namco Games']", + genres: "['Simulation', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 76, + title: 'Paper Mario: Color Splash', + platform: 'WIIU', + date: 1475787600000, + user_score: 7.1, + link: '/game/wii-u/paper-mario-color-splash', + esrb_rating: 'E', + developers: "['Nintendo', ' Intelligent Systems']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: 72, + title: 'Yo-kai Watch 2: Bony Spirits', + platform: '3DS', + date: 1475182800000, + user_score: 8, + link: '/game/3ds/yo-kai-watch-2-bony-spirits', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 70, + title: 'Yo-kai Watch 2: Fleshy Souls', + platform: '3DS', + date: 1475182800000, + user_score: 8, + link: '/game/3ds/yo-kai-watch-2-fleshy-souls', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: 81, + title: 'Dragon Quest VII: Fragments of the Forgotten Past', + platform: '3DS', + date: 1473973200000, + user_score: 8.2, + link: '/game/3ds/dragon-quest-vii-fragments-of-the-forgotten-past', + esrb_rating: 'E10+', + developers: "['ArtePiazza']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: 86, + title: 'Picross 3D: Round 2', + platform: '3DS', + date: 1472677200000, + user_score: 7.8, + link: '/game/3ds/picross-3d-round-2', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Puzzle', 'Logic']", + }, + { + meta_score: null, + title: 'Hyrule Warriors Legends: Phantom Hourglass & Spirit Tracks Pack', + platform: '3DS', + date: 1472677200000, + user_score: null, + link: '/game/3ds/hyrule-warriors-legends-phantom-hourglass-spirit-tracks-pack', + esrb_rating: 'E10+', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 64, + title: 'Metroid Prime: Federation Force', + platform: '3DS', + date: 1471554000000, + user_score: 5.4, + link: '/game/3ds/metroid-prime-federation-force', + esrb_rating: 'T', + developers: "['Next Level Games', ' Nintendo']", + genres: "['Action', 'Shooter', 'First-Person', 'Arcade']", + }, + { + meta_score: 78, + title: 'Style Savvy: Fashion Forward', + platform: '3DS', + date: 1471554000000, + user_score: 6.9, + link: '/game/3ds/style-savvy-fashion-forward', + esrb_rating: 'E', + developers: "['syn Sophia']", + genres: "['Simulation', 'Virtual', 'Career']", + }, + { + meta_score: null, + title: 'Metroid Prime: Blast Ball', + platform: '3DS', + date: 1469048400000, + user_score: 7.1, + link: '/game/3ds/metroid-prime-blast-ball', + esrb_rating: '', + developers: "['Next Level Games']", + genres: "['Action', 'Shooter', 'First-Person', 'Arcade']", + }, + { + meta_score: 69, + title: 'Pokemon GO', + platform: 'iOS', + date: 1467752400000, + user_score: 5.5, + link: '/game/ios/pokemon-go', + esrb_rating: '', + developers: "['Niantic Labs']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: 'Teddy Together', + platform: '3DS', + date: 1467320400000, + user_score: null, + link: '/game/3ds/teddy-together', + esrb_rating: '', + developers: "['Arika']", + genres: "['Action', 'General']", + }, + { + meta_score: 80, + title: 'BoxBoxBoy!', + platform: '3DS', + date: 1467234000000, + user_score: 7.9, + link: '/game/3ds/boxboxboy!', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Puzzle', 'Action']", + }, + { + meta_score: null, + title: "Hyrule Warriors Legends: Link's Awakening Pack", + platform: '3DS', + date: 1467234000000, + user_score: null, + link: '/game/3ds/hyrule-warriors-legends-links-awakening-pack', + esrb_rating: '', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 80, + title: 'Tokyo Mirage Sessions #FE', + platform: 'WIIU', + date: 1466715600000, + user_score: 7.9, + link: '/game/wii-u/tokyo-mirage-sessions-fe', + esrb_rating: 'T', + developers: "['Atlus']", + genres: "['General', 'Fantasy', 'Role-Playing', 'Strategy', 'Turn-Based', 'Japanese-Style', 'General']", + }, + { + meta_score: 65, + title: 'Mario & Sonic at the Rio 2016 Olympic Games', + platform: 'WIIU', + date: 1466715600000, + user_score: 7.7, + link: '/game/wii-u/mario-sonic-at-the-rio-2016-olympic-games', + esrb_rating: 'E10+', + developers: "['Nintendo', ' Sega Sports R&D']", + genres: "['Sports', 'Individual', 'Athletics']", + }, + { + meta_score: null, + title: 'Tokyo Mirage Sessions #FE - EXPedition Hunter', + platform: 'WIIU', + date: 1466715600000, + user_score: null, + link: '/game/wii-u/tokyo-mirage-sessions-fe---expedition-hunter', + esrb_rating: 'T', + developers: "['Atlus']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: null, + title: 'Tokyo Mirage Sessions #FE - Masterful Hunter', + platform: 'WIIU', + date: 1466715600000, + user_score: null, + link: '/game/wii-u/tokyo-mirage-sessions-fe---masterful-hunter', + esrb_rating: 'T', + developers: "['Atlus']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: null, + title: 'Tokyo Mirage Sessions #FE - Savage Hunter', + platform: 'WIIU', + date: 1466715600000, + user_score: null, + link: '/game/wii-u/tokyo-mirage-sessions-fe---savage-hunter', + esrb_rating: 'T', + developers: "['Atlus']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: null, + title: 'Tokyo Mirage Sessions #FE - Tokyo Millennium Collection', + platform: 'WIIU', + date: 1466715600000, + user_score: null, + link: '/game/wii-u/tokyo-mirage-sessions-fe---tokyo-millennium-collection', + esrb_rating: 'T', + developers: "['Atlus']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: 83, + title: 'Rhythm Heaven Megamix', + platform: '3DS', + date: 1465938000000, + user_score: 8.2, + link: '/game/3ds/rhythm-heaven-megamix', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Rhythm', 'Music']", + }, + { + meta_score: 81, + title: 'Kirby: Planet Robobot', + platform: '3DS', + date: 1465506000000, + user_score: 8.7, + link: '/game/3ds/kirby-planet-robobot', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Team Kirby Clash', + platform: '3DS', + date: 1465506000000, + user_score: 6.5, + link: '/game/3ds/team-kirby-clash', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: null, + title: 'Hyrule Warriors Legends: Master Wind Waker Pack', + platform: '3DS', + date: 1463605200000, + user_score: null, + link: '/game/3ds/hyrule-warriors-legends-master-wind-waker-pack', + esrb_rating: '', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 72, + title: 'Disney Art Academy', + platform: '3DS', + date: 1463086800000, + user_score: 7.1, + link: '/game/3ds/disney-art-academy', + esrb_rating: 'E', + developers: "['Headstrong Games']", + genres: "['Miscellaneous', 'Edutainment', 'Application']", + }, + { + meta_score: 83, + title: 'Pocket Card Jockey', + platform: '3DS', + date: 1462395600000, + user_score: 8.1, + link: '/game/3ds/pocket-card-jockey', + esrb_rating: 'E10+', + developers: "['Game Freak']", + genres: "['Miscellaneous', 'Board / Card Game']", + }, + { + meta_score: 69, + title: 'Star Fox Zero', + platform: 'WIIU', + date: 1461272400000, + user_score: 7.4, + link: '/game/wii-u/star-fox-zero', + esrb_rating: 'E10+', + developers: "['PlatinumGames']", + genres: "['Action', 'Third-Person', 'Shooter', 'Modern', 'Rail', 'Simulation', 'Space', 'Combat']", + }, + { + meta_score: 74, + title: 'Star Fox Guard', + platform: 'WIIU', + date: 1461272400000, + user_score: 7.4, + link: '/game/wii-u/star-fox-guard', + esrb_rating: 'E10+', + developers: "['Nintendo', ' PlatinumGames']", + genres: "['Action', 'First-Person', 'Sci-Fi', 'Shooter', 'Strategy', 'Real-Time', 'Defense']", + }, + { + meta_score: null, + title: 'Star Fox Zero Double Pack', + platform: 'WIIU', + date: 1461272400000, + user_score: 8, + link: '/game/wii-u/star-fox-zero-double-pack', + esrb_rating: 'E10+', + developers: "['Nintendo', ' PlatinumGames']", + genres: "['Miscellaneous', 'Compilation']", + }, + { + meta_score: 81, + title: 'Bravely Second: End Layer', + platform: '3DS', + date: 1460667600000, + user_score: 8.2, + link: '/game/3ds/bravely-second-end-layer', + esrb_rating: 'T', + developers: "['Silicon Studio']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: 72, + title: 'Miitomo', + platform: 'iOS', + date: 1459371600000, + user_score: 7, + link: '/game/ios/miitomo', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Simulation', 'Virtual', 'Virtual Life']", + }, + { + meta_score: null, + title: 'My Nintendo Picross - The Legend of Zelda: Twilight Princess', + platform: '3DS', + date: 1459285200000, + user_score: 7.9, + link: '/game/3ds/my-nintendo-picross---the-legend-of-zelda-twilight-princess', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Puzzle', 'Logic']", + }, + { + meta_score: 70, + title: 'Hyrule Warriors Legends', + platform: '3DS', + date: 1458856800000, + user_score: 7.5, + link: '/game/3ds/hyrule-warriors-legends', + esrb_rating: 'T', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: null, + title: 'Mini-Mario & Friends: amiibo Challenge', + platform: 'WIIU', + date: 1458856800000, + user_score: 6.9, + link: '/game/wii-u/mini-mario-friends-amiibo-challenge', + esrb_rating: 'E', + developers: "['Nintendo', ' Nintendo Software Technology']", + genres: "['Puzzle', 'Action']", + }, + { + meta_score: null, + title: 'Mini-Mario & Friends: amiibo Challenge', + platform: '3DS', + date: 1458856800000, + user_score: 6.8, + link: '/game/3ds/mini-mario-friends-amiibo-challenge', + esrb_rating: 'E', + developers: "['Nintendo', ' Nintendo Software Technology']", + genres: "['Puzzle', 'Action']", + }, + { + meta_score: 60, + title: 'Mario & Sonic at the Rio 2016 Olympic Games', + platform: '3DS', + date: 1458252000000, + user_score: 6.9, + link: '/game/3ds/mario-sonic-at-the-rio-2016-olympic-games', + esrb_rating: 'E10+', + developers: "['Nintendo', ' Sega Sports R&D']", + genres: "['Sports', 'Individual', 'Athletics']", + }, + { + meta_score: 76, + title: 'Pokken Tournament', + platform: 'WIIU', + date: 1458252000000, + user_score: 7.4, + link: '/game/wii-u/pokken-tournament', + esrb_rating: 'E10+', + developers: "['Bandai Namco Games']", + genres: "['Action', 'Fighting', '3D']", + }, + { + meta_score: 88, + title: 'Fire Emblem Fates: Revelation', + platform: '3DS', + date: 1457560800000, + user_score: 7.2, + link: '/game/3ds/fire-emblem-fates-revelation', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 86, + title: 'The Legend of Zelda: Twilight Princess HD', + platform: 'WIIU', + date: 1457042400000, + user_score: 8.6, + link: '/game/wii-u/the-legend-of-zelda-twilight-princess-hd', + esrb_rating: 'T', + developers: "['Tantalus', ' Tantatus', ' Nintendo']", + genres: "['Action Adventure', 'General', 'Open-World']", + }, + { + meta_score: 87, + title: 'Fire Emblem Fates: Conquest', + platform: '3DS', + date: 1455832800000, + user_score: 8, + link: '/game/3ds/fire-emblem-fates-conquest', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Fantasy', 'Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 86, + title: 'Fire Emblem Fates: Birthright', + platform: '3DS', + date: 1455832800000, + user_score: 7.8, + link: '/game/3ds/fire-emblem-fates-birthright', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 88, + title: 'Fire Emblem Fates: Special Edition', + platform: '3DS', + date: 1455832800000, + user_score: 7.8, + link: '/game/3ds/fire-emblem-fates-special-edition', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: 76, + title: 'Mario & Luigi: Paper Jam', + platform: '3DS', + date: 1453413600000, + user_score: 7.3, + link: '/game/3ds/mario-luigi-paper-jam', + esrb_rating: 'E', + developers: "['Nintendo', ' Alphadream Corporation']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: 84, + title: 'Xenoblade Chronicles X', + platform: 'WIIU', + date: 1449180000000, + user_score: 9.1, + link: '/game/wii-u/xenoblade-chronicles-x', + esrb_rating: 'T', + developers: "['Monolith Soft']", + genres: "['Action RPG', 'Role-Playing', 'Action RPG']", + }, + { + meta_score: 75, + title: 'Pokemon Picross', + platform: '3DS', + date: 1449093600000, + user_score: 7.5, + link: '/game/3ds/pokemon-picross', + esrb_rating: 'E', + developers: "['Nintendo', ' Jupiter Corporation']", + genres: "['Miscellaneous', 'General', 'Puzzle', 'Logic']", + }, + { + meta_score: 69, + title: 'Pokemon Super Mystery Dungeon', + platform: '3DS', + date: 1447970400000, + user_score: 8.2, + link: '/game/3ds/pokemon-super-mystery-dungeon', + esrb_rating: 'E', + developers: "['Spike Chunsoft Co. Ltd.', ' Spike Chunsoft']", + genres: "['Role-Playing', 'Roguelike']", + }, + { + meta_score: 58, + title: 'Mario Tennis: Ultra Smash', + platform: 'WIIU', + date: 1447970400000, + user_score: 5.1, + link: '/game/wii-u/mario-tennis-ultra-smash', + esrb_rating: 'E', + developers: "['Nintendo', ' Camelot Software Planning']", + genres: "['Sports', 'Individual', 'Tennis']", + }, + { + meta_score: 46, + title: 'Animal Crossing: amiibo Festival', + platform: 'WIIU', + date: 1447365600000, + user_score: 4, + link: '/game/wii-u/animal-crossing-amiibo-festival', + esrb_rating: 'E', + developers: "['Nintendo', ' Nd Cube']", + genres: "['Miscellaneous', 'Board / Card Game']", + }, + { + meta_score: 56, + title: 'Nintendo Badge Arcade', + platform: '3DS', + date: 1447106400000, + user_score: 4, + link: '/game/3ds/nintendo-badge-arcade', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General']", + }, + { + meta_score: 76, + title: 'Yo-kai Watch', + platform: '3DS', + date: 1446760800000, + user_score: 8.1, + link: '/game/3ds/yo-kai-watch', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Japanese-Style', 'Role-Playing', 'Trainer']", + }, + { + meta_score: 73, + title: 'The Legend of Zelda: Tri Force Heroes', + platform: '3DS', + date: 1445547600000, + user_score: 7.2, + link: '/game/3ds/the-legend-of-zelda-tri-force-heroes', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Open-World']", + }, + { + meta_score: 67, + title: 'Fatal Frame: Maiden of Black Water', + platform: 'WIIU', + date: 1445461200000, + user_score: 8, + link: '/game/wii-u/fatal-frame-maiden-of-black-water', + esrb_rating: 'M', + developers: "['Koei Tecmo Games']", + genres: "['Action', 'General', 'Horror', 'Action Adventure', 'Survival']", + }, + { + meta_score: 78, + title: "Yoshi's Woolly World", + platform: 'WIIU', + date: 1444942800000, + user_score: 8.4, + link: '/game/wii-u/yoshis-woolly-world', + esrb_rating: 'E', + developers: "['Good-Feel']", + genres: "['Action Adventure', 'Platformer', '2D', 'Fantasy', 'Action', 'Platformer', '2D']", + }, + { + meta_score: 59, + title: 'Chibi-Robo! Zip Lash', + platform: '3DS', + date: 1444338000000, + user_score: 5.1, + link: '/game/3ds/chibi-robo!-zip-lash', + esrb_rating: 'E', + developers: "['Nintendo', ' Skip Ltd.']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 66, + title: 'Animal Crossing: Happy Home Designer', + platform: '3DS', + date: 1443128400000, + user_score: 6.9, + link: '/game/3ds/animal-crossing-happy-home-designer', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Virtual', 'Career']", + }, + { + meta_score: 88, + title: 'Super Mario Maker', + platform: 'WIIU', + date: 1441918800000, + user_score: 8.7, + link: '/game/wii-u/super-mario-maker', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 62, + title: 'Pokemon Shuffle Mobile', + platform: 'iOS', + date: 1440968400000, + user_score: 6.4, + link: '/game/ios/pokemon-shuffle-mobile', + esrb_rating: '', + developers: "['Genius Sonority Inc.']", + genres: "['Puzzle', 'Matching']", + }, + { + meta_score: 43, + title: "Devil's Third", + platform: 'WIIU', + date: 1440709200000, + user_score: 6.6, + link: '/game/wii-u/devils-third', + esrb_rating: 'M', + developers: "['Valhalla Game Studios']", + genres: "['Action Adventure', 'General', 'Modern', 'Action', 'Shooter', 'Third-Person', 'Arcade']", + }, + { + meta_score: 73, + title: 'LBX: Little Battlers eXperience', + platform: '3DS', + date: 1440104400000, + user_score: 7.4, + link: '/game/3ds/lbx-little-battlers-experience', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Action', 'Role-Playing', 'General', 'Action RPG']", + }, + { + meta_score: 82, + title: 'Art Academy: Home Studio', + platform: 'WIIU', + date: 1435179600000, + user_score: 7.9, + link: '/game/wii-u/art-academy-home-studio', + esrb_rating: 'E', + developers: "['Headstrong Games']", + genres: "['Miscellaneous', 'Edutainment']", + }, + { + meta_score: null, + title: 'Earthbound Beginnings', + platform: 'WIIU', + date: 1434229200000, + user_score: 8.2, + link: '/game/wii-u/earthbound-beginnings', + esrb_rating: '', + developers: "['Pax Softonica']", + genres: "['Role-Playing', 'Japanese-Style']", + }, + { + meta_score: null, + title: 'Smash Controller', + platform: '3DS', + date: 1434229200000, + user_score: null, + link: '/game/3ds/smash-controller', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Application']", + }, + { + meta_score: 69, + title: 'Dr. Mario: Miracle Cure', + platform: '3DS', + date: 1433970000000, + user_score: 6.9, + link: '/game/3ds/dr-mario-miracle-cure', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Puzzle', 'Stacking']", + }, + { + meta_score: 81, + title: 'Splatoon', + platform: 'WIIU', + date: 1432846800000, + user_score: 8.7, + link: '/game/wii-u/splatoon', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Fantasy', 'Action', 'Shooter', 'Third-Person', 'Arcade']", + }, + { + meta_score: 73, + title: 'Puzzle & Dragons Z + Puzzle & Dragons: Super Mario Bros. Edition', + platform: '3DS', + date: 1432242000000, + user_score: 7.6, + link: '/game/3ds/puzzle-dragons-z-+-puzzle-dragons-super-mario-bros-edition', + esrb_rating: 'E', + developers: "['GungHo']", + genres: "['Miscellaneous', 'Compilation']", + }, + { + meta_score: 83, + title: 'Stretchmo', + platform: '3DS', + date: 1431550800000, + user_score: 8, + link: '/game/3ds/stretchmo', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Puzzle', 'Action']", + }, + { + meta_score: null, + title: "amiibo Tap: Nintendo's Greatest Bits", + platform: 'WIIU', + date: 1430341200000, + user_score: 7.6, + link: '/game/wii-u/amiibo-tap-nintendos-greatest-bits', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Application']", + }, + { + meta_score: null, + title: 'Super Smash Bros. for Nintendo 3DS / Wii U: Mewtwo', + platform: '3DS', + date: 1430168400000, + user_score: null, + link: '/game/3ds/super-smash-bros-for-nintendo-3ds-wii-u-mewtwo', + esrb_rating: '', + developers: "['Bandai Namco Games']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: null, + title: 'Super Smash Bros. for Nintendo 3DS / Wii U: Mewtwo', + platform: 'WIIU', + date: 1430168400000, + user_score: null, + link: '/game/wii-u/super-smash-bros-for-nintendo-3ds-wii-u-mewtwo', + esrb_rating: '', + developers: "['Bandai Namco Games']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: 90, + title: 'Mario Kart 8 DLC Pack 2', + platform: 'WIIU', + date: 1429736400000, + user_score: 8.2, + link: '/game/wii-u/mario-kart-8-dlc-pack-2', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Kart', 'Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: 86, + title: 'Xenoblade Chronicles 3D', + platform: '3DS', + date: 1428613200000, + user_score: 8.7, + link: '/game/3ds/xenoblade-chronicles-3d', + esrb_rating: 'T', + developers: "['Monster Games Inc.']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 58, + title: 'Pokemon Rumble World', + platform: '3DS', + date: 1428440400000, + user_score: 6.2, + link: '/game/3ds/pokemon-rumble-world', + esrb_rating: 'E10+', + developers: "['Ambrella', ' The Pokemon Company']", + genres: "['Action', 'General', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 80, + title: 'BOXBOY!', + platform: '3DS', + date: 1427922000000, + user_score: 8.1, + link: '/game/3ds/boxboy!', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Puzzle', 'Action']", + }, + { + meta_score: 66, + title: 'Mario Party 10', + platform: 'WIIU', + date: 1426802400000, + user_score: 6.4, + link: '/game/wii-u/mario-party-10', + esrb_rating: 'E', + developers: "['Nintendo', ' Nd Cube']", + genres: "['Party', 'Miscellaneous', 'Party / Minigame']", + }, + { + meta_score: 57, + title: 'Fossil Fighters: Frontier', + platform: '3DS', + date: 1426802400000, + user_score: 5.3, + link: '/game/3ds/fossil-fighters-frontier', + esrb_rating: 'E10+', + developers: "['RED Entertainment', ' Spike Chunsoft']", + genres: "['Role-Playing', 'General', 'Trainer']", + }, + { + meta_score: 69, + title: 'Code Name: S.T.E.A.M.', + platform: '3DS', + date: 1426197600000, + user_score: 7.8, + link: '/game/3ds/code-name-steam', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Sci-Fi', 'Strategy', 'Turn-Based', 'Tactics']", + }, + { + meta_score: null, + title: 'Hyrule Warriors: Boss Pack', + platform: 'WIIU', + date: 1426111200000, + user_score: 7.6, + link: '/game/wii-u/hyrule-warriors-boss-pack', + esrb_rating: '', + developers: "['Tecmo Koei Games']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 70, + title: 'Mario vs. Donkey Kong: Tipping Stars', + platform: 'WIIU', + date: 1425506400000, + user_score: 7.5, + link: '/game/wii-u/mario-vs-donkey-kong-tipping-stars', + esrb_rating: 'E', + developers: "['Nintendo', ' Nintendo Software Technology']", + genres: "['Puzzle', 'Action', 'Platformer', '2D']", + }, + { + meta_score: 70, + title: 'Mario vs. Donkey Kong: Tipping Stars', + platform: '3DS', + date: 1425506400000, + user_score: 7.4, + link: '/game/3ds/mario-vs-donkey-kong-tipping-stars', + esrb_rating: 'E', + developers: "['Nintendo', ' Nintendo Software Technology']", + genres: "['Puzzle', 'Action', 'Platformer', '2D']", + }, + { + meta_score: 73, + title: 'Kirby and the Rainbow Curse', + platform: 'WIIU', + date: 1424383200000, + user_score: 8, + link: '/game/wii-u/kirby-and-the-rainbow-curse', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 56, + title: 'Pokemon Shuffle', + platform: '3DS', + date: 1424210400000, + user_score: 6.1, + link: '/game/3ds/pokemon-shuffle', + esrb_rating: 'E', + developers: "['Genius Sonority Inc.']", + genres: "['Puzzle', 'Matching']", + }, + { + meta_score: 89, + title: "The Legend of Zelda: Majora's Mask 3D", + platform: '3DS', + date: 1423778400000, + user_score: 8.9, + link: '/game/3ds/the-legend-of-zelda-majoras-mask-3d', + esrb_rating: 'E10+', + developers: "['GREZZO']", + genres: "['Fantasy', 'Action Adventure', 'Open-World']", + }, + { + meta_score: null, + title: 'Flipnote Studio 3D', + platform: '3DS', + date: 1423519200000, + user_score: 6.9, + link: '/game/3ds/flipnote-studio-3d', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General', 'Application']", + }, + { + meta_score: null, + title: "Hyrule Warriors: Majora's Mask Pack", + platform: 'WIIU', + date: 1423087200000, + user_score: 8, + link: '/game/wii-u/hyrule-warriors-majoras-mask-pack', + esrb_rating: '', + developers: "['Tecmo Koei Games']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 81, + title: 'Captain Toad: Treasure Tracker', + platform: 'WIIU', + date: 1417730400000, + user_score: 8.6, + link: '/game/wii-u/captain-toad-treasure-tracker', + esrb_rating: 'E', + developers: "['Nintendo EAD Tokyo ']", + genres: "['Puzzle', 'Action', 'Platformer', '3D']", + }, + { + meta_score: null, + title: 'NES Remix Pack', + platform: 'WIIU', + date: 1417730400000, + user_score: 8.6, + link: '/game/wii-u/nes-remix-pack', + esrb_rating: 'E', + developers: "['indieszero']", + genres: "['Miscellaneous', 'Compilation']", + }, + { + meta_score: null, + title: 'Hyrule Warriors: Twilight Princess Pack', + platform: 'WIIU', + date: 1416952800000, + user_score: 8.3, + link: '/game/wii-u/hyrule-warriors-twilight-princess-pack', + esrb_rating: 'T', + developers: "['Tecmo Koei Games']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 92, + title: 'Super Smash Bros. for Wii U', + platform: 'WIIU', + date: 1416520800000, + user_score: 8.9, + link: '/game/wii-u/super-smash-bros-for-wii-u', + esrb_rating: 'E10+', + developers: "['Bandai Namco Games']", + genres: "['Action', 'Fighting', 'Fighting', '3D', '2D', '2D', '3D']", + }, + { + meta_score: 82, + title: 'Pokemon Alpha Sapphire', + platform: '3DS', + date: 1416520800000, + user_score: 7.6, + link: '/game/3ds/pokemon-alpha-sapphire', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Japanese-Style', 'Trainer']", + }, + { + meta_score: 83, + title: 'Pokemon Omega Ruby', + platform: '3DS', + date: 1416520800000, + user_score: 7.5, + link: '/game/3ds/pokemon-omega-ruby', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Japanese-Style', 'Trainer']", + }, + { + meta_score: null, + title: 'Pokemon Omega Ruby/Alpha Sapphire Double Pack', + platform: '3DS', + date: 1416520800000, + user_score: 7.4, + link: '/game/3ds/pokemon-omega-rubyalpha-sapphire-double-pack', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Japanese-Style', 'Trainer']", + }, + { + meta_score: 87, + title: 'Mario Kart 8 DLC Pack 1', + platform: 'WIIU', + date: 1415829600000, + user_score: 8.2, + link: '/game/wii-u/mario-kart-8-dlc-pack-1', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Arcade', 'Kart', 'Automobile']", + }, + { + meta_score: 69, + title: 'Ultimate NES Remix', + platform: '3DS', + date: 1415311200000, + user_score: 7.4, + link: '/game/3ds/ultimate-nes-remix', + esrb_rating: 'E', + developers: "['indieszero']", + genres: "['Miscellaneous', 'General']", + }, + { + meta_score: 76, + title: 'Pokemon Art Academy', + platform: '3DS', + date: 1414098000000, + user_score: 7.8, + link: '/game/3ds/pokemon-art-academy', + esrb_rating: 'E', + developers: "['Headstrong Games']", + genres: "['Miscellaneous', 'General', 'Edutainment']", + }, + { + meta_score: 86, + title: 'Bayonetta', + platform: 'WIIU', + date: 1414098000000, + user_score: 8.8, + link: '/game/wii-u/bayonetta', + esrb_rating: 'M', + developers: "['Bee Tribe']", + genres: "['Action', 'Fantasy', \"Beat-'Em-Up\", 'Action Adventure', 'Linear']", + }, + { + meta_score: 73, + title: 'Fantasy Life', + platform: '3DS', + date: 1414098000000, + user_score: 8.4, + link: '/game/3ds/fantasy-life', + esrb_rating: 'E10+', + developers: "['Level 5', ' Brownie Brown']", + genres: "['Role-Playing', 'General']", + }, + { + meta_score: null, + title: 'Bayonetta + Bayonetta 2', + platform: 'WIIU', + date: 1414098000000, + user_score: 8.2, + link: '/game/wii-u/bayonetta-+-bayonetta-2', + esrb_rating: 'M', + developers: "['PlatinumGames']", + genres: "['Miscellaneous', 'Compilation']", + }, + { + meta_score: null, + title: 'Hyrule Warriors: Master Quest Pack', + platform: 'WIIU', + date: 1413406800000, + user_score: 7.9, + link: '/game/wii-u/hyrule-warriors-master-quest-pack', + esrb_rating: '', + developers: "['Tecmo Koei Games']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 85, + title: 'Super Smash Bros. for Nintendo 3DS', + platform: '3DS', + date: 1412283600000, + user_score: 8.4, + link: '/game/3ds/super-smash-bros-for-nintendo-3ds', + esrb_rating: 'E10+', + developers: "['Bandai Namco Games']", + genres: "['Fighting', '3D', '2D', 'Action', 'Fighting', '2D', '3D']", + }, + { + meta_score: 76, + title: 'Hyrule Warriors', + platform: 'WIIU', + date: 1411678800000, + user_score: 8.3, + link: '/game/wii-u/hyrule-warriors', + esrb_rating: 'T', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: 91, + title: 'Bayonetta 2', + platform: 'WIIU', + date: 1411160400000, + user_score: 8.9, + link: '/game/wii-u/bayonetta-2', + esrb_rating: 'M', + developers: "['PlatinumGames']", + genres: "['Action Adventure', 'Fantasy', 'Fantasy', 'Linear']", + }, + { + meta_score: 79, + title: 'Professor Layton VS Phoenix Wright Ace Attorney', + platform: '3DS', + date: 1409259600000, + user_score: 8.2, + link: '/game/3ds/professor-layton-vs-phoenix-wright-ace-attorney', + esrb_rating: 'T', + developers: "['Level 5']", + genres: "['General', 'Puzzle', 'Miscellaneous', 'Puzzle', 'General']", + }, + { + meta_score: 65, + title: "Dedede's Drum Dash Deluxe", + platform: '3DS', + date: 1409259600000, + user_score: 7.3, + link: '/game/3ds/dededes-drum-dash-deluxe', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music']", + }, + { + meta_score: 66, + title: 'Kirby Fighters Deluxe', + platform: '3DS', + date: 1409259600000, + user_score: 6.1, + link: '/game/3ds/kirby-fighters-deluxe', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: null, + title: 'The Mysterious Murasame Castle', + platform: '3DS', + date: 1407358800000, + user_score: null, + link: '/game/3ds/the-mysterious-murasame-castle', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'General']", + }, + { + meta_score: 80, + title: 'Pushmo World', + platform: 'WIIU', + date: 1403125200000, + user_score: 8, + link: '/game/wii-u/pushmo-world', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Puzzle', 'Action', 'Logic']", + }, + { + meta_score: 75, + title: 'Inazuma Eleven Go: Shadow', + platform: '3DS', + date: 1402606800000, + user_score: 7.2, + link: '/game/3ds/inazuma-eleven-go-shadow', + esrb_rating: '', + developers: "['Level 5']", + genres: "['Sports', 'Traditional', 'Soccer', 'Arcade']", + }, + { + meta_score: 74, + title: 'Inazuma Eleven Go: Light', + platform: '3DS', + date: 1402606800000, + user_score: 7.6, + link: '/game/3ds/inazuma-eleven-go-light', + esrb_rating: '', + developers: "['Level 5']", + genres: "['Sports', 'Traditional', 'Soccer', 'Arcade']", + }, + { + meta_score: 71, + title: 'Tomodachi Life', + platform: '3DS', + date: 1402002000000, + user_score: 7.7, + link: '/game/3ds/tomodachi-life', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'General', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 88, + title: 'Mario Kart 8', + platform: 'WIIU', + date: 1401397200000, + user_score: 8.7, + link: '/game/wii-u/mario-kart-8', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Arcade', 'Kart', 'Kart', 'Automobile']", + }, + { + meta_score: null, + title: 'Photos with Mario', + platform: '3DS', + date: 1400360400000, + user_score: 6.9, + link: '/game/3ds/photos-with-mario', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General']", + }, + { + meta_score: 80, + title: 'Kirby: Triple Deluxe', + platform: '3DS', + date: 1398978000000, + user_score: 8.6, + link: '/game/3ds/kirby-triple-deluxe', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['General', 'General', 'Action', 'Platformer', '2D']", + }, + { + meta_score: 78, + title: 'Mario Golf: World Tour', + platform: '3DS', + date: 1398978000000, + user_score: 8.1, + link: '/game/3ds/mario-golf-world-tour', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Traditional', 'Individual', 'Golf', 'Arcade', 'Arcade']", + }, + { + meta_score: 73, + title: 'NES Remix 2', + platform: 'WIIU', + date: 1398373200000, + user_score: 8, + link: '/game/wii-u/nes-remix-2', + esrb_rating: 'E', + developers: "['indieszero']", + genres: "['Miscellaneous', 'General', 'Party / Minigame']", + }, + { + meta_score: 65, + title: 'Nintendo Pocket Football Club', + platform: '3DS', + date: 1397682000000, + user_score: 7.7, + link: '/game/3ds/nintendo-pocket-football-club', + esrb_rating: '', + developers: "['ParityBit']", + genres: "['Sports', 'Traditional', 'Soccer', 'Arcade']", + }, + { + meta_score: 71, + title: 'Disney Magical World', + platform: '3DS', + date: 1397163600000, + user_score: 7.5, + link: '/game/3ds/disney-magical-world', + esrb_rating: 'E', + developers: "['h.a.n.d. Inc.']", + genres: "['Simulation', 'Miscellaneous', 'General', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 74, + title: "Rusty's Real Deal Baseball", + platform: '3DS', + date: 1396472400000, + user_score: 7.7, + link: '/game/3ds/rustys-real-deal-baseball', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General']", + }, + { + meta_score: 70, + title: 'Pokemon Battle Trozei', + platform: '3DS', + date: 1395266400000, + user_score: 7.3, + link: '/game/3ds/pokemon-battle-trozei', + esrb_rating: 'E', + developers: "['Genius Sonority Inc.']", + genres: "['Miscellaneous', 'Puzzle', 'Matching']", + }, + { + meta_score: 64, + title: "Yoshi's New Island", + platform: '3DS', + date: 1394748000000, + user_score: 6.1, + link: '/game/3ds/yoshis-new-island', + esrb_rating: 'E', + developers: "['Arzest']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 81, + title: 'Professor Layton and the Azran Legacy', + platform: '3DS', + date: 1393538400000, + user_score: 8.1, + link: '/game/3ds/professor-layton-and-the-azran-legacy', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['General', 'Logic', 'Puzzle', 'Miscellaneous', 'Puzzle', 'General']", + }, + { + meta_score: 83, + title: 'Donkey Kong Country: Tropical Freeze', + platform: 'WIIU', + date: 1392933600000, + user_score: 8.9, + link: '/game/wii-u/donkey-kong-country-tropical-freeze', + esrb_rating: 'E', + developers: "['Retro Studios']", + genres: "['Platformer', '2D', 'Action', 'Platformer', '2D']", + }, + { + meta_score: 70, + title: 'Inazuma Eleven 3: Team Ogre Attacks!', + platform: '3DS', + date: 1392328800000, + user_score: 8, + link: '/game/3ds/inazuma-eleven-3-team-ogre-attacks!', + esrb_rating: '', + developers: "['Level 5']", + genres: "['Sports', 'Traditional', 'Soccer', 'Arcade']", + }, + { + meta_score: 70, + title: 'Steel Diver: Sub Wars', + platform: '3DS', + date: 1392242400000, + user_score: 7.6, + link: '/game/3ds/steel-diver-sub-wars', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Simulation', 'Submarine', 'Marine', 'Combat']", + }, + { + meta_score: 85, + title: 'Bravely Default', + platform: '3DS', + date: 1391724000000, + user_score: 8.4, + link: '/game/3ds/bravely-default', + esrb_rating: 'T', + developers: "['Silicon Studio']", + genres: "['Console-style RPG', 'Role-Playing', 'Console-style RPG', 'Japanese-Style']", + }, + { + meta_score: null, + title: 'Poke Transporter', + platform: '3DS', + date: 1391551200000, + user_score: null, + link: '/game/3ds/poke-transporter', + esrb_rating: '', + developers: "['Game Freak']", + genres: "['Miscellaneous', 'General', 'Application']", + }, + { + meta_score: null, + title: 'Pokemon Bank', + platform: '3DS', + date: 1391551200000, + user_score: 5.9, + link: '/game/3ds/pokemon-bank', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Miscellaneous', 'General']", + }, + { + meta_score: 49, + title: 'Chibi-Robo! Photo Finder', + platform: '3DS', + date: 1389218400000, + user_score: 7.6, + link: '/game/3ds/chibi-robo!-photo-finder', + esrb_rating: 'E', + developers: "['Skip Ltd.']", + genres: "['Action', 'Action Adventure', 'General', 'Fantasy']", + }, + { + meta_score: 65, + title: 'Dr. Luigi', + platform: 'WIIU', + date: 1388440800000, + user_score: 7.3, + link: '/game/wii-u/dr-luigi', + esrb_rating: 'E', + developers: "['Arika', ' Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Stacking']", + }, + { + meta_score: 71, + title: 'NES Remix', + platform: 'WIIU', + date: 1387317600000, + user_score: 7.3, + link: '/game/wii-u/nes-remix', + esrb_rating: 'E', + developers: "['indieszero']", + genres: "['Miscellaneous', 'General', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Nintendo 3DS Guide: Louvre', + platform: '3DS', + date: 1385935200000, + user_score: null, + link: '/game/3ds/nintendo-3ds-guide-louvre', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: 57, + title: 'Mario Party: Island Tour', + platform: '3DS', + date: 1385071200000, + user_score: 5.9, + link: '/game/3ds/mario-party-island-tour', + esrb_rating: 'E', + developers: "['Nintendo', ' Nd Cube']", + genres: "['Party', 'Miscellaneous', 'Party', 'Party / Minigame']", + }, + { + meta_score: 91, + title: 'The Legend of Zelda: A Link Between Worlds', + platform: '3DS', + date: 1385071200000, + user_score: 9, + link: '/game/3ds/the-legend-of-zelda-a-link-between-worlds', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action RPG', 'Role-Playing', 'Action Adventure', 'General', 'Action RPG', 'Open-World']", + }, + { + meta_score: 93, + title: 'Super Mario 3D World', + platform: 'WIIU', + date: 1385071200000, + user_score: 8.9, + link: '/game/wii-u/super-mario-3d-world', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Platformer', '3D', 'Action', 'Platformer', '3D']", + }, + { + meta_score: 55, + title: 'Mario & Sonic at the Sochi 2014 Olympic Winter Games', + platform: 'WIIU', + date: 1384466400000, + user_score: 6.5, + link: '/game/wii-u/mario-sonic-at-the-sochi-2014-olympic-winter-games', + esrb_rating: 'E', + developers: "['Nintendo', ' Sega Sports R&D']", + genres: "['Sports', 'Olympic Sports', 'Olympic Sports', 'Individual', 'Athletics']", + }, + { + meta_score: 68, + title: 'Wii Sports Club', + platform: 'WIIU', + date: 1383775200000, + user_score: 7, + link: '/game/wii-u/wii-sports-club', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Sports', 'General', 'General', 'Individual', 'Athletics']", + }, + { + meta_score: 72, + title: 'Wii Fit U', + platform: 'WIIU', + date: 1383256800000, + user_score: 7.7, + link: '/game/wii-u/wii-fit-u', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Miscellaneous', 'General', 'Exercise / Fitness']", + }, + { + meta_score: null, + title: 'New Super Mario Bros. U + New Super Luigi U', + platform: 'WIIU', + date: 1383256800000, + user_score: 8.7, + link: '/game/wii-u/new-super-mario-bros-u-+-new-super-luigi-u', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 65, + title: 'Wii Party U', + platform: 'WIIU', + date: 1382648400000, + user_score: 7.1, + link: '/game/wii-u/wii-party-u', + esrb_rating: 'E', + developers: "['Nd Cube']", + genres: "['Miscellaneous', 'Party', 'Party', 'Party / Minigame']", + }, + { + meta_score: 87, + title: 'Pokemon X', + platform: '3DS', + date: 1381525200000, + user_score: 7.5, + link: '/game/3ds/pokemon-x', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Trainer']", + }, + { + meta_score: 88, + title: 'Pokemon Y', + platform: '3DS', + date: 1381525200000, + user_score: 7.5, + link: '/game/3ds/pokemon-y', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Trainer']", + }, + { + meta_score: 70, + title: 'Inazuma Eleven 3: Lightning Bolt', + platform: '3DS', + date: 1380229200000, + user_score: 8.1, + link: '/game/3ds/inazuma-eleven-3-lightning-bolt', + esrb_rating: '', + developers: "['Level 5']", + genres: "['Sports', 'Traditional', 'Soccer', 'Arcade']", + }, + { + meta_score: 72, + title: 'Inazuma Eleven 3: Bomb Blast', + platform: '3DS', + date: 1380229200000, + user_score: 8.1, + link: '/game/3ds/inazuma-eleven-3-bomb-blast', + esrb_rating: '', + developers: "['Level 5']", + genres: "['Sports', 'Traditional', 'Soccer', 'Arcade']", + }, + { + meta_score: 90, + title: 'The Legend of Zelda: The Wind Waker HD', + platform: 'WIIU', + date: 1379624400000, + user_score: 9, + link: '/game/wii-u/the-legend-of-zelda-the-wind-waker-hd', + esrb_rating: 'E10+', + developers: "['Nintendo', ' HexaDrive']", + genres: "['Action Adventure', 'Fantasy', 'Fantasy', 'Open-World']", + }, + { + meta_score: 78, + title: 'The Wonderful 101', + platform: 'WIIU', + date: 1379192400000, + user_score: 8.6, + link: '/game/wii-u/the-wonderful-101', + esrb_rating: 'T', + developers: "['PlatinumGames']", + genres: "['Action', 'General', 'General', 'Platformer', '2D']", + }, + { + meta_score: 49, + title: 'Pokemon Rumble U', + platform: 'WIIU', + date: 1377723600000, + user_score: 5.2, + link: '/game/wii-u/pokemon-rumble-u', + esrb_rating: 'E', + developers: "['Ambrella']", + genres: "['Action', \"Beat-'Em-Up\", \"Beat-'Em-Up\", '2D', '3D']", + }, + { + meta_score: 81, + title: 'Mario & Luigi: Dream Team', + platform: '3DS', + date: 1376168400000, + user_score: 8.3, + link: '/game/3ds/mario-luigi-dream-team', + esrb_rating: 'E10+', + developers: "['Alphadream Corporation']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Japanese-Style']", + }, + { + meta_score: 70, + title: 'Art Academy: SketchPad', + platform: 'WIIU', + date: 1375995600000, + user_score: 6.3, + link: '/game/wii-u/art-academy-sketchpad', + esrb_rating: 'E', + developers: "['Headstrong Games']", + genres: "['Miscellaneous', 'General', 'General', 'Application']", + }, + { + meta_score: null, + title: 'Animal Crossing Plaza', + platform: 'WIIU', + date: 1375822800000, + user_score: 5.2, + link: '/game/wii-u/animal-crossing-plaza', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'Application']", + }, + { + meta_score: 87, + title: 'Pikmin 3', + platform: 'WIIU', + date: 1375563600000, + user_score: 8.8, + link: '/game/wii-u/pikmin-3', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Strategy', 'Real-Time', 'Fantasy', 'General', 'Fantasy']", + }, + { + meta_score: 61, + title: 'Game & Wario', + platform: 'WIIU', + date: 1371934800000, + user_score: 6.7, + link: '/game/wii-u/game-wario', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Party', 'Party', 'Party / Minigame']", + }, + { + meta_score: 77, + title: 'New Super Luigi U', + platform: 'WIIU', + date: 1371675600000, + user_score: 8, + link: '/game/wii-u/new-super-luigi-u', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 88, + title: 'Animal Crossing: New Leaf', + platform: '3DS', + date: 1370725200000, + user_score: 8.7, + link: '/game/3ds/animal-crossing-new-leaf', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 83, + title: 'Donkey Kong Country Returns 3D', + platform: '3DS', + date: 1369342800000, + user_score: 8.2, + link: '/game/3ds/donkey-kong-country-returns-3d', + esrb_rating: 'E', + developers: "['Monster Games Inc.']", + genres: "['Action', 'General', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - The Future Past 3', + platform: '3DS', + date: 1369256400000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---the-future-past-3', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Apotheosis', + platform: '3DS', + date: 1369256400000, + user_score: 7.5, + link: '/game/3ds/fire-emblem-awakening---apotheosis', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - The Future Past 2', + platform: '3DS', + date: 1368651600000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---the-future-past-2', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: 78, + title: 'Mario and Donkey Kong: Minis on the Move', + platform: '3DS', + date: 1368046800000, + user_score: 7.2, + link: '/game/3ds/mario-and-donkey-kong-minis-on-the-move', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Puzzle', 'Action', 'Platformer', 'Platformer', '3D', '3D']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - The Future Past 1', + platform: '3DS', + date: 1368046800000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---the-future-past-1', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Hot Spring Scramble', + platform: '3DS', + date: 1368046800000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---hot-spring-scramble', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Summer Scramble', + platform: '3DS', + date: 1367442000000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---summer-scramble', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Wii U Panorama View', + platform: 'WIIU', + date: 1366923600000, + user_score: 5.4, + link: '/game/wii-u/wii-u-panorama-view', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - The Radiant Hero', + platform: '3DS', + date: 1366837200000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---the-radiant-hero', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Harvest Scramble', + platform: '3DS', + date: 1366837200000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---harvest-scramble', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Roster Rescue', + platform: '3DS', + date: 1366837200000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---roster-rescue', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: 62, + title: 'LEGO City Undercover: The Chase Begins', + platform: '3DS', + date: 1366491600000, + user_score: 6.7, + link: '/game/3ds/lego-city-undercover-the-chase-begins', + esrb_rating: 'E10+', + developers: '["Traveller\'s Tales"]', + genres: "['Action Adventure', 'Fantasy', 'General', 'Fantasy']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Five-Anna Firefight', + platform: '3DS', + date: 1366232400000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---five-anna-firefight', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: 68, + title: "Dillon's Rolling Western: The Last Ranger", + platform: '3DS', + date: 1365627600000, + user_score: 7, + link: '/game/3ds/dillons-rolling-western-the-last-ranger', + esrb_rating: 'E10+', + developers: "['Vanpool']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Rogues and Redeemers 3', + platform: '3DS', + date: 1365627600000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---rogues-and-redeemers-3', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - The Wellspring of Truth', + platform: '3DS', + date: 1365627600000, + user_score: 7, + link: '/game/3ds/fire-emblem-awakening---the-wellspring-of-truth', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: "Fire Emblem: Awakening - Death's Embrace", + platform: '3DS', + date: 1365627600000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---deaths-embrace', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Rogues and Redeemers 2', + platform: '3DS', + date: 1365022800000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---rogues-and-redeemers-2', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: 73, + title: 'HarmoKnight', + platform: '3DS', + date: 1364421600000, + user_score: 7.4, + link: '/game/3ds/harmoknight', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music', 'Music']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Ghost of Blade', + platform: '3DS', + date: 1364421600000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---ghost-of-blade', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Rogues and Redeemers 1', + platform: '3DS', + date: 1364421600000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---rogues-and-redeemers-1', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Smash Brethren 3', + platform: '3DS', + date: 1364421600000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---smash-brethren-3', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: 86, + title: "Luigi's Mansion: Dark Moon", + platform: '3DS', + date: 1364076000000, + user_score: 8.4, + link: '/game/3ds/luigis-mansion-dark-moon', + esrb_rating: 'E', + developers: "['Next Level Games']", + genres: "['Action Adventure', 'Fantasy', 'General', 'Fantasy']", + }, + { + meta_score: 59, + title: 'Pokemon Mystery Dungeon: Gates to Infinity', + platform: '3DS', + date: 1364076000000, + user_score: 6.3, + link: '/game/3ds/pokemon-mystery-dungeon-gates-to-infinity', + esrb_rating: 'E', + developers: "['Nintendo', ' Spike Chunsoft']", + genres: "['General', 'Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Roguelike']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Smash Brethren 2', + platform: '3DS', + date: 1363816800000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---smash-brethren-2', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: 80, + title: 'LEGO City Undercover', + platform: 'WIIU', + date: 1363557600000, + user_score: 8.2, + link: '/game/wii-u/lego-city-undercover', + esrb_rating: 'E10+', + developers: "['TT Games']", + genres: "['Action Adventure', 'Fantasy', 'General', 'Fantasy', 'Open-World']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Smash Brethren 1', + platform: '3DS', + date: 1363212000000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---smash-brethren-1', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Lost Bloodlines 3', + platform: '3DS', + date: 1363212000000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---lost-bloodlines-3', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - A Hard Miracle', + platform: '3DS', + date: 1363125600000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---a-hard-miracle', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: 62, + title: 'Kersploosh!', + platform: '3DS', + date: 1362607200000, + user_score: 7, + link: '/game/3ds/kersploosh!', + esrb_rating: 'E', + developers: "['Poisoft']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Lost Bloodlines 2', + platform: '3DS', + date: 1362607200000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---lost-bloodlines-2', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Infinite Regalia', + platform: '3DS', + date: 1362607200000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---infinite-regalia', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - EXPonential Growth', + platform: '3DS', + date: 1362002400000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---exponential-growth', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Irreconcilable Paths', + platform: '3DS', + date: 1362002400000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---irreconcilable-paths', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Lost Bloodlines 1', + platform: '3DS', + date: 1361397600000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---lost-bloodlines-1', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Wii Street U', + platform: 'WIIU', + date: 1360792800000, + user_score: 5.9, + link: '/game/wii-u/wii-street-u', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'Application']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Champions of Yore 3', + platform: '3DS', + date: 1360792800000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---champions-of-yore-3', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - The Golden Gaffe', + platform: '3DS', + date: 1360792800000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---the-golden-gaffe', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: "Fire Emblem: Awakening - The Dead King's Lament", + platform: '3DS', + date: 1360792800000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---the-dead-kings-lament', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: 69, + title: 'Brain Age: Concentration Training', + platform: '3DS', + date: 1360447200000, + user_score: 7.2, + link: '/game/3ds/brain-age-concentration-training', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Edutainment', 'Miscellaneous', 'Edutainment']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Champions of Yore 2', + platform: '3DS', + date: 1360188000000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---champions-of-yore-2', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: 92, + title: 'Fire Emblem: Awakening', + platform: '3DS', + date: 1359928800000, + user_score: 9, + link: '/game/3ds/fire-emblem-awakening', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Fire Emblem: Awakening - Champions of Yore 1', + platform: '3DS', + date: 1359583200000, + user_score: null, + link: '/game/3ds/fire-emblem-awakening---champions-of-yore-1', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: 68, + title: 'Tokyo Crash Mobs', + platform: '3DS', + date: 1358373600000, + user_score: 7.4, + link: '/game/3ds/tokyo-crash-mobs', + esrb_rating: 'E', + developers: "['Mitchell']", + genres: "['Miscellaneous', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: 'Chase Mii', + platform: 'WIIU', + date: null, + user_score: null, + link: '/game/wii-u/chase-mii', + esrb_rating: 'RP', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General']", + }, + { + meta_score: 78, + title: 'Fluidity: Spin Cycle', + platform: '3DS', + date: 1356559200000, + user_score: 6.6, + link: '/game/3ds/fluidity-spin-cycle', + esrb_rating: 'E', + developers: "['Curve Studios']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: 'New Super Mario Bros. 2: Mystery Adventure Pack', + platform: '3DS', + date: 1355954400000, + user_score: 7.7, + link: '/game/3ds/new-super-mario-bros-2-mystery-adventure-pack', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: 'New Super Mario Bros. 2: Impossible Pack', + platform: '3DS', + date: 1355954400000, + user_score: 7.6, + link: '/game/3ds/new-super-mario-bros-2-impossible-pack', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: 'New Super Mario Bros. 2: Coin Challenge Pack C', + platform: '3DS', + date: 1354658400000, + user_score: 7.6, + link: '/game/3ds/new-super-mario-bros-2-coin-challenge-pack-c', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: 'New Super Mario Bros. 2: Platform Panic Pack', + platform: '3DS', + date: 1354658400000, + user_score: 7, + link: '/game/3ds/new-super-mario-bros-2-platform-panic-pack', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '3D', '2D']", + }, + { + meta_score: null, + title: 'New Super Mario Bros. 2: Gold Classics Pack', + platform: '3DS', + date: 1353967200000, + user_score: 7.1, + link: '/game/3ds/new-super-mario-bros-2-gold-classics-pack', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 86, + title: 'Crashmo', + platform: '3DS', + date: 1353535200000, + user_score: 8.2, + link: '/game/3ds/crashmo', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Puzzle', 'Action', 'Puzzle', 'Action']", + }, + { + meta_score: 84, + title: 'New Super Mario Bros. U', + platform: 'WIIU', + date: 1353189600000, + user_score: 8, + link: '/game/wii-u/new-super-mario-bros-u', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 69, + title: "Ninja Gaiden 3: Razor's Edge", + platform: 'WIIU', + date: 1353189600000, + user_score: 7.4, + link: '/game/wii-u/ninja-gaiden-3-razors-edge', + esrb_rating: 'M', + developers: "['Team Ninja']", + genres: "['Action', 'Action Adventure', 'Platformer', 'General', 'Platformer', '3D', '3D']", + }, + { + meta_score: 60, + title: 'SiNG Party', + platform: 'WIIU', + date: 1353189600000, + user_score: 6.1, + link: '/game/wii-u/sing-party', + esrb_rating: 'E10+', + developers: "['FreeStyleGames']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music', 'Music']", + }, + { + meta_score: 77, + title: 'Nintendo Land', + platform: 'WIIU', + date: 1353189600000, + user_score: 7.9, + link: '/game/wii-u/nintendo-land', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Party', 'Party', 'Party / Minigame']", + }, + { + meta_score: 75, + title: 'Paper Mario: Sticker Star', + platform: '3DS', + date: 1352584800000, + user_score: 5.5, + link: '/game/3ds/paper-mario-sticker-star', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Action Adventure', 'General', 'Fantasy', 'Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Japanese-Style']", + }, + { + meta_score: 59, + title: 'Pokedex 3D Pro', + platform: '3DS', + date: 1352325600000, + user_score: 4.3, + link: '/game/3ds/pokedex-3d-pro', + esrb_rating: 'E', + developers: "['Creatures Inc.']", + genres: "['Miscellaneous', 'General', 'General', 'Application']", + }, + { + meta_score: 63, + title: 'Freakyforms Deluxe: Your Creations, Alive!', + platform: '3DS', + date: 1352066400000, + user_score: 7.5, + link: '/game/3ds/freakyforms-deluxe-your-creations-alive!', + esrb_rating: 'E', + developers: "['Asobism', ' Co. ltd.', ' Asobism.Co.', 'Ltd', ' Asobism']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: 82, + title: 'Professor Layton and the Miracle Mask', + platform: '3DS', + date: 1351371600000, + user_score: 8.1, + link: '/game/3ds/professor-layton-and-the-miracle-mask', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Puzzle', 'Miscellaneous', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: 'New Super Mario Bros. 2: Coin Challenge Pack B', + platform: '3DS', + date: 1351112400000, + user_score: 7.1, + link: '/game/3ds/new-super-mario-bros-2-coin-challenge-pack-b', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: 'New Super Mario Bros. 2: Gold Mushroom Pack', + platform: '3DS', + date: 1351112400000, + user_score: 7.1, + link: '/game/3ds/new-super-mario-bros-2-gold-mushroom-pack', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 76, + title: 'Style Savvy: Trendsetters', + platform: '3DS', + date: 1350853200000, + user_score: 7.6, + link: '/game/3ds/style-savvy-trendsetters', + esrb_rating: 'E', + developers: "['syn Sophia']", + genres: "['Simulation', 'Miscellaneous', 'General', 'General', 'Virtual', 'Career']", + }, + { + meta_score: 67, + title: 'Sparkle Snapshots 3D', + platform: '3DS', + date: 1350507600000, + user_score: null, + link: '/game/3ds/sparkle-snapshots-3d', + esrb_rating: '', + developers: "['Atlus Co.', ' Atlus']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: 'Wii Sports/Wii Sports Resort', + platform: 'WII', + date: 1350248400000, + user_score: 8.4, + link: '/game/wii/wii-sportswii-sports-resort', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Compilation', 'Compilation']", + }, + { + meta_score: 80, + title: 'Pokemon Black Version 2', + platform: 'DS', + date: 1349557200000, + user_score: 8.1, + link: '/game/ds/pokemon-black-version-2', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Trainer']", + }, + { + meta_score: 80, + title: 'Pokemon White Version 2', + platform: 'DS', + date: 1349557200000, + user_score: 8, + link: '/game/ds/pokemon-white-version-2', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Trainer']", + }, + { + meta_score: 54, + title: 'Pokemon Dream Radar', + platform: '3DS', + date: 1349557200000, + user_score: 5.9, + link: '/game/3ds/pokemon-dream-radar', + esrb_rating: 'E', + developers: "['Creatures Inc.']", + genres: "['Action', 'General', 'Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: 'New Super Mario Bros. 2: Coin Challenge Pack A', + platform: '3DS', + date: 1349298000000, + user_score: 7.9, + link: '/game/3ds/new-super-mario-bros-2-coin-challenge-pack-a', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: 'New Super Mario Bros. 2: Gold Rush Pack', + platform: '3DS', + date: 1349298000000, + user_score: 7.3, + link: '/game/3ds/new-super-mario-bros-2-gold-rush-pack', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: 'New Super Mario Bros. 2: Nerve-Wrack Pack', + platform: '3DS', + date: 1349298000000, + user_score: 7.5, + link: '/game/3ds/new-super-mario-bros-2-nerve-wrack-pack', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 81, + title: 'Art Academy: Lessons for Everyone', + platform: '3DS', + date: 1349038800000, + user_score: 7.5, + link: '/game/3ds/art-academy-lessons-for-everyone', + esrb_rating: 'E', + developers: "['Nintendo', ' Headstrong Games']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: null, + title: 'Art Academy: Lessons for Everyone', + platform: '3DS', + date: 1349038800000, + user_score: null, + link: '/game/3ds/art-academy-lessons-for-everyone', + esrb_rating: 'E', + developers: "['Nintendo', ' Headstrong Games']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: null, + title: 'Crosswords Plus', + platform: '3DS', + date: 1349038800000, + user_score: 7.8, + link: '/game/3ds/crosswords-plus', + esrb_rating: 'E', + developers: "['Nintendo Software Technology']", + genres: "['Miscellaneous', 'Puzzle', 'General', 'Puzzle', 'Logic', 'General']", + }, + { + meta_score: 59, + title: 'Inazuma Eleven Strikers', + platform: 'WII', + date: 1348779600000, + user_score: 8.3, + link: '/game/wii/inazuma-eleven-strikers', + esrb_rating: '', + developers: "['Level 5']", + genres: "['Sports', 'General']", + }, + { + meta_score: 82, + title: "Kirby's Dream Collection: Special Edition", + platform: 'WII', + date: 1347742800000, + user_score: 8.9, + link: '/game/wii/kirbys-dream-collection-special-edition', + esrb_rating: 'E10+', + developers: "['HAL Labs']", + genres: "['Miscellaneous', 'Compilation', 'Compilation']", + }, + { + meta_score: 78, + title: 'New Super Mario Bros. 2', + platform: '3DS', + date: 1345323600000, + user_score: 7.1, + link: '/game/3ds/new-super-mario-bros-2', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 77, + title: 'Project Zero 2: Wii Edition', + platform: 'WII', + date: 1340917200000, + user_score: 8.4, + link: '/game/wii/project-zero-2-wii-edition', + esrb_rating: '', + developers: "['Koei Tecmo Games']", + genres: "['Action Adventure', 'Horror']", + }, + { + meta_score: 80, + title: 'Pokemon Conquest', + platform: 'DS', + date: 1339966800000, + user_score: 8.1, + link: '/game/ds/pokemon-conquest', + esrb_rating: 'E', + developers: "['Koei', ' Koei Tecmo Games']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'New Play Control! Pikmin 2', + platform: 'WII', + date: 1339275600000, + user_score: 8.7, + link: '/game/wii/new-play-control!-pikmin-2', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Strategy', 'Real-Time', 'Fantasy', 'General', 'Fantasy']", + }, + { + meta_score: 69, + title: 'Mario Tennis Open', + platform: '3DS', + date: 1337461200000, + user_score: 6.9, + link: '/game/3ds/mario-tennis-open', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Traditional', 'Individual', 'Tennis', 'Tennis']", + }, + { + meta_score: 54, + title: 'Spirit Camera: The Cursed Memoir', + platform: '3DS', + date: 1334264400000, + user_score: 6.4, + link: '/game/3ds/spirit-camera-the-cursed-memoir', + esrb_rating: 'T', + developers: "['Tecmo Koei Games']", + genres: "['Action Adventure', 'Horror', 'Horror', 'Survival']", + }, + { + meta_score: 76, + title: "Ketzal's Corridors", + platform: '3DS', + date: 1334178000000, + user_score: 7.6, + link: '/game/3ds/ketzals-corridors', + esrb_rating: 'E', + developers: "['Keys Factory']", + genres: "['General', 'Miscellaneous', 'Puzzle', 'Action', 'Puzzle', 'Action']", + }, + { + meta_score: 92, + title: 'Xenoblade Chronicles', + platform: 'WII', + date: 1333659600000, + user_score: 9.1, + link: '/game/wii/xenoblade-chronicles', + esrb_rating: 'T', + developers: "['Monolith Soft']", + genres: "['Role-Playing', 'Action RPG', 'Console-style RPG', 'Action RPG']", + }, + { + meta_score: 83, + title: 'Kid Icarus: Uprising', + platform: '3DS', + date: 1332453600000, + user_score: 8.7, + link: '/game/3ds/kid-icarus-uprising', + esrb_rating: 'E10+', + developers: "['Opus', ' Project Sora']", + genres: "['Action Adventure', 'Fantasy', 'General', 'Fantasy']", + }, + { + meta_score: 77, + title: '3D Classics: Kid Icarus', + platform: '3DS', + date: 1332453600000, + user_score: 7.4, + link: '/game/3ds/3d-classics-kid-icarus', + esrb_rating: 'E', + developers: "['Arika']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 74, + title: 'Inazuma Eleven 2: Firestorm', + platform: 'DS', + date: 1331848800000, + user_score: 8.6, + link: '/game/ds/inazuma-eleven-2-firestorm', + esrb_rating: '', + developers: "['Level 5']", + genres: "['Sports', 'General']", + }, + { + meta_score: 74, + title: 'Inazuma Eleven 2: Blizzard', + platform: 'DS', + date: 1331848800000, + user_score: 8.2, + link: '/game/ds/inazuma-eleven-2-blizzard', + esrb_rating: '', + developers: "['Level 5']", + genres: "['Sports', 'General']", + }, + { + meta_score: 73, + title: 'Mario Party 9', + platform: 'WII', + date: 1331416800000, + user_score: 6.8, + link: '/game/wii/mario-party-9', + esrb_rating: 'E', + developers: "['Nd Cube']", + genres: "['Miscellaneous', 'Party', 'Party', 'Party / Minigame']", + }, + { + meta_score: 60, + title: 'PokePark 2: Wonders Beyond', + platform: 'WII', + date: 1330293600000, + user_score: 7.7, + link: '/game/wii/pokepark-2-wonders-beyond', + esrb_rating: 'E', + developers: "['Creatures Inc.']", + genres: "['Action Adventure', 'Adventure', 'General', 'Fantasy', 'General', 'Fantasy']", + }, + { + meta_score: 65, + title: "Dillon's Rolling Western", + platform: '3DS', + date: 1329861600000, + user_score: 7.6, + link: '/game/3ds/dillons-rolling-western', + esrb_rating: 'E10+', + developers: "['Vanpool']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: 83, + title: 'Rhythm Heaven Fever', + platform: 'WII', + date: 1329084000000, + user_score: 8.3, + link: '/game/wii/rhythm-heaven-fever', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music', 'Music']", + }, + { + meta_score: 46, + title: 'One Piece: Unlimited Cruise SP', + platform: '3DS', + date: 1328824800000, + user_score: 6.8, + link: '/game/3ds/one-piece-unlimited-cruise-sp', + esrb_rating: '', + developers: "['Bandai Namco Games']", + genres: "['Action', 'General']", + }, + { + meta_score: 74, + title: 'Sakura Samurai: Art of the Sword', + platform: '3DS', + date: 1328133600000, + user_score: 7.3, + link: '/game/3ds/sakura-samurai-art-of-the-sword', + esrb_rating: 'T', + developers: "['Grounding Inc.']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'Pro Wrestling', + platform: 'WII', + date: null, + user_score: null, + link: '/game/wii/pro-wrestling', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', 'Wrestling']", + }, + { + meta_score: null, + title: "The Legend of Zelda: Link's Awakening DX", + platform: '3DS', + date: 1293832800000, + user_score: null, + link: '/game/3ds/the-legend-of-zelda-links-awakening-dx', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: null, + title: 'Super Mario Land', + platform: '3DS', + date: 1293832800000, + user_score: null, + link: '/game/3ds/super-mario-land', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Deer Drive Legends', + platform: '3DS', + date: null, + user_score: null, + link: '/game/3ds/deer-drive-legends', + esrb_rating: 'T', + developers: "['Raylight Studios']", + genres: "['Sports', 'Individual', 'Nature', 'Hunting', 'Hunting']", + }, + { + meta_score: null, + title: 'Swapnote', + platform: '3DS', + date: 1324504800000, + user_score: 7.3, + link: '/game/3ds/swapnote', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General', 'Application']", + }, + { + meta_score: 90, + title: 'Pushmo', + platform: '3DS', + date: 1323295200000, + user_score: 8.3, + link: '/game/3ds/pushmo', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Puzzle', 'Action', 'Puzzle', 'Action']", + }, + { + meta_score: 68, + title: 'Fortune Street', + platform: 'WII', + date: 1323036000000, + user_score: 7.6, + link: '/game/wii/fortune-street', + esrb_rating: 'E', + developers: "['Marvelous AQL']", + genres: "['Miscellaneous', 'Board Games', 'Board Games', 'Board / Card Game']", + }, + { + meta_score: 85, + title: 'Mario Kart 7', + platform: '3DS', + date: 1322949600000, + user_score: 8.2, + link: '/game/3ds/mario-kart-7', + esrb_rating: 'E', + developers: "['Retro Studios', ' Entertainment Analysis & Development Division']", + genres: "['Driving', 'Racing', 'Arcade', 'Kart', 'Kart', 'Automobile']", + }, + { + meta_score: 93, + title: 'The Legend of Zelda: Skyward Sword', + platform: 'WII', + date: 1321740000000, + user_score: 8.1, + link: '/game/wii/the-legend-of-zelda-skyward-sword', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Fantasy', 'General', 'Fantasy', 'Action Adventure', 'Open-World']", + }, + { + meta_score: 77, + title: "3D Classics: Kirby's Adventure", + platform: '3DS', + date: 1321480800000, + user_score: 7.9, + link: '/game/3ds/3d-classics-kirbys-adventure', + esrb_rating: 'E', + developers: "['Arika']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 68, + title: 'Fossil Fighters: Champions', + platform: 'DS', + date: 1321221600000, + user_score: 7.9, + link: '/game/ds/fossil-fighters-champions', + esrb_rating: 'E', + developers: "['RED Entertainment', ' Artdink']", + genres: "['Role-Playing', 'General', 'General', 'Trainer']", + }, + { + meta_score: 90, + title: 'Super Mario 3D Land', + platform: '3DS', + date: 1321135200000, + user_score: 8.4, + link: '/game/3ds/super-mario-3d-land', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '3D', '3D']", + }, + { + meta_score: 68, + title: 'Freakyforms: Your Creations, Alive!', + platform: '3DS', + date: 1320876000000, + user_score: 7.7, + link: '/game/3ds/freakyforms-your-creations-alive!', + esrb_rating: 'E', + developers: "['Asobism', ' Co. ltd.', ' Asobism.Co.', 'Ltd', ' Asobism']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: 77, + title: "Kirby's Return to Dream Land", + platform: 'WII', + date: 1319403600000, + user_score: 8.8, + link: '/game/wii/kirbys-return-to-dream-land', + esrb_rating: 'E10+', + developers: "['HAL Labs']", + genres: "['General', 'Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 56, + title: 'Pokemon Rumble Blast', + platform: '3DS', + date: 1319403600000, + user_score: 6.8, + link: '/game/3ds/pokemon-rumble-blast', + esrb_rating: 'E10+', + developers: "['Ambrella']", + genres: "['Action', 'General', \"Beat-'Em-Up\", \"Beat-'Em-Up\", '2D', '3D']", + }, + { + meta_score: 83, + title: 'Professor Layton and the Last Specter', + platform: 'DS', + date: 1318885200000, + user_score: 8.1, + link: '/game/ds/professor-layton-and-the-last-specter', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 74, + title: 'Tetris Axis', + platform: '3DS', + date: 1317502800000, + user_score: 7.1, + link: '/game/3ds/tetris-axis', + esrb_rating: 'E', + developers: "['Hudson Soft']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Stacking', 'Stacking']", + }, + { + meta_score: 85, + title: 'The Legend of Zelda: Four Swords Anniversary Edition', + platform: 'DS', + date: 1317157200000, + user_score: 7.5, + link: '/game/ds/the-legend-of-zelda-four-swords-anniversary-edition', + esrb_rating: 'E10+', + developers: "['GREZZO']", + genres: "['Action Adventure', 'Fantasy', 'General', 'Fantasy']", + }, + { + meta_score: 68, + title: '3D Classics: TwinBee', + platform: '3DS', + date: 1316638800000, + user_score: 7.3, + link: '/game/3ds/3d-classics-twinbee', + esrb_rating: 'E', + developers: "['Arika']", + genres: "['Action', 'Shooter', 'Shooter', 'Scrolling', 'Scrolling', \"Shoot-'Em-Up\", 'Vertical']", + }, + { + meta_score: 83, + title: 'Kirby Mass Attack', + platform: 'DS', + date: 1316379600000, + user_score: 7.9, + link: '/game/ds/kirby-mass-attack', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 77, + title: 'Dragon Quest Monsters: Joker 2', + platform: 'DS', + date: 1316379600000, + user_score: 7.6, + link: '/game/ds/dragon-quest-monsters-joker-2', + esrb_rating: 'E', + developers: "['TOSE']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Japanese-Style', 'Trainer']", + }, + { + meta_score: 81, + title: 'Star Fox 64 3D', + platform: '3DS', + date: 1315515600000, + user_score: 8.1, + link: '/game/3ds/star-fox-64-3d', + esrb_rating: 'E10+', + developers: "['Nintendo', ' Q-Games']", + genres: "['Action', 'Shooter', 'Shooter', 'Rail', 'Rail']", + }, + { + meta_score: 74, + title: 'Inazuma Eleven', + platform: 'DS', + date: 1314306000000, + user_score: 7.9, + link: '/game/ds/inazuma-eleven', + esrb_rating: 'E', + developers: "['Level 5']", + genres: "['Sports', 'Traditional', 'Soccer', 'Arcade']", + }, + { + meta_score: 37, + title: '3D Classics: Urban Champion', + platform: '3DS', + date: 1313614800000, + user_score: 4.8, + link: '/game/3ds/3d-classics-urban-champion', + esrb_rating: 'E10+', + developers: "['Arika']", + genres: "['Action', 'Fighting', 'Fighting', '2D', '2D']", + }, + { + meta_score: 56, + title: '3D Classics: Xevious', + platform: '3DS', + date: 1311195600000, + user_score: 5.8, + link: '/game/3ds/3d-classics-xevious', + esrb_rating: 'E', + developers: "['Arika']", + genres: "['Action', 'Shooter', 'Shooter', 'Scrolling', 'Scrolling', \"Shoot-'Em-Up\", 'Vertical']", + }, + { + meta_score: null, + title: 'Nintendo Video', + platform: '3DS', + date: 1311195600000, + user_score: 5.9, + link: '/game/3ds/nintendo-video', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: 65, + title: 'Mystery Case Files: The Malgrave Incident', + platform: 'WII', + date: 1309294800000, + user_score: 7.4, + link: '/game/wii/mystery-case-files-the-malgrave-incident', + esrb_rating: 'E', + developers: "['Sanzaru Games']", + genres: "['Miscellaneous', 'Puzzle', 'Hidden Object', 'Puzzle', 'General']", + }, + { + meta_score: 94, + title: 'The Legend of Zelda: Ocarina of Time 3D', + platform: '3DS', + date: 1308430800000, + user_score: 9, + link: '/game/3ds/the-legend-of-zelda-ocarina-of-time-3d', + esrb_rating: 'E10+', + developers: "['GREZZO']", + genres: "['Miscellaneous', 'Fantasy', 'Fantasy', 'Compilation', 'Action Adventure', 'Open-World']", + }, + { + meta_score: 60, + title: 'Wii Play: Motion', + platform: 'WII', + date: 1307912400000, + user_score: 6.4, + link: '/game/wii/wii-play-motion', + esrb_rating: 'E10+', + developers: "['Nintendo', ' Good-Feel']", + genres: "['Miscellaneous', 'Party', 'Party', 'Party / Minigame']", + }, + { + meta_score: 69, + title: 'Pokedex 3D', + platform: '3DS', + date: 1307307600000, + user_score: 6.6, + link: '/game/3ds/pokedex-3d', + esrb_rating: 'E', + developers: "['Creatures Inc.']", + genres: "['Miscellaneous', 'General', 'General', 'Application']", + }, + { + meta_score: null, + title: '3D Classics: Excitebike', + platform: '3DS', + date: 1307307600000, + user_score: 6.6, + link: '/game/3ds/3d-classics-excitebike', + esrb_rating: 'E', + developers: "['Arika']", + genres: "['Driving', 'Racing', 'Arcade', 'Motorcycle', 'Other', 'Automobile', 'Motocross', 'Motocross']", + }, + { + meta_score: 71, + title: 'Nintendogs + Cats: Golden Retriever & New Friends', + platform: '3DS', + date: 1301176800000, + user_score: 7.2, + link: '/game/3ds/nintendogs-+-cats-golden-retriever-new-friends', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual Life', 'Virtual', 'Pet']", + }, + { + meta_score: 71, + title: 'Pilotwings Resort', + platform: '3DS', + date: 1301176800000, + user_score: 7.2, + link: '/game/3ds/pilotwings-resort', + esrb_rating: 'E', + developers: "['Monster Games Inc.']", + genres: "['Simulation', 'Flight', 'Civilian Plane', 'Civilian Plane', 'Civilian']", + }, + { + meta_score: 58, + title: 'Steel Diver', + platform: '3DS', + date: 1301176800000, + user_score: 6.3, + link: '/game/3ds/steel-diver', + esrb_rating: 'E10+', + developers: "['Nintendo', ' Vitei']", + genres: "['Action', 'Simulation', 'General', 'Submarine', 'Submarine', 'Marine', 'Combat']", + }, + { + meta_score: 71, + title: 'Nintendogs + Cats: Toy Poodle & New Friends', + platform: '3DS', + date: 1301176800000, + user_score: 7.5, + link: '/game/3ds/nintendogs-+-cats-toy-poodle-new-friends', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual Life', 'Virtual', 'Pet']", + }, + { + meta_score: 71, + title: 'Nintendogs + Cats: French Bulldog & New Friends', + platform: '3DS', + date: 1301176800000, + user_score: 7.1, + link: '/game/3ds/nintendogs-+-cats-french-bulldog-new-friends', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual Life', 'Virtual', 'Pet']", + }, + { + meta_score: null, + title: 'AR Games', + platform: '3DS', + date: 1301176800000, + user_score: 7.1, + link: '/game/3ds/ar-games', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: 'Face Raiders', + platform: '3DS', + date: 1301176800000, + user_score: 7.2, + link: '/game/3ds/face-raiders', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'General', 'General', 'Shooter', 'Light Gun']", + }, + { + meta_score: null, + title: 'StreetPass Mii Plaza', + platform: '3DS', + date: 1301176800000, + user_score: 7.7, + link: '/game/3ds/streetpass-mii-plaza', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Role-Playing', 'General', 'General']", + }, + { + meta_score: null, + title: 'Nintendo 3DS', + platform: '3DS', + date: 1301176800000, + user_score: 8.1, + link: '/game/3ds/nintendo-3ds', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Hardware', 'Console']", + }, + { + meta_score: null, + title: 'Mii Maker', + platform: '3DS', + date: 1301176800000, + user_score: 6.5, + link: '/game/3ds/mii-maker', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'Application']", + }, + { + meta_score: null, + title: 'Nintendo 3DS Internet Browser', + platform: '3DS', + date: 1301176800000, + user_score: null, + link: '/game/3ds/nintendo-3ds-internet-browser', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Application']", + }, + { + meta_score: 87, + title: 'Pokemon Black Version', + platform: 'DS', + date: 1299362400000, + user_score: 7.9, + link: '/game/ds/pokemon-black-version', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Trainer']", + }, + { + meta_score: 87, + title: 'Pokemon White Version', + platform: 'DS', + date: 1299362400000, + user_score: 7.9, + link: '/game/ds/pokemon-white-version', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Trainer']", + }, + { + meta_score: 78, + title: 'Dragon Quest VI: Realms of Revelation', + platform: 'DS', + date: 1297634400000, + user_score: 8.3, + link: '/game/ds/dragon-quest-vi-realms-of-revelation', + esrb_rating: 'T', + developers: "['ArtePiazza']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Japanese-Style']", + }, + { + meta_score: 64, + title: 'Mario Sports Mix', + platform: 'WII', + date: 1297029600000, + user_score: 7.9, + link: '/game/wii/mario-sports-mix', + esrb_rating: 'E', + developers: "['Square Enix']", + genres: "['Sports', 'General', 'General']", + }, + { + meta_score: 69, + title: 'Disaster: Day of Crisis', + platform: 'WII', + date: null, + user_score: 8.8, + link: '/game/wii/disaster-day-of-crisis', + esrb_rating: '', + developers: "['Monolith Soft']", + genres: "['Action', 'General']", + }, + { + meta_score: 66, + title: 'Another Code R: A Journey into Lost Memories', + platform: 'WII', + date: null, + user_score: 7.8, + link: '/game/wii/another-code-r-a-journey-into-lost-memories', + esrb_rating: '', + developers: "['Cing']", + genres: "['Adventure', 'General']", + }, + { + meta_score: null, + title: 'Fluidity', + platform: 'WII', + date: 1262296800000, + user_score: null, + link: '/game/wii/fluidity', + esrb_rating: 'E', + developers: "['Curve Studios']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '3D', '2D']", + }, + { + meta_score: null, + title: 'Mario Party 2', + platform: 'WII', + date: 1292796000000, + user_score: 8.6, + link: '/game/wii/mario-party-2', + esrb_rating: '', + developers: "['Hudson']", + genres: "['Miscellaneous', 'Party']", + }, + { + meta_score: 70, + title: 'Super Mario All-Stars: 25th Anniversary Edition', + platform: 'WII', + date: 1292104800000, + user_score: 7.8, + link: '/game/wii/super-mario-all-stars-25th-anniversary-edition', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Compilation', 'Compilation']", + }, + { + meta_score: 86, + title: 'Fluidity', + platform: 'WII', + date: 1291586400000, + user_score: 7.8, + link: '/game/wii/fluidity', + esrb_rating: 'E', + developers: "['Curve Studios']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '3D', '2D']", + }, + { + meta_score: 79, + title: 'Golden Sun: Dark Dawn', + platform: 'DS', + date: 1290981600000, + user_score: 8.1, + link: '/game/ds/golden-sun-dark-dawn', + esrb_rating: 'E10+', + developers: "['Camelot Software Planning']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Japanese-Style']", + }, + { + meta_score: null, + title: 'Snowpack Park', + platform: 'WII', + date: 1290376800000, + user_score: null, + link: '/game/wii/snowpack-park', + esrb_rating: 'E', + developers: "['Skip Ltd.']", + genres: "['Simulation', 'General', 'General']", + }, + { + meta_score: 87, + title: 'Donkey Kong Country Returns', + platform: 'WII', + date: 1290290400000, + user_score: 8.6, + link: '/game/wii/donkey-kong-country-returns', + esrb_rating: 'E', + developers: "['Retro Studios']", + genres: "['Action', 'Adventure', 'General', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 79, + title: 'Mario vs. Donkey Kong: Mini-Land Mayhem', + platform: 'DS', + date: 1289685600000, + user_score: 8.1, + link: '/game/ds/mario-vs-donkey-kong-mini-land-mayhem', + esrb_rating: 'E', + developers: "['Nintendo', ' Nintendo Software Technology']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 48, + title: 'FlingSmash', + platform: 'WII', + date: 1289080800000, + user_score: 7.4, + link: '/game/wii/flingsmash', + esrb_rating: 'E', + developers: "['Artoon']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: 62, + title: "PokePark Wii: Pikachu's Adventure", + platform: 'WII', + date: 1288648800000, + user_score: 7.7, + link: '/game/wii/pokepark-wii-pikachus-adventure', + esrb_rating: 'E', + developers: "['Creatures Inc.']", + genres: "['Action Adventure', 'Adventure', 'General', 'Fantasy', 'General', 'Fantasy']", + }, + { + meta_score: 75, + title: 'Art Academy', + platform: 'DS', + date: 1288040400000, + user_score: 7.6, + link: '/game/ds/art-academy', + esrb_rating: 'E', + developers: "['Headstrong Games']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: 73, + title: 'ThruSpace', + platform: 'WII', + date: 1287349200000, + user_score: 8.3, + link: '/game/wii/thruspace', + esrb_rating: 'E', + developers: "['Keys Factory']", + genres: "['Miscellaneous', 'Puzzle', 'Action', 'Puzzle', 'Puzzle', 'Action']", + }, + { + meta_score: null, + title: 'Snapdots', + platform: 'DS', + date: 1287349200000, + user_score: null, + link: '/game/ds/snapdots', + esrb_rating: 'E', + developers: "['D4 Enterprise']", + genres: "['Miscellaneous', 'Puzzle', 'Action', 'Puzzle', 'Puzzle', 'Action']", + }, + { + meta_score: 86, + title: "Kirby's Epic Yarn", + platform: 'WII', + date: 1287262800000, + user_score: 8.5, + link: '/game/wii/kirbys-epic-yarn', + esrb_rating: 'E', + developers: "['Good-Feel']", + genres: "['Adventure', 'General', 'Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 68, + title: 'Pokemon Ranger: Guardian Signs', + platform: 'DS', + date: 1286139600000, + user_score: 8.1, + link: '/game/ds/pokemon-ranger-guardian-signs', + esrb_rating: 'E', + developers: "['Creatures Inc.']", + genres: "['Role-Playing', 'General', 'General']", + }, + { + meta_score: 68, + title: 'Wii Party', + platform: 'WII', + date: 1286053200000, + user_score: 8, + link: '/game/wii/wii-party', + esrb_rating: 'E', + developers: "['Nd Cube']", + genres: "['Miscellaneous', 'Party', 'Party', 'Party / Minigame']", + }, + { + meta_score: 55, + title: 'Samurai Warriors 3', + platform: 'WII', + date: 1285621200000, + user_score: 7.6, + link: '/game/wii/samurai-warriors-3', + esrb_rating: 'T', + developers: "['Omega Force']", + genres: "['Action', \"Beat-'Em-Up\", \"Beat-'Em-Up\", '3D']", + }, + { + meta_score: null, + title: 'Nintendo Countdown Calendar', + platform: 'DS', + date: 1284930000000, + user_score: null, + link: '/game/ds/nintendo-countdown-calendar', + esrb_rating: '', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: 86, + title: 'Professor Layton and the Unwound Future', + platform: 'DS', + date: 1284238800000, + user_score: 8.7, + link: '/game/ds/professor-layton-and-the-unwound-future', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 79, + title: 'Metroid: Other M', + platform: 'WII', + date: 1283202000000, + user_score: 6.7, + link: '/game/wii/metroid-other-m', + esrb_rating: 'T', + developers: "['Team Ninja']", + genres: "['Action', 'Action Adventure', 'Shooter', 'Sci-Fi', 'Sci-Fi', 'General', 'Third-Person', 'Sci-Fi']", + }, + { + meta_score: null, + title: 'Face Pilot: Fly With Your Nintendo DSi Camera!', + platform: 'DS', + date: 1280091600000, + user_score: null, + link: '/game/ds/face-pilot-fly-with-your-nintendo-dsi-camera!', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Simulation', 'General', 'General']", + }, + { + meta_score: 45, + title: 'AquaSpace', + platform: 'WII', + date: 1279486800000, + user_score: 5.6, + link: '/game/wii/aquaspace', + esrb_rating: 'E', + developers: "['Paon Corporation']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: 87, + title: 'Dragon Quest IX: Sentinels of the Starry Skies', + platform: 'DS', + date: 1278795600000, + user_score: 8.6, + link: '/game/ds/dragon-quest-ix-sentinels-of-the-starry-skies', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Japanese-Style']", + }, + { + meta_score: null, + title: 'Mario Tennis', + platform: 'WII', + date: 1277672400000, + user_score: null, + link: '/game/wii/mario-tennis', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Traditional', 'Tennis']", + }, + { + meta_score: 87, + title: 'Sin & Punishment: Star Successor', + platform: 'WII', + date: 1277586000000, + user_score: 8.5, + link: '/game/wii/sin-punishment-star-successor', + esrb_rating: 'T', + developers: "['Treasure']", + genres: "['Action', 'General', 'Shooter', 'Shooter', 'Rail', 'Rail']", + }, + { + meta_score: 68, + title: 'Art Style: Rotozoa', + platform: 'WII', + date: 1277067600000, + user_score: null, + link: '/game/wii/art-style-rotozoa', + esrb_rating: 'E', + developers: "['Skip Ltd.']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 74, + title: 'Spin Six', + platform: 'DS', + date: 1277067600000, + user_score: null, + link: '/game/ds/spin-six', + esrb_rating: 'E', + developers: "['Zener Works']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Puzzle', 'Matching', 'Matching']", + }, + { + meta_score: 70, + title: '100 Classic Books', + platform: 'DS', + date: 1276462800000, + user_score: 6.5, + link: '/game/ds/100-classic-books', + esrb_rating: '', + developers: "['Genius Sonority Inc.']", + genres: "['Miscellaneous', 'General', 'Application']", + }, + { + meta_score: null, + title: "A Kappa's Trail", + platform: 'DS', + date: 1276462800000, + user_score: 8.1, + link: '/game/ds/a-kappas-trail', + esrb_rating: 'E', + developers: "['Brownie Brown']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 76, + title: 'Flametail', + platform: 'DS', + date: 1275858000000, + user_score: null, + link: '/game/ds/flametail', + esrb_rating: 'E', + developers: "['Mindware']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 82, + title: 'X-Scape', + platform: 'DS', + date: 1275253200000, + user_score: 7, + link: '/game/ds/x-scape', + esrb_rating: 'E10+', + developers: "['Q-Games']", + genres: "['Simulation', 'Action Adventure', 'Sci-Fi', 'Sci-Fi', 'General', 'Space', 'Combat']", + }, + { + meta_score: null, + title: 'Phoenix Wright: Ace Attorney Episode 5: Rise From the Ashes', + platform: 'WII', + date: 1274734800000, + user_score: 8, + link: '/game/wii/phoenix-wright-ace-attorney-episode-5-rise-from-the-ashes', + esrb_rating: 'T', + developers: "['Capcom']", + genres: "['Adventure', 'First-Person', 'Modern']", + }, + { + meta_score: 76, + title: 'Art Style: light trax', + platform: 'WII', + date: 1274648400000, + user_score: null, + link: '/game/wii/art-style-light-trax', + esrb_rating: 'E', + developers: "['Skip Ltd.']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: 62, + title: 'Metal Torrent', + platform: 'DS', + date: 1274648400000, + user_score: 9.6, + link: '/game/ds/metal-torrent', + esrb_rating: 'E', + developers: "['Arika']", + genres: "['Action', 'Shooter', 'Shooter', 'Scrolling', 'Scrolling', \"Shoot-'Em-Up\", 'Vertical']", + }, + { + meta_score: 97, + title: 'Super Mario Galaxy 2', + platform: 'WII', + date: 1274562000000, + user_score: 9.1, + link: '/game/wii/super-mario-galaxy-2', + esrb_rating: 'E', + developers: "['Nintendo EAD Tokyo ']", + genres: "['Action', 'Platformer', 'Platformer', '3D', '3D']", + }, + { + meta_score: null, + title: 'Kirby Super Star', + platform: 'WII', + date: 1274043600000, + user_score: 8.5, + link: '/game/wii/kirby-super-star', + esrb_rating: 'E', + developers: "['Hal']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: "Looksley's Line Up", + platform: 'DS', + date: 1274043600000, + user_score: null, + link: '/game/ds/looksleys-line-up', + esrb_rating: 'E', + developers: "['Good-Feel']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Hidden Object', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 70, + title: 'Photo Dojo', + platform: 'DS', + date: 1273438800000, + user_score: 7, + link: '/game/ds/photo-dojo', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', \"Beat-'Em-Up\", \"Beat-'Em-Up\", '2D']", + }, + { + meta_score: 83, + title: 'Picross 3D', + platform: 'DS', + date: 1272834000000, + user_score: 8.2, + link: '/game/ds/picross-3d', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Puzzle', 'Logic', 'Logic']", + }, + { + meta_score: null, + title: 'Game & Watch: Flagman', + platform: 'DS', + date: 1271624400000, + user_score: null, + link: '/game/ds/game-watch-flagman', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'Game & Watch: Ball', + platform: 'DS', + date: 1271624400000, + user_score: null, + link: '/game/ds/game-watch-ball', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'General', 'Arcade']", + }, + { + meta_score: null, + title: 'Game & Watch: Donkey Kong Jr.', + platform: 'DS', + date: 1271624400000, + user_score: 7.9, + link: '/game/ds/game-watch-donkey-kong-jr', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'Game & Watch: Vermin', + platform: 'DS', + date: 1270414800000, + user_score: null, + link: '/game/ds/game-watch-vermin', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Trivia / Game Show', 'Trivia / Game Show', 'Arcade']", + }, + { + meta_score: null, + title: 'Game & Watch: Helmet', + platform: 'DS', + date: 1270414800000, + user_score: null, + link: '/game/ds/game-watch-helmet', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'Game & Watch: Manhole', + platform: 'DS', + date: 1270414800000, + user_score: null, + link: '/game/ds/game-watch-manhole', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'Grill-Off with Ultra Hand!', + platform: 'WII', + date: 1269982800000, + user_score: null, + link: '/game/wii/grill-off-with-ultra-hand!', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'Game & Watch Collection 2', + platform: 'DS', + date: 1269982800000, + user_score: null, + link: '/game/ds/game-watch-collection-2', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Compilation', 'Compilation']", + }, + { + meta_score: 73, + title: 'WarioWare D.I.Y. Showcase', + platform: 'WII', + date: 1269810000000, + user_score: 7.8, + link: '/game/wii/warioware-diy-showcase', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Party', 'Party', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Nintendo DSi Metronome', + platform: 'DS', + date: 1269810000000, + user_score: 7.4, + link: '/game/ds/nintendo-dsi-metronome', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: 'Nintendo DSi Instrument Tuner', + platform: 'DS', + date: 1269810000000, + user_score: null, + link: '/game/ds/nintendo-dsi-instrument-tuner', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: 82, + title: 'WarioWare D.I.Y.', + platform: 'DS', + date: 1269727200000, + user_score: 8.2, + link: '/game/ds/warioware-diy', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: "America's Test Kitchen: Let's Get Cooking", + platform: 'WII', + date: 1269727200000, + user_score: null, + link: '/game/wii/americas-test-kitchen-lets-get-cooking', + esrb_rating: '', + developers: '', + genres: "['Miscellaneous', 'General']", + }, + { + meta_score: 87, + title: "America's Test Kitchen: Let's Get Cooking", + platform: 'DS', + date: 1269727200000, + user_score: 6.3, + link: '/game/ds/americas-test-kitchen-lets-get-cooking', + esrb_rating: 'E', + developers: "['indieszero']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: 'Game & Watch: Judge', + platform: 'DS', + date: 1269208800000, + user_score: null, + link: '/game/ds/game-watch-judge', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'Game & Watch: Chef', + platform: 'DS', + date: 1269208800000, + user_score: null, + link: '/game/ds/game-watch-chef', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: "Game & Watch: Mario's Cement Factory", + platform: 'DS', + date: 1269208800000, + user_score: null, + link: '/game/ds/game-watch-marios-cement-factory', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: 87, + title: 'Pokemon HeartGold Version', + platform: 'DS', + date: 1268517600000, + user_score: 9.1, + link: '/game/ds/pokemon-heartgold-version', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Trainer']", + }, + { + meta_score: 87, + title: 'Pokemon SoulSilver Version', + platform: 'DS', + date: 1268517600000, + user_score: 9.2, + link: '/game/ds/pokemon-soulsilver-version', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Trainer']", + }, + { + meta_score: 76, + title: 'Endless Ocean: Blue World', + platform: 'WII', + date: 1266789600000, + user_score: 8.6, + link: '/game/wii/endless-ocean-blue-world', + esrb_rating: 'E10+', + developers: "['Arika']", + genres: "['Adventure', 'General', 'General', '3D', 'Third-Person']", + }, + { + meta_score: null, + title: 'Aura-Aura Climber', + platform: 'DS', + date: 1266789600000, + user_score: 6, + link: '/game/ds/aura-aura-climber', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'General', 'Arcade']", + }, + { + meta_score: 84, + title: 'Spotto!', + platform: 'DS', + date: 1266184800000, + user_score: 5.8, + link: '/game/ds/spotto!', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Action', 'Adventure', 'General', 'General']", + }, + { + meta_score: 73, + title: "Link 'n' Launch", + platform: 'DS', + date: 1265580000000, + user_score: null, + link: '/game/ds/link-n-launch', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: 'True Swing Golf Express', + platform: 'DS', + date: 1264975200000, + user_score: null, + link: '/game/ds/true-swing-golf-express', + esrb_rating: 'E', + developers: "['T&E Soft']", + genres: "['Sports', 'Traditional', 'Golf', 'Sim', 'Sim']", + }, + { + meta_score: 77, + title: 'Number Battle', + platform: 'DS', + date: 1264370400000, + user_score: 6.8, + link: '/game/ds/number-battle', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'Logic', 'General']", + }, + { + meta_score: 69, + title: 'Glory of Heracles', + platform: 'DS', + date: 1263765600000, + user_score: 7.4, + link: '/game/ds/glory-of-heracles', + esrb_rating: 'E10+', + developers: "['Paon Corporation']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Japanese-Style']", + }, + { + meta_score: 82, + title: 'Starship Defense', + platform: 'DS', + date: 1263765600000, + user_score: 7.5, + link: '/game/ds/starship-defense', + esrb_rating: 'E', + developers: "['Q-Games']", + genres: "['Strategy', 'Real-Time', 'Sci-Fi', 'Sci-Fi', 'Defense']", + }, + { + meta_score: null, + title: 'Touch Solitaire', + platform: 'DS', + date: 1263160800000, + user_score: null, + link: '/game/ds/touch-solitaire', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Board Games', 'Board Games']", + }, + { + meta_score: 67, + title: 'Phoenix Wright: Ace Attorney', + platform: 'WII', + date: 1263160800000, + user_score: 8.7, + link: '/game/wii/phoenix-wright-ace-attorney', + esrb_rating: 'T', + developers: "['Capcom']", + genres: "['Adventure', 'First-Person', 'Visual Novel', 'Modern', 'Modern']", + }, + { + meta_score: 77, + title: 'Trajectile', + platform: 'DS', + date: 1262556000000, + user_score: null, + link: '/game/ds/trajectile', + esrb_rating: 'E', + developers: "['Q-Games']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'Master of Illusion Express: Psychic Camera', + platform: 'DS', + date: 1261951200000, + user_score: null, + link: '/game/ds/master-of-illusion-express-psychic-camera', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: 'Pilotwings', + platform: 'WII', + date: 1261951200000, + user_score: null, + link: '/game/wii/pilotwings', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Flight', 'Civilian Plane']", + }, + { + meta_score: null, + title: 'Super Smash Bros.', + platform: 'WII', + date: 1261346400000, + user_score: 7.8, + link: '/game/wii/super-smash-bros', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Fighting', '3D']", + }, + { + meta_score: 56, + title: 'Eco Shooter: Plant 530', + platform: 'WII', + date: 1261346400000, + user_score: null, + link: '/game/wii/eco-shooter-plant-530', + esrb_rating: 'E10+', + developers: "['Intelligent Systems']", + genres: "['Action', 'Adventure', 'General', 'Shooter', 'First-Person', 'Fantasy', 'Arcade']", + }, + { + meta_score: null, + title: 'Master of Illusion Express: Matchmaker', + platform: 'DS', + date: 1260741600000, + user_score: null, + link: '/game/ds/master-of-illusion-express-matchmaker', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: 87, + title: 'The Legend of Zelda: Spirit Tracks', + platform: 'DS', + date: 1260136800000, + user_score: 7.9, + link: '/game/ds/the-legend-of-zelda-spirit-tracks', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy', 'Fantasy', 'Open-World']", + }, + { + meta_score: null, + title: 'Master of Illusion Express: Mind Probe', + platform: 'DS', + date: 1259532000000, + user_score: null, + link: '/game/ds/master-of-illusion-express-mind-probe', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: 'Electroplankton: Lumiloop', + platform: 'DS', + date: 1258927200000, + user_score: null, + link: '/game/ds/electroplankton-lumiloop', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music Maker', 'Music Maker', 'Music']", + }, + { + meta_score: null, + title: 'Electroplankton: Sun-Animalcule', + platform: 'DS', + date: 1258927200000, + user_score: null, + link: '/game/ds/electroplankton-sun-animalcule', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music Maker', 'Music Maker', 'Music']", + }, + { + meta_score: null, + title: 'Electroplankton: Varvoice', + platform: 'DS', + date: 1258927200000, + user_score: null, + link: '/game/ds/electroplankton-varvoice', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music Maker', 'Music Maker', 'Music']", + }, + { + meta_score: null, + title: 'Electroplankton: Marine-Crystals', + platform: 'DS', + date: 1258927200000, + user_score: null, + link: '/game/ds/electroplankton-marine-crystals', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music Maker', 'Music Maker', 'Music']", + }, + { + meta_score: null, + title: 'Electroplankton: Luminarrow', + platform: 'DS', + date: 1258927200000, + user_score: null, + link: '/game/ds/electroplankton-luminarrow', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music Maker', 'Music Maker', 'Music']", + }, + { + meta_score: null, + title: 'Super Mario Kart', + platform: 'WII', + date: 1258927200000, + user_score: 7.2, + link: '/game/wii/super-mario-kart', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Kart']", + }, + { + meta_score: 59, + title: 'Pokemon Rumble', + platform: 'WII', + date: 1258322400000, + user_score: 8.2, + link: '/game/wii/pokemon-rumble', + esrb_rating: 'E10+', + developers: "['Ambrella']", + genres: "['Action', \"Beat-'Em-Up\", \"Beat-'Em-Up\", '2D', '3D']", + }, + { + meta_score: 83, + title: 'Art Style: DIGIDRIVE', + platform: 'DS', + date: 1258322400000, + user_score: 6.8, + link: '/game/ds/art-style-digidrive', + esrb_rating: 'E', + developers: "['Q-Games']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'General']", + }, + { + meta_score: 87, + title: 'New Super Mario Bros. Wii', + platform: 'WII', + date: 1258236000000, + user_score: 8.4, + link: '/game/wii/new-super-mario-bros-wii', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: 'Electroplankton: Beatnes', + platform: 'DS', + date: 1257717600000, + user_score: null, + link: '/game/ds/electroplankton-beatnes', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music Maker', 'Music Maker', 'Music']", + }, + { + meta_score: null, + title: 'Electroplankton: Trapy', + platform: 'DS', + date: 1257717600000, + user_score: null, + link: '/game/ds/electroplankton-trapy', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music Maker', 'Music Maker', 'Music']", + }, + { + meta_score: null, + title: 'Electroplankton: Nanocarp', + platform: 'DS', + date: 1257717600000, + user_score: null, + link: '/game/ds/electroplankton-nanocarp', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music Maker', 'Music Maker', 'Music']", + }, + { + meta_score: null, + title: 'Electroplankton: Hanenbow', + platform: 'DS', + date: 1257717600000, + user_score: 7.5, + link: '/game/ds/electroplankton-hanenbow', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music Maker', 'Music Maker', 'Music']", + }, + { + meta_score: null, + title: 'Electroplankton: Rec-Rec', + platform: 'DS', + date: 1257717600000, + user_score: null, + link: '/game/ds/electroplankton-rec-rec', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music Maker', 'Music Maker', 'Music']", + }, + { + meta_score: 70, + title: 'Excitebike: World Rally', + platform: 'WII', + date: 1257717600000, + user_score: 7.5, + link: '/game/wii/excitebike-world-rally', + esrb_rating: 'E', + developers: "['Monster Games Inc.']", + genres: "['Driving', 'Racing', 'Arcade', 'Motorcycle', 'Other', 'Motocross', 'Motocross']", + }, + { + meta_score: 73, + title: 'Style Savvy', + platform: 'DS', + date: 1257112800000, + user_score: 7.5, + link: '/game/ds/style-savvy', + esrb_rating: 'E', + developers: "['syn Sophia']", + genres: "['Simulation', 'General', 'General', 'Virtual', 'Career']", + }, + { + meta_score: null, + title: 'Sparkle Snapshots', + platform: 'DS', + date: 1257112800000, + user_score: null, + link: '/game/ds/sparkle-snapshots', + esrb_rating: '', + developers: "['Nintendo', ' Atlus']", + genres: "['Miscellaneous', 'Edutainment', 'General']", + }, + { + meta_score: null, + title: "Doc Louis's Punch-Out!!", + platform: 'WII', + date: 1256594400000, + user_score: 8.7, + link: '/game/wii/doc-louiss-punch-out!!', + esrb_rating: 'E10+', + developers: "['Next Level Games']", + genres: "['Sports', 'Traditional', 'Individual', 'Boxing', 'Boxing', 'Combat', 'Boxing / Martial Arts']", + }, + { + meta_score: null, + title: 'PictureBook Games: The Royal Bluff', + platform: 'DS', + date: 1256508000000, + user_score: null, + link: '/game/ds/picturebook-games-the-royal-bluff', + esrb_rating: 'E', + developers: "['Nintendo', ' Grounding Inc.']", + genres: "['Miscellaneous', 'Board Games', 'Board Games', 'Board / Card Game']", + }, + { + meta_score: null, + title: 'Crash-Course Domo', + platform: 'DS', + date: 1255899600000, + user_score: null, + link: '/game/ds/crash-course-domo', + esrb_rating: 'E', + developers: "['Suzak']", + genres: "['Driving', 'Racing', 'Arcade', 'Other', 'Other']", + }, + { + meta_score: null, + title: 'Hard-Hat Domo', + platform: 'DS', + date: 1255899600000, + user_score: null, + link: '/game/ds/hard-hat-domo', + esrb_rating: 'E', + developers: "['Suzak']", + genres: "['Adventure', 'Puzzle', 'Action', 'General']", + }, + { + meta_score: null, + title: 'Pro-Putt Domo', + platform: 'DS', + date: 1255899600000, + user_score: null, + link: '/game/ds/pro-putt-domo', + esrb_rating: 'E', + developers: "['Suzak']", + genres: "['Sports', 'Traditional', 'Individual', 'Golf', 'Arcade', 'Arcade']", + }, + { + meta_score: null, + title: 'Rock-n-Roll Domo', + platform: 'DS', + date: 1255899600000, + user_score: null, + link: '/game/ds/rock-n-roll-domo', + esrb_rating: 'E', + developers: "['Suzak']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music', 'Music']", + }, + { + meta_score: null, + title: 'White-Water Domo', + platform: 'DS', + date: 1255899600000, + user_score: null, + link: '/game/ds/white-water-domo', + esrb_rating: 'E', + developers: "['Suzak']", + genres: "['Driving', 'Racing', 'Arcade', 'Snow / Water', 'Other', 'Snow / Water']", + }, + { + meta_score: 54, + title: 'Pokemon Mystery Dungeon: Explorers of Sky', + platform: 'DS', + date: 1255294800000, + user_score: 9, + link: '/game/ds/pokemon-mystery-dungeon-explorers-of-sky', + esrb_rating: 'E', + developers: "['ChunSoft']", + genres: "['Role-Playing', 'General', 'Console-style RPG', 'Console-style RPG', 'Roguelike']", + }, + { + meta_score: 74, + title: 'Pinball Pulse: The Ancients Beckon', + platform: 'DS', + date: 1255294800000, + user_score: null, + link: '/game/ds/pinball-pulse-the-ancients-beckon', + esrb_rating: 'E', + developers: "['Fuse Games Limited']", + genres: "['Action', 'Miscellaneous', 'Parlor', 'Pinball', 'Pinball']", + }, + { + meta_score: 80, + title: 'Wii Fit Plus', + platform: 'WII', + date: 1254603600000, + user_score: 7.6, + link: '/game/wii/wii-fit-plus', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Miscellaneous', 'Alternative', 'General', 'Exercise / Fitness', 'Other']", + }, + { + meta_score: null, + title: 'Art Academy: Second Semester', + platform: 'DS', + date: 1254085200000, + user_score: null, + link: '/game/ds/art-academy-second-semester', + esrb_rating: 'E', + developers: "['Headstrong Games']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: null, + title: 'Clubhouse Games Express: Strategy Pack', + platform: 'DS', + date: 1253480400000, + user_score: null, + link: '/game/ds/clubhouse-games-express-strategy-pack', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Board Games', 'Board Games', 'Board / Card Game']", + }, + { + meta_score: 79, + title: 'You, Me, and the Cubes', + platform: 'WII', + date: 1253480400000, + user_score: 7, + link: '/game/wii/you-me-and-the-cubes', + esrb_rating: 'E', + developers: "['fyto']", + genres: "['Miscellaneous', 'Puzzle', 'Action', 'Puzzle', 'Puzzle', 'Action']", + }, + { + meta_score: 90, + title: "Mario & Luigi: Bowser's Inside Story", + platform: 'DS', + date: 1252875600000, + user_score: 8.8, + link: '/game/ds/mario-luigi-bowsers-inside-story', + esrb_rating: 'E', + developers: "['Alphadream Corporation']", + genres: "['Role-Playing', 'Action RPG', 'Console-style RPG', 'Console-style RPG', 'Japanese-Style']", + }, + { + meta_score: null, + title: 'Art Academy: First Semester', + platform: 'DS', + date: 1252875600000, + user_score: 8, + link: '/game/ds/art-academy-first-semester', + esrb_rating: 'E', + developers: "['Headstrong Games']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: null, + title: 'Clubhouse Games Express: Family Favorites', + platform: 'DS', + date: 1252270800000, + user_score: null, + link: '/game/ds/clubhouse-games-express-family-favorites', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Board Games', 'Board Games', 'Board / Card Game']", + }, + { + meta_score: null, + title: 'Puzzle League Express', + platform: 'DS', + date: 1251666000000, + user_score: null, + link: '/game/ds/puzzle-league-express', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 84, + title: 'Professor Layton and the Diabolical Box', + platform: 'DS', + date: 1251061200000, + user_score: 8.5, + link: '/game/ds/professor-layton-and-the-diabolical-box', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 91, + title: 'Metroid Prime Trilogy', + platform: 'WII', + date: 1251061200000, + user_score: 9.2, + link: '/game/wii/metroid-prime-trilogy', + esrb_rating: 'T', + developers: "['Retro Studios']", + genres: "['Action', 'Miscellaneous', 'Shooter', 'Compilation', 'Compilation', 'First-Person', 'Sci-Fi']", + }, + { + meta_score: null, + title: 'Picture Book Games: Pop-Up Pursuit', + platform: 'WII', + date: 1250456400000, + user_score: null, + link: '/game/wii/picture-book-games-pop-up-pursuit', + esrb_rating: 'E', + developers: "['Grounding Inc.']", + genres: "['Miscellaneous', 'Board Games', 'Board Games', 'Board / Card Game']", + }, + { + meta_score: null, + title: 'Brain Age Express: Sudoku', + platform: 'DS', + date: 1250456400000, + user_score: null, + link: '/game/ds/brain-age-express-sudoku', + esrb_rating: 'E', + developers: '', + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Logic', 'General']", + }, + { + meta_score: 93, + title: 'Flipnote Studio', + platform: 'DS', + date: 1250024400000, + user_score: 7.7, + link: '/game/ds/flipnote-studio', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'Application']", + }, + { + meta_score: 70, + title: 'Fossil Fighters', + platform: 'DS', + date: 1249851600000, + user_score: 8.4, + link: '/game/ds/fossil-fighters', + esrb_rating: 'E', + developers: "['RED Entertainment']", + genres: "['Role-Playing', 'General', 'General', 'Trainer']", + }, + { + meta_score: 72, + title: "Rock N' Roll Climber", + platform: 'WII', + date: 1249851600000, + user_score: null, + link: '/game/wii/rock-n-roll-climber', + esrb_rating: 'E', + developers: "['Vitei']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'Brain Age Express: Arts & Letters', + platform: 'DS', + date: 1249851600000, + user_score: null, + link: '/game/ds/brain-age-express-arts-letters', + esrb_rating: 'E', + developers: '', + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: null, + title: 'Art Style: precipice', + platform: 'DS', + date: 1249246800000, + user_score: 7.3, + link: '/game/ds/art-style-precipice', + esrb_rating: 'E', + developers: "['Skip Ltd.']", + genres: "['Miscellaneous', 'Puzzle', 'Action', 'Puzzle', 'Puzzle', 'Action']", + }, + { + meta_score: 80, + title: 'Wii Sports Resort', + platform: 'WII', + date: 1248555600000, + user_score: 8.3, + link: '/game/wii/wii-sports-resort', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'General', 'General', 'Individual', 'Athletics']", + }, + { + meta_score: 65, + title: 'Art Style: ZENGAGE', + platform: 'DS', + date: 1248037200000, + user_score: null, + link: '/game/ds/art-style-zengage', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Puzzle', 'Matching', 'Matching']", + }, + { + meta_score: 77, + title: 'Art Style: BASE 10', + platform: 'DS', + date: 1246827600000, + user_score: null, + link: '/game/ds/art-style-base-10', + esrb_rating: 'E', + developers: "['Skip Ltd.']", + genres: "['Miscellaneous', 'Puzzle', 'Action', 'Puzzle', 'Puzzle', 'Action']", + }, + { + meta_score: 80, + title: 'Bit.Trip Core', + platform: 'WII', + date: 1246827600000, + user_score: 8.1, + link: '/game/wii/bittrip-core', + esrb_rating: 'E', + developers: "['Gaijin Games']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music', 'Music']", + }, + { + meta_score: 80, + title: 'Art Style: BOXLIFE', + platform: 'DS', + date: 1245618000000, + user_score: 6.8, + link: '/game/ds/art-style-boxlife', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: 'Mario Calculator', + platform: 'DS', + date: 1245013200000, + user_score: 6.3, + link: '/game/ds/mario-calculator', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'General', 'Edutainment']", + }, + { + meta_score: null, + title: 'Mario Clock', + platform: 'DS', + date: 1245013200000, + user_score: 6, + link: '/game/ds/mario-clock', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General', 'Application']", + }, + { + meta_score: 82, + title: 'Mario vs. Donkey Kong: Minis March Again!', + platform: 'DS', + date: 1244408400000, + user_score: 7.9, + link: '/game/ds/mario-vs-donkey-kong-minis-march-again!', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 75, + title: 'The Legendary Starfy', + platform: 'DS', + date: 1244322000000, + user_score: 8.4, + link: '/game/ds/the-legendary-starfy', + esrb_rating: 'E', + developers: "['TOSE']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 69, + title: 'Personal Trainer: Walking', + platform: 'DS', + date: 1243285200000, + user_score: 7.3, + link: '/game/ds/personal-trainer-walking', + esrb_rating: 'E', + developers: "['Nintendo', ' Creatures Inc.']", + genres: "['Miscellaneous', 'General', 'Exercise / Fitness']", + }, + { + meta_score: null, + title: 'Photo Clock', + platform: 'DS', + date: 1243198800000, + user_score: null, + link: '/game/ds/photo-clock', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'Application']", + }, + { + meta_score: 86, + title: 'Punch-Out!!', + platform: 'WII', + date: 1242594000000, + user_score: 8.6, + link: '/game/wii/punch-out!!', + esrb_rating: 'E10+', + developers: "['Next Level Games']", + genres: "['Sports', 'Traditional', 'Individual', 'Boxing', 'Boxing', 'Combat', 'Boxing / Martial Arts']", + }, + { + meta_score: 83, + title: 'Art Style: PiCTOBiTS', + platform: 'DS', + date: 1242594000000, + user_score: 7.5, + link: '/game/ds/art-style-pictobits', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Puzzle', 'Matching', 'Matching']", + }, + { + meta_score: null, + title: "The Legend of Zelda: Majora's Mask", + platform: 'WII', + date: 1242594000000, + user_score: 8.7, + link: '/game/wii/the-legend-of-zelda-majoras-mask', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: 78, + title: 'New Play Control! Donkey Kong Jungle Beat', + platform: 'WII', + date: 1241384400000, + user_score: 8.5, + link: '/game/wii/new-play-control!-donkey-kong-jungle-beat', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: 'Animal Crossing Calculator', + platform: 'DS', + date: 1241384400000, + user_score: null, + link: '/game/ds/animal-crossing-calculator', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Edutainment', 'Application']", + }, + { + meta_score: null, + title: 'Animal Crossing Clock', + platform: 'DS', + date: 1241384400000, + user_score: null, + link: '/game/ds/animal-crossing-clock', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Edutainment', 'Application']", + }, + { + meta_score: 51, + title: 'Paper Airplane Chase', + platform: 'DS', + date: 1240779600000, + user_score: 7.2, + link: '/game/ds/paper-airplane-chase', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: 'Clubhouse Games Express: Card Classics', + platform: 'DS', + date: 1240779600000, + user_score: null, + link: '/game/ds/clubhouse-games-express-card-classics', + esrb_rating: 'T', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Board Games', 'Board Games', 'Board / Card Game']", + }, + { + meta_score: 76, + title: 'Dr. Mario Express', + platform: 'DS', + date: 1240174800000, + user_score: 7.4, + link: '/game/ds/dr-mario-express', + esrb_rating: 'E', + developers: "['Arika', ' Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'Matching', 'General']", + }, + { + meta_score: 77, + title: 'Excitebots: Trick Racing', + platform: 'WII', + date: 1240174800000, + user_score: 8.1, + link: '/game/wii/excitebots-trick-racing', + esrb_rating: 'E', + developers: "['Monster Games Inc.']", + genres: "['Driving', 'Racing', 'General', 'Arcade', 'Arcade', 'Automobile']", + }, + { + meta_score: null, + title: 'Master of Illusion Express: Deep Psyche', + platform: 'DS', + date: 1240174800000, + user_score: null, + link: '/game/ds/master-of-illusion-express-deep-psyche', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: 'Master of Illusion Express: Shuffle Games', + platform: 'DS', + date: 1239570000000, + user_score: null, + link: '/game/ds/master-of-illusion-express-shuffle-games', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 83, + title: 'Rhythm Heaven', + platform: 'DS', + date: 1238878800000, + user_score: 8.4, + link: '/game/ds/rhythm-heaven', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music', 'Music']", + }, + { + meta_score: 70, + title: 'Art Style: AQUIA', + platform: 'DS', + date: 1238878800000, + user_score: 7.3, + link: '/game/ds/art-style-aquia', + esrb_rating: 'E', + developers: "['Skip Ltd.']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: 'Nintendo DSi Browser', + platform: 'DS', + date: 1238878800000, + user_score: null, + link: '/game/ds/nintendo-dsi-browser', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Web Browser', 'Application']", + }, + { + meta_score: null, + title: 'Master of Illusion Express: Funny Face', + platform: 'DS', + date: 1238878800000, + user_score: null, + link: '/game/ds/master-of-illusion-express-funny-face', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 71, + title: 'Bird & Beans', + platform: 'DS', + date: 1238878800000, + user_score: 7.8, + link: '/game/ds/bird-beans', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'General', 'Arcade']", + }, + { + meta_score: 69, + title: 'Brain Age Express: Math', + platform: 'DS', + date: 1238878800000, + user_score: null, + link: '/game/ds/brain-age-express-math', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: 53, + title: 'WarioWare: Snapped!', + platform: 'DS', + date: 1238878800000, + user_score: 4.1, + link: '/game/ds/warioware-snapped!', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'Party / Minigame', 'General']", + }, + { + meta_score: null, + title: 'Super Punch-Out!!', + platform: 'WII', + date: 1238360400000, + user_score: 8.9, + link: '/game/wii/super-punch-out!!', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Traditional', 'Boxing']", + }, + { + meta_score: 75, + title: 'Bonsai Barber', + platform: 'WII', + date: 1238360400000, + user_score: 7.4, + link: '/game/wii/bonsai-barber', + esrb_rating: 'E', + developers: "['Zoonami Ltd.']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 83, + title: 'Pokemon Platinum Version', + platform: 'DS', + date: 1237672800000, + user_score: 8.9, + link: '/game/ds/pokemon-platinum-version', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Trainer']", + }, + { + meta_score: 80, + title: 'Bit.Trip Beat', + platform: 'WII', + date: 1237154400000, + user_score: 8.3, + link: '/game/wii/bittrip-beat', + esrb_rating: 'E', + developers: "['Gaijin Games']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music', 'Music']", + }, + { + meta_score: 77, + title: 'New Play Control! Pikmin', + platform: 'WII', + date: 1236549600000, + user_score: 8.4, + link: '/game/wii/new-play-control!-pikmin', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Strategy', 'Real-Time', 'Fantasy', 'General', 'Fantasy']", + }, + { + meta_score: 65, + title: 'New Play Control! Mario Power Tennis', + platform: 'WII', + date: 1236549600000, + user_score: 7.6, + link: '/game/wii/new-play-control!-mario-power-tennis', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Traditional', 'Individual', 'Tennis', 'Tennis']", + }, + { + meta_score: 81, + title: 'Fire Emblem: Shadow Dragon', + platform: 'DS', + date: 1234735200000, + user_score: 7.1, + link: '/game/ds/fire-emblem-shadow-dragon', + esrb_rating: 'E10+', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: 56, + title: 'Lonpos', + platform: 'WII', + date: 1233525600000, + user_score: null, + link: '/game/wii/lonpos', + esrb_rating: 'E', + developers: "['Genki']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 63, + title: 'Personal Trainer: Math', + platform: 'DS', + date: 1231797600000, + user_score: null, + link: '/game/ds/personal-trainer-math', + esrb_rating: 'E', + developers: "['Jupiter Corporation']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: null, + title: "Kirby's Dream Land 3", + platform: 'WII', + date: 1231106400000, + user_score: 8, + link: '/game/wii/kirbys-dream-land-3', + esrb_rating: 'E', + developers: "['Hal']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 85, + title: "Maboshi's Arcade", + platform: 'WII', + date: 1230501600000, + user_score: 7.9, + link: '/game/wii/maboshis-arcade', + esrb_rating: 'E', + developers: "['Mindware']", + genres: "['Miscellaneous', 'Puzzle', 'Action', 'Puzzle', 'Puzzle', 'Action']", + }, + { + meta_score: null, + title: "StarTropics II: Zoda's Revenge", + platform: 'WII', + date: 1230501600000, + user_score: 8.6, + link: '/game/wii/startropics-ii-zodas-revenge', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Modern']", + }, + { + meta_score: null, + title: 'Game & Watch Collection', + platform: 'DS', + date: 1229292000000, + user_score: null, + link: '/game/ds/game-watch-collection', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Compilation', 'Compilation']", + }, + { + meta_score: 81, + title: 'Personal Trainer: Cooking', + platform: 'DS', + date: 1227477600000, + user_score: 8.1, + link: '/game/ds/personal-trainer-cooking', + esrb_rating: 'E', + developers: "['indieszero']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: 73, + title: 'Animal Crossing: City Folk', + platform: 'WII', + date: 1226786400000, + user_score: 7.9, + link: '/game/wii/animal-crossing-city-folk', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 68, + title: 'Pokemon Ranger: Shadows of Almia', + platform: 'DS', + date: 1226268000000, + user_score: 7.9, + link: '/game/ds/pokemon-ranger-shadows-of-almia', + esrb_rating: 'E', + developers: "['HAL Labs', ' Creatures Inc.']", + genres: "['Role-Playing', 'General', 'General']", + }, + { + meta_score: 70, + title: 'Art Style: ROTOHEX', + platform: 'WII', + date: 1225058400000, + user_score: null, + link: '/game/wii/art-style-rotohex', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 63, + title: 'Wii Music', + platform: 'WII', + date: 1224450000000, + user_score: 4.8, + link: '/game/wii/wii-music', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music', 'Music']", + }, + { + meta_score: 73, + title: 'Art Style: CUBELLO', + platform: 'WII', + date: 1223845200000, + user_score: 7.6, + link: '/game/wii/art-style-cubello', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: 'Mario Golf', + platform: 'WII', + date: 1223240400000, + user_score: null, + link: '/game/wii/mario-golf', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Traditional', 'Golf', 'Arcade']", + }, + { + meta_score: 82, + title: 'Art Style: ORBIENT', + platform: 'WII', + date: 1222635600000, + user_score: 8.2, + link: '/game/wii/art-style-orbient', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: 78, + title: 'Wario Land: Shake It!', + platform: 'WII', + date: 1222030800000, + user_score: 8.5, + link: '/game/wii/wario-land-shake-it!', + esrb_rating: 'E', + developers: "['Good-Feel']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 76, + title: 'Kirby Super Star Ultra', + platform: 'DS', + date: 1222030800000, + user_score: 8.8, + link: '/game/ds/kirby-super-star-ultra', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 65, + title: 'Mystery Case Files: MillionHeir', + platform: 'DS', + date: 1220821200000, + user_score: null, + link: '/game/ds/mystery-case-files-millionheir', + esrb_rating: 'E', + developers: "['Griptonite Games']", + genres: "['Miscellaneous', 'Adventure', 'Puzzle', 'General', 'Hidden Object', 'Puzzle']", + }, + { + meta_score: null, + title: 'Super Mario RPG: Legend of the Seven Stars', + platform: 'WII', + date: 1220216400000, + user_score: 8.9, + link: '/game/wii/super-mario-rpg-legend-of-the-seven-stars', + esrb_rating: 'E', + developers: "['SquareSoft']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: null, + title: 'Clu Clu Land', + platform: 'WII', + date: 1220216400000, + user_score: 8.4, + link: '/game/wii/clu-clu-land', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General']", + }, + { + meta_score: 69, + title: 'Mario Super Sluggers', + platform: 'WII', + date: 1219611600000, + user_score: 7.9, + link: '/game/wii/mario-super-sluggers', + esrb_rating: 'E', + developers: "['Namco Bandai Games']", + genres: "['Sports', 'Traditional', 'Team', 'Baseball', 'Arcade', 'Arcade']", + }, + { + meta_score: null, + title: 'Donkey Kong 3', + platform: 'WII', + date: 1215982800000, + user_score: null, + link: '/game/wii/donkey-kong-3', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General', 'Platformer', '2D']", + }, + { + meta_score: 70, + title: 'Magnetica Twist', + platform: 'WII', + date: 1214773200000, + user_score: 7.8, + link: '/game/wii/magnetica-twist', + esrb_rating: 'E', + developers: "['Mitchell']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'Matching', 'General']", + }, + { + meta_score: 47, + title: 'My Pokemon Ranch', + platform: 'WII', + date: 1212958800000, + user_score: 5.3, + link: '/game/wii/my-pokemon-ranch', + esrb_rating: 'E', + developers: "['Ambrella']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 72, + title: 'Dr. Mario Online RX', + platform: 'WII', + date: 1211749200000, + user_score: 8.2, + link: '/game/wii/dr-mario-online-rx', + esrb_rating: 'E', + developers: "['Arika', ' Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Puzzle', 'Matching', 'Matching']", + }, + { + meta_score: 80, + title: 'Wii Fit', + platform: 'WII', + date: 1211144400000, + user_score: 7.7, + link: '/game/wii/wii-fit', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Miscellaneous', 'General', 'Exercise / Fitness']", + }, + { + meta_score: 67, + title: 'CrossworDS', + platform: 'DS', + date: 1209934800000, + user_score: 7.3, + link: '/game/ds/crosswords', + esrb_rating: 'E', + developers: "['Nuevo Retro Games']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Logic', 'General']", + }, + { + meta_score: null, + title: 'Pokemon Puzzle League', + platform: 'WII', + date: 1209934800000, + user_score: 7.9, + link: '/game/wii/pokemon-puzzle-league', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Matching']", + }, + { + meta_score: 82, + title: 'Mario Kart Wii', + platform: 'WII', + date: 1209243600000, + user_score: 8.5, + link: '/game/wii/mario-kart-wii', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Arcade', 'Kart', 'Kart', 'Automobile']", + }, + { + meta_score: 59, + title: 'Pokemon Mystery Dungeon: Explorers of Darkness', + platform: 'DS', + date: 1208638800000, + user_score: 8.6, + link: '/game/ds/pokemon-mystery-dungeon-explorers-of-darkness', + esrb_rating: 'E', + developers: "['ChunSoft']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Roguelike']", + }, + { + meta_score: 60, + title: 'Pokemon Mystery Dungeon: Explorers of Time', + platform: 'DS', + date: 1208638800000, + user_score: 8.4, + link: '/game/ds/pokemon-mystery-dungeon-explorers-of-time', + esrb_rating: 'E', + developers: "['ChunSoft']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Roguelike']", + }, + { + meta_score: null, + title: "Yoshi's Cookie", + platform: 'WII', + date: 1207515600000, + user_score: null, + link: '/game/wii/yoshis-cookie', + esrb_rating: 'E', + developers: "['Bullet Proof Software']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: "Cruis'n USA", + platform: 'WII', + date: 1206910800000, + user_score: 8.6, + link: '/game/wii/cruisn-usa', + esrb_rating: 'E', + developers: "['Midway']", + genres: "['Driving', 'Racing', 'Arcade']", + }, + { + meta_score: 93, + title: 'Super Smash Bros. Brawl', + platform: 'WII', + date: 1205013600000, + user_score: 8.8, + link: '/game/wii/super-smash-bros-brawl', + esrb_rating: 'T', + developers: "['Game Arts']", + genres: "['Action', 'Fighting', 'Fighting', '3D', '2D', '3D']", + }, + { + meta_score: null, + title: 'Kirby 64: The Crystal Shards', + platform: 'WII', + date: 1203890400000, + user_score: 8.6, + link: '/game/wii/kirby-64-the-crystal-shards', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: 85, + title: 'Professor Layton and the Curious Village', + platform: 'DS', + date: 1202594400000, + user_score: 8.4, + link: '/game/ds/professor-layton-and-the-curious-village', + esrb_rating: 'E', + developers: "['Level 5']", + genres: "['Miscellaneous', 'Adventure', 'Puzzle', 'Edutainment', 'General', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: '1080: TenEighty Snowboarding', + platform: 'WII', + date: 1201471200000, + user_score: 8.6, + link: '/game/wii/1080-teneighty-snowboarding', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Alternative', 'Snowboarding']", + }, + { + meta_score: 70, + title: 'Mario & Sonic at the Olympic Games', + platform: 'DS', + date: 1200952800000, + user_score: 7, + link: '/game/ds/mario-sonic-at-the-olympic-games', + esrb_rating: 'E', + developers: "['Sega', ' Nintendo', ' Sega Sports R&D']", + genres: "['Sports', 'Olympic Sports', 'Olympic Sports', 'Individual', 'Athletics']", + }, + { + meta_score: 72, + title: 'Endless Ocean', + platform: 'WII', + date: 1200866400000, + user_score: 8.2, + link: '/game/wii/endless-ocean', + esrb_rating: 'E', + developers: "['Arika']", + genres: "['Adventure', 'General', 'General', '3D', 'Third-Person']", + }, + { + meta_score: null, + title: 'Adventures of Lolo 2', + platform: 'WII', + date: 1200866400000, + user_score: null, + link: '/game/wii/adventures-of-lolo-2', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Action']", + }, + { + meta_score: 86, + title: 'Advance Wars: Days of Ruin', + platform: 'DS', + date: 1200866400000, + user_score: 8.5, + link: '/game/ds/advance-wars-days-of-ruin', + esrb_rating: 'E10+', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Modern', 'Modern', 'Tactics']", + }, + { + meta_score: null, + title: 'StarTropics', + platform: 'WII', + date: 1199656800000, + user_score: 8.8, + link: '/game/wii/startropics', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Modern']", + }, + { + meta_score: null, + title: "Donkey Kong Country 3: Dixie Kong's Double Trouble", + platform: 'WII', + date: 1198447200000, + user_score: 8.4, + link: '/game/wii/donkey-kong-country-3-dixie-kongs-double-trouble', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Pokemon Snap', + platform: 'WII', + date: 1197237600000, + user_score: 7.8, + link: '/game/wii/pokemon-snap', + esrb_rating: 'E', + developers: "['Hal']", + genres: "['Action', 'General']", + }, + { + meta_score: 69, + title: 'Master of Illusion', + platform: 'DS', + date: 1196028000000, + user_score: null, + link: '/game/ds/master-of-illusion', + esrb_rating: 'E', + developers: "['Eighting', ' Tenyo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'Application', 'General']", + }, + { + meta_score: null, + title: 'Vegas Stakes', + platform: 'WII', + date: 1196028000000, + user_score: null, + link: '/game/wii/vegas-stakes', + esrb_rating: 'E', + developers: "['Hal']", + genres: "['Miscellaneous', 'Parlor', 'Gambling']", + }, + { + meta_score: 72, + title: 'Mario Party DS', + platform: 'DS', + date: 1195423200000, + user_score: 7.8, + link: '/game/ds/mario-party-ds', + esrb_rating: 'E', + developers: "['Hudson Soft']", + genres: "['Miscellaneous', 'Party', 'Party', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Wrecking Crew', + platform: 'WII', + date: 1195423200000, + user_score: null, + link: '/game/wii/wrecking-crew', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 68, + title: "Link's Crossbow Training", + platform: 'WII', + date: 1195423200000, + user_score: 7.1, + link: '/game/wii/links-crossbow-training', + esrb_rating: 'T', + developers: "['Nintendo']", + genres: "['Action', 'Shooter', 'Shooter', 'Light Gun', 'Light Gun']", + }, + { + meta_score: 97, + title: 'Super Mario Galaxy', + platform: 'WII', + date: 1194818400000, + user_score: 9.1, + link: '/game/wii/super-mario-galaxy', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '3D', '3D']", + }, + { + meta_score: null, + title: 'Volleyball', + platform: 'WII', + date: 1194818400000, + user_score: null, + link: '/game/wii/volleyball', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Traditional', 'Volleyball']", + }, + { + meta_score: 67, + title: 'Mario & Sonic at the Olympic Games', + platform: 'WII', + date: 1194300000000, + user_score: 7.6, + link: '/game/wii/mario-sonic-at-the-olympic-games', + esrb_rating: 'E', + developers: "['Sega', ' Nintendo', ' Sega Sports R&D']", + genres: "['Sports', 'Olympic Sports', 'Olympic Sports', 'Individual', 'Athletics']", + }, + { + meta_score: 78, + title: 'Fire Emblem: Radiant Dawn', + platform: 'WII', + date: 1194213600000, + user_score: 8.9, + link: '/game/wii/fire-emblem-radiant-dawn', + esrb_rating: 'E10+', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Super Mario Bros. 3', + platform: 'WII', + date: 1194213600000, + user_score: 9, + link: '/game/wii/super-mario-bros-3', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 75, + title: 'Battalion Wars 2', + platform: 'WII', + date: 1193608800000, + user_score: 8.2, + link: '/game/wii/battalion-wars-2', + esrb_rating: 'T', + developers: "['Kuju Entertainment']", + genres: "['Strategy', 'Real-Time', 'Military', 'Military', 'Tactics']", + }, + { + meta_score: 59, + title: 'Flash Focus: Vision Training in Minutes a Day', + platform: 'DS', + date: 1192395600000, + user_score: 3.8, + link: '/game/ds/flash-focus-vision-training-in-minutes-a-day', + esrb_rating: 'E', + developers: "['Nintendo', ' Namco Bandai Games']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: 46, + title: 'Donkey Kong: Barrel Blast', + platform: 'WII', + date: 1191790800000, + user_score: 6.6, + link: '/game/wii/donkey-kong-barrel-blast', + esrb_rating: 'E', + developers: "['Paon Corporation']", + genres: "['Driving', 'Racing', 'Arcade', 'Kart', 'Other', 'Kart']", + }, + { + meta_score: 90, + title: 'The Legend of Zelda: Phantom Hourglass', + platform: 'DS', + date: 1191186000000, + user_score: 7.9, + link: '/game/ds/the-legend-of-zelda-phantom-hourglass', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy', 'Fantasy', 'Open-World']", + }, + { + meta_score: null, + title: 'Super Mario Bros.: The Lost Levels', + platform: 'WII', + date: 1191186000000, + user_score: 5.8, + link: '/game/wii/super-mario-bros-the-lost-levels', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Sin and Punishment', + platform: 'WII', + date: 1191186000000, + user_score: 8.6, + link: '/game/wii/sin-and-punishment', + esrb_rating: 'T', + developers: "['Treasure']", + genres: "['Action', 'General']", + }, + { + meta_score: 78, + title: 'Chibi-Robo! Park Patrol', + platform: 'DS', + date: 1190581200000, + user_score: 7.7, + link: '/game/ds/chibi-robo!-park-patrol', + esrb_rating: 'E', + developers: "['Skip Ltd.']", + genres: "['Action Adventure', 'Fantasy', 'General', 'Fantasy']", + }, + { + meta_score: null, + title: "Kirby's Avalanche", + platform: 'WII', + date: 1190581200000, + user_score: 8.2, + link: '/game/wii/kirbys-avalanche', + esrb_rating: 'E', + developers: "['Hal']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: "Yoshi's Story", + platform: 'WII', + date: 1189976400000, + user_score: null, + link: '/game/wii/yoshis-story', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 77, + title: 'DK: Jungle Climber', + platform: 'DS', + date: 1189371600000, + user_score: 6.7, + link: '/game/ds/dk-jungle-climber', + esrb_rating: 'E', + developers: "['Paon Corporation']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'NES Play Action Football', + platform: 'WII', + date: 1189371600000, + user_score: null, + link: '/game/wii/nes-play-action-football', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Traditional', 'Football', 'Sim']", + }, + { + meta_score: null, + title: 'Donkey Kong Jr. Math', + platform: 'WII', + date: 1188766800000, + user_score: 5, + link: '/game/wii/donkey-kong-jr-math', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Edutainment']", + }, + { + meta_score: 90, + title: 'Metroid Prime 3: Corruption', + platform: 'WII', + date: 1188162000000, + user_score: 8.8, + link: '/game/wii/metroid-prime-3-corruption', + esrb_rating: 'T', + developers: "['Retro Studios']", + genres: "['Action', 'Shooter', 'Shooter', 'First-Person', 'Sci-Fi', 'Sci-Fi', 'Arcade']", + }, + { + meta_score: 77, + title: 'Brain Age 2: More Training in Minutes a Day', + platform: 'DS', + date: 1187557200000, + user_score: 7.1, + link: '/game/ds/brain-age-2-more-training-in-minutes-a-day', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: null, + title: 'Super Metroid', + platform: 'WII', + date: 1187557200000, + user_score: 9.3, + link: '/game/wii/super-metroid', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Shining in the Darkness', + platform: 'WII', + date: 1186952400000, + user_score: null, + link: '/game/wii/shining-in-the-darkness', + esrb_rating: 'E', + developers: "['Climax Entertainment']", + genres: "['Role-Playing', 'First-Person']", + }, + { + meta_score: null, + title: 'Metroid', + platform: 'WII', + date: 1186952400000, + user_score: 7.4, + link: '/game/wii/metroid', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Wave Race 64', + platform: 'WII', + date: 1186347600000, + user_score: 8.3, + link: '/game/wii/wave-race-64', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Snow / Water']", + }, + { + meta_score: 79, + title: 'Mario Strikers Charged', + platform: 'WII', + date: 1185742800000, + user_score: 8.2, + link: '/game/wii/mario-strikers-charged', + esrb_rating: 'E10+', + developers: "['Next Level Games']", + genres: "['Sports', 'Traditional', 'Team', 'Soccer', 'Arcade', 'Arcade']", + }, + { + meta_score: 83, + title: 'Picross DS', + platform: 'DS', + date: 1185742800000, + user_score: 7.9, + link: '/game/ds/picross-ds', + esrb_rating: 'E', + developers: "['Jupiter Corporation']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Puzzle', 'Logic', 'Logic']", + }, + { + meta_score: null, + title: "Kirby's Dream Course", + platform: 'WII', + date: 1185138000000, + user_score: 8.9, + link: '/game/wii/kirbys-dream-course', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Traditional', 'Golf', 'Arcade']", + }, + { + meta_score: null, + title: 'Paper Mario', + platform: 'WII', + date: 1184533200000, + user_score: 8.7, + link: '/game/wii/paper-mario', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: null, + title: 'Balloon Fight', + platform: 'WII', + date: 1184533200000, + user_score: 6.8, + link: '/game/wii/balloon-fight', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'General']", + }, + { + meta_score: null, + title: 'Yoshi', + platform: 'WII', + date: 1183928400000, + user_score: 8, + link: '/game/wii/yoshi', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: 'Mach Rider', + platform: 'WII', + date: 1183928400000, + user_score: null, + link: '/game/wii/mach-rider', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Motorcycle', 'Street']", + }, + { + meta_score: null, + title: 'Super Mario Bros. 2', + platform: 'WII', + date: 1183323600000, + user_score: 7.9, + link: '/game/wii/super-mario-bros-2', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 53, + title: 'Pokemon Battle Revolution', + platform: 'WII', + date: 1182718800000, + user_score: 6.6, + link: '/game/wii/pokemon-battle-revolution', + esrb_rating: 'E', + developers: "['Genius Sonority Inc.']", + genres: "['Strategy', 'Turn-Based', 'Fantasy', 'General', 'Fantasy']", + }, + { + meta_score: null, + title: 'F-Zero X', + platform: 'WII', + date: 1182718800000, + user_score: 7.8, + link: '/game/wii/f-zero-x', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Futuristic']", + }, + { + meta_score: null, + title: 'World Sports Competition', + platform: 'WII', + date: 1182114000000, + user_score: null, + link: '/game/wii/world-sports-competition', + esrb_rating: 'E', + developers: "['Hudson Soft']", + genres: "['Sports', 'General']", + }, + { + meta_score: null, + title: 'NES Open Tournament Golf', + platform: 'WII', + date: 1182114000000, + user_score: null, + link: '/game/wii/nes-open-tournament-golf', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Traditional', 'Golf', 'Arcade']", + }, + { + meta_score: 68, + title: 'Big Brain Academy: Wii Degree', + platform: 'WII', + date: 1181509200000, + user_score: 7.1, + link: '/game/wii/big-brain-academy-wii-degree', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: null, + title: 'Nintendo DS Web Browser', + platform: 'DS', + date: 1180904400000, + user_score: 6.3, + link: '/game/ds/nintendo-ds-web-browser', + esrb_rating: '', + developers: "['Opera']", + genres: "['Miscellaneous', 'Web Browser', 'Application']", + }, + { + meta_score: null, + title: 'Zelda II: The Adventure of Link', + platform: 'WII', + date: 1180904400000, + user_score: 7.1, + link: '/game/wii/zelda-ii-the-adventure-of-link', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 86, + title: 'Planet Puzzle League', + platform: 'DS', + date: 1180904400000, + user_score: 7.9, + link: '/game/ds/planet-puzzle-league', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: 'ToeJam & Earl in Panic on Funkotron', + platform: 'WII', + date: 1180904400000, + user_score: 6.8, + link: '/game/wii/toejam-earl-in-panic-on-funkotron', + esrb_rating: 'E', + developers: "['ToeJam & Earl Productions']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 62, + title: 'Mario Party 8', + platform: 'WII', + date: 1180386000000, + user_score: 6.6, + link: '/game/wii/mario-party-8', + esrb_rating: 'E', + developers: "['Hudson']", + genres: "['Miscellaneous', 'Party', 'Party', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Kid Chameleon', + platform: 'WII', + date: 1180299600000, + user_score: null, + link: '/game/wii/kid-chameleon', + esrb_rating: 'E', + developers: "['Sega']", + genres: "['Action', 'General']", + }, + { + meta_score: null, + title: 'Streets of Rage 2', + platform: 'WII', + date: 1179694800000, + user_score: 8.1, + link: '/game/wii/streets-of-rage-2', + esrb_rating: 'E', + developers: "['Sega']", + genres: "['Action', \"Beat-'Em-Up\"]", + }, + { + meta_score: null, + title: 'Blazing Lazers', + platform: 'WII', + date: 1179694800000, + user_score: 8.5, + link: '/game/wii/blazing-lazers', + esrb_rating: 'E', + developers: "['Hudson']", + genres: "['Action', 'Shooter', 'Scrolling']", + }, + { + meta_score: null, + title: "Donkey Kong Country 2: Diddy's Kong Quest", + platform: 'WII', + date: 1179694800000, + user_score: 8.9, + link: '/game/wii/donkey-kong-country-2-diddys-kong-quest', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Ninja Spirit', + platform: 'WII', + date: 1179090000000, + user_score: null, + link: '/game/wii/ninja-spirit', + esrb_rating: 'E10+', + developers: "['Irem']", + genres: "['Action', 'General']", + }, + { + meta_score: null, + title: 'Mighty Bomb Jack', + platform: 'WII', + date: 1178485200000, + user_score: null, + link: '/game/wii/mighty-bomb-jack', + esrb_rating: 'E', + developers: "['Tecmo']", + genres: "['Action', 'General']", + }, + { + meta_score: null, + title: 'Final Fight', + platform: 'WII', + date: 1178485200000, + user_score: 8.5, + link: '/game/wii/final-fight', + esrb_rating: 'E', + developers: "['Capcom']", + genres: "['Action', \"Beat-'Em-Up\"]", + }, + { + meta_score: null, + title: 'Ordyne', + platform: 'TG16)', + date: 1178485200000, + user_score: null, + link: '/game/wii/ordyne-tg16', + esrb_rating: 'E', + developers: "['Namco']", + genres: "['Action', 'Shooter', 'Scrolling']", + }, + { + meta_score: null, + title: 'Shockman', + platform: 'WII', + date: 1177880400000, + user_score: null, + link: '/game/wii/shockman', + esrb_rating: 'E', + developers: "['Winds']", + genres: "['Action', 'General', 'Platformer', '2D']", + }, + { + meta_score: 85, + title: 'Pokemon Diamond Version', + platform: 'DS', + date: 1177189200000, + user_score: 8.2, + link: '/game/ds/pokemon-diamond-version', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Trainer']", + }, + { + meta_score: 85, + title: 'Pokemon Pearl Version', + platform: 'DS', + date: 1177189200000, + user_score: 8.2, + link: '/game/ds/pokemon-pearl-version', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Trainer']", + }, + { + meta_score: null, + title: 'Punch-Out!! Featuring Mr. Dream', + platform: 'WII', + date: 1176670800000, + user_score: 8.6, + link: '/game/wii/punch-out!!-featuring-mr-dream', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Traditional', 'Boxing']", + }, + { + meta_score: null, + title: 'Alex Kidd in the Enchanted Castle', + platform: 'WII', + date: 1176238800000, + user_score: null, + link: '/game/wii/alex-kidd-in-the-enchanted-castle', + esrb_rating: 'E', + developers: "['Sega']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 85, + title: 'Super Paper Mario', + platform: 'WII', + date: 1176066000000, + user_score: 8, + link: '/game/wii/super-paper-mario', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Action', 'Role-Playing', 'Platformer', 'Platformer', 'Action RPG', '3D', '3D']", + }, + { + meta_score: null, + title: 'Star Fox 64', + platform: 'WII', + date: 1175461200000, + user_score: 7.8, + link: '/game/wii/star-fox-64', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Shooter', 'Rail']", + }, + { + meta_score: null, + title: 'Teenage Mutant Ninja Turtles', + platform: 'WII', + date: 1175461200000, + user_score: null, + link: '/game/wii/teenage-mutant-ninja-turtles', + esrb_rating: 'E10+', + developers: "['Magic Pockets']", + genres: "['Action', \"Beat-'Em-Up\", \"Beat-'Em-Up\", '2D']", + }, + { + meta_score: null, + title: 'Romance of the Three Kingdoms IV: Wall of Fire', + platform: 'WII', + date: 1174856400000, + user_score: null, + link: '/game/wii/romance-of-the-three-kingdoms-iv-wall-of-fire', + esrb_rating: 'E', + developers: "['Koei']", + genres: "['Strategy', 'Turn-Based', 'Historic']", + }, + { + meta_score: 74, + title: 'Custom Robo Arena', + platform: 'DS', + date: 1174255200000, + user_score: 8.3, + link: '/game/ds/custom-robo-arena', + esrb_rating: 'E10+', + developers: "['Noise Inc.']", + genres: "['Action', 'Fighting', 'Fighting', '3D', '3D']", + }, + { + meta_score: null, + title: 'Excitebike', + platform: 'WII', + date: 1174255200000, + user_score: 7.3, + link: '/game/wii/excitebike', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Driving', 'General', 'Racing', 'Motorcycle', 'Motocross']", + }, + { + meta_score: 60, + title: 'Wario: Master of Disguise', + platform: 'DS', + date: 1173045600000, + user_score: 7.3, + link: '/game/ds/wario-master-of-disguise', + esrb_rating: 'E10+', + developers: "['Suzak']", + genres: "['Action', 'General', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: "Super Ghouls 'n Ghosts", + platform: 'WII', + date: 1173045600000, + user_score: 8, + link: '/game/wii/super-ghouls-n-ghosts', + esrb_rating: 'E', + developers: "['Capcom']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'The Legend of Zelda: Ocarina of Time', + platform: 'WII', + date: 1172440800000, + user_score: 8.5, + link: '/game/wii/the-legend-of-zelda-ocarina-of-time', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: null, + title: 'Chew-Man-Fu', + platform: 'WII', + date: 1172440800000, + user_score: null, + link: '/game/wii/chew-man-fu', + esrb_rating: 'E', + developers: "['Hudson']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: 'Donkey Kong Country', + platform: 'WII', + date: 1171836000000, + user_score: 8.5, + link: '/game/wii/donkey-kong-country', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Everybody Votes', + platform: 'WII', + date: 1171404000000, + user_score: null, + link: '/game/wii/everybody-votes', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: 58, + title: 'Wii Play', + platform: 'WII', + date: 1171231200000, + user_score: 6.6, + link: '/game/wii/wii-play', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Party', 'Party', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Ice Climber', + platform: 'WII', + date: 1171231200000, + user_score: 6.3, + link: '/game/wii/ice-climber', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Kid Icarus', + platform: 'WII', + date: 1171231200000, + user_score: 7.9, + link: '/game/wii/kid-icarus', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: "Kirby's Adventure", + platform: 'WII', + date: 1171231200000, + user_score: 8.5, + link: '/game/wii/kirbys-adventure', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 63, + title: 'Diddy Kong Racing DS', + platform: 'DS', + date: 1170626400000, + user_score: 7, + link: '/game/ds/diddy-kong-racing-ds', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Driving', 'Racing', 'Arcade', 'Kart', 'Other', 'Kart']", + }, + { + meta_score: null, + title: 'Super Mario World', + platform: 'WII', + date: 1170626400000, + user_score: 8.9, + link: '/game/wii/super-mario-world', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 92, + title: 'Final Fantasy VI Advance', + platform: 'GBA', + date: 1170626400000, + user_score: 8.7, + link: '/game/game-boy-advance/final-fantasy-vi-advance', + esrb_rating: 'E10+', + developers: "['TOSE']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: null, + title: 'Mario Kart 64', + platform: 'WII', + date: 1170021600000, + user_score: 7.3, + link: '/game/wii/mario-kart-64', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Kart']", + }, + { + meta_score: 78, + title: 'Hotel Dusk: Room 215', + platform: 'DS', + date: 1169416800000, + user_score: 8.6, + link: '/game/ds/hotel-dusk-room-215', + esrb_rating: 'T', + developers: "['Cing']", + genres: "['Adventure', 'General', 'General']", + }, + { + meta_score: null, + title: 'The Legend of Zelda: A Link to the Past', + platform: 'WII', + date: 1169416800000, + user_score: 8.8, + link: '/game/wii/the-legend-of-zelda-a-link-to-the-past', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 83, + title: 'WarioWare: Smooth Moves', + platform: 'WII', + date: 1168812000000, + user_score: 7.6, + link: '/game/wii/warioware-smooth-moves', + esrb_rating: 'E10+', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Party', 'Party', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Urban Champion', + platform: 'WII', + date: 1167602400000, + user_score: null, + link: '/game/wii/urban-champion', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Fighting', '2D']", + }, + { + meta_score: null, + title: 'Baseball', + platform: 'WII', + date: 1167602400000, + user_score: null, + link: '/game/wii/baseball', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Traditional', 'Baseball', 'Arcade']", + }, + { + meta_score: null, + title: 'Super Mario Bros.', + platform: 'WII', + date: 1166997600000, + user_score: 8.4, + link: '/game/wii/super-mario-bros', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Tennis', + platform: 'WII', + date: 1166392800000, + user_score: null, + link: '/game/wii/tennis', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Traditional', 'Tennis']", + }, + { + meta_score: null, + title: 'Gunstar Heroes', + platform: 'WII', + date: 1165788000000, + user_score: 8.8, + link: '/game/wii/gunstar-heroes', + esrb_rating: 'E10+', + developers: "['Treasure']", + genres: "['Action', 'Shooter', 'Scrolling']", + }, + { + meta_score: null, + title: 'Ice Hockey', + platform: 'WII', + date: 1165788000000, + user_score: null, + link: '/game/wii/ice-hockey', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Traditional', 'Ice Hockey', 'Arcade']", + }, + { + meta_score: 96, + title: 'The Legend of Zelda: Twilight Princess', + platform: 'GC', + date: 1165788000000, + user_score: 9, + link: '/game/gamecube/the-legend-of-zelda-twilight-princess', + esrb_rating: 'T', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: null, + title: 'Internet Channel', + platform: 'WII', + date: 1165528800000, + user_score: null, + link: '/game/wii/internet-channel', + esrb_rating: '', + developers: "['Opera']", + genres: "['Miscellaneous', 'Web Browser', 'Application']", + }, + { + meta_score: 71, + title: 'Kirby: Squeak Squad', + platform: 'DS', + date: 1165183200000, + user_score: 7.8, + link: '/game/ds/kirby-squeak-squad', + esrb_rating: 'E', + developers: "['Flagship', ' HAL Labs']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: null, + title: 'Donkey Kong Jr.', + platform: 'WII', + date: 1165183200000, + user_score: null, + link: '/game/wii/donkey-kong-jr', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 95, + title: 'The Legend of Zelda: Twilight Princess', + platform: 'WII', + date: 1163887200000, + user_score: 9, + link: '/game/wii/the-legend-of-zelda-twilight-princess', + esrb_rating: 'T', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy', 'General', 'Fantasy', 'Open-World']", + }, + { + meta_score: 72, + title: 'Excite Truck', + platform: 'WII', + date: 1163887200000, + user_score: 8.3, + link: '/game/wii/excite-truck', + esrb_rating: 'E', + developers: "['Monster Games Inc.']", + genres: "['Driving', 'Racing', 'Arcade', 'Arcade', 'Automobile']", + }, + { + meta_score: 76, + title: 'Wii Sports', + platform: 'WII', + date: 1163887200000, + user_score: 8.1, + link: '/game/wii/wii-sports', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'General', 'General', 'Individual', 'Athletics']", + }, + { + meta_score: null, + title: 'Wii Channels', + platform: 'WII', + date: 1163887200000, + user_score: 7.8, + link: '/game/wii/wii-channels', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Web Browser', 'Application']", + }, + { + meta_score: null, + title: 'F-Zero', + platform: 'WII', + date: 1163887200000, + user_score: 8.8, + link: '/game/wii/f-zero', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Futuristic']", + }, + { + meta_score: null, + title: 'Super Mario 64', + platform: 'WII', + date: 1163887200000, + user_score: 8, + link: '/game/wii/super-mario-64', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: null, + title: 'SimCity', + platform: 'WII', + date: 1163887200000, + user_score: null, + link: '/game/wii/simcity', + esrb_rating: 'E', + developers: "['Maxis']", + genres: "['Strategy', 'City Building', 'Modern']", + }, + { + meta_score: null, + title: 'The Legend of Zelda', + platform: 'WII', + date: 1163887200000, + user_score: 8.2, + link: '/game/wii/the-legend-of-zelda', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: null, + title: 'Donkey Kong', + platform: 'WII', + date: 1163887200000, + user_score: 7.1, + link: '/game/wii/donkey-kong', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Mario Bros.', + platform: 'WII', + date: 1163887200000, + user_score: 6.6, + link: '/game/wii/mario-bros', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: null, + title: 'Pinball', + platform: 'WII', + date: 1163887200000, + user_score: null, + link: '/game/wii/pinball', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Parlor', 'Pinball']", + }, + { + meta_score: null, + title: 'Soccer', + platform: 'WII', + date: 1163887200000, + user_score: null, + link: '/game/wii/soccer', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Traditional', 'Soccer', 'Sim']", + }, + { + meta_score: null, + title: "Wario's Woods", + platform: 'WII', + date: 1163887200000, + user_score: 7.6, + link: '/game/wii/warios-woods', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General']", + }, + { + meta_score: null, + title: 'Nintendo Wii', + platform: 'WII', + date: 1163887200000, + user_score: 8.1, + link: '/game/wii/nintendo-wii', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Hardware', 'Console']", + }, + { + meta_score: 81, + title: "Yoshi's Island DS", + platform: 'DS', + date: 1163368800000, + user_score: 8.1, + link: '/game/ds/yoshis-island-ds', + esrb_rating: 'E', + developers: "['Artoon']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 87, + title: 'Elite Beat Agents', + platform: 'DS', + date: 1162764000000, + user_score: 8.5, + link: '/game/ds/elite-beat-agents', + esrb_rating: 'E10+', + developers: "['iNiS']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music', 'Music']", + }, + { + meta_score: 83, + title: 'Final Fantasy V Advance', + platform: 'GBA', + date: 1162764000000, + user_score: 8.2, + link: '/game/game-boy-advance/final-fantasy-v-advance', + esrb_rating: 'E', + developers: "['TOSE']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 65, + title: 'Children of Mana', + platform: 'DS', + date: 1162332000000, + user_score: 6.4, + link: '/game/ds/children-of-mana', + esrb_rating: 'E10+', + developers: "['Nex Entertainment']", + genres: "['Role-Playing', 'Action RPG', 'Action RPG']", + }, + { + meta_score: 69, + title: 'Pokemon Ranger', + platform: 'DS', + date: 1162159200000, + user_score: 7.2, + link: '/game/ds/pokemon-ranger', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Role-Playing', 'Action RPG', 'Action RPG']", + }, + { + meta_score: 69, + title: 'Magical Starsign', + platform: 'DS', + date: 1161550800000, + user_score: 7.8, + link: '/game/ds/magical-starsign', + esrb_rating: 'E', + developers: "['Brownie Brown']", + genres: "['Role-Playing', 'General', 'Console-style RPG', 'Console-style RPG', 'Japanese-Style']", + }, + { + meta_score: 83, + title: 'Nintendogs: Dalmatian & Friends', + platform: 'DS', + date: 1160946000000, + user_score: 7.4, + link: '/game/ds/nintendogs-dalmatian-friends', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual Life', 'Virtual', 'Pet']", + }, + { + meta_score: 83, + title: 'Clubhouse Games', + platform: 'DS', + date: 1160341200000, + user_score: 7.8, + link: '/game/ds/clubhouse-games', + esrb_rating: 'E', + developers: "['Agenda']", + genres: "['Miscellaneous', 'Board Games', 'Board Games', 'Board / Card Game', 'Party / Minigame']", + }, + { + meta_score: 76, + title: 'Mario vs. Donkey Kong 2: March of the Minis', + platform: 'DS', + date: 1159131600000, + user_score: 7.8, + link: '/game/ds/mario-vs-donkey-kong-2-march-of-the-minis', + esrb_rating: 'E', + developers: "['Nintendo', ' Nintendo Software Technology']", + genres: "['Puzzle', 'Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 75, + title: 'Baten Kaitos Origins', + platform: 'GC', + date: 1159131600000, + user_score: 8.3, + link: '/game/gamecube/baten-kaitos-origins', + esrb_rating: 'T', + developers: "['Monolith Soft', ' Namco Bandai Games']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 62, + title: 'Pokemon Mystery Dungeon: Blue Rescue Team', + platform: 'DS', + date: 1158526800000, + user_score: 8, + link: '/game/ds/pokemon-mystery-dungeon-blue-rescue-team', + esrb_rating: 'E', + developers: "['ChunSoft']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Roguelike']", + }, + { + meta_score: 67, + title: 'Pokemon Mystery Dungeon: Red Rescue Team', + platform: 'GBA', + date: 1158526800000, + user_score: 8.2, + link: '/game/game-boy-advance/pokemon-mystery-dungeon-red-rescue-team', + esrb_rating: 'E', + developers: "['ChunSoft']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 69, + title: 'Mario Hoops: 3 on 3', + platform: 'DS', + date: 1157922000000, + user_score: 7.8, + link: '/game/ds/mario-hoops-3-on-3', + esrb_rating: 'E', + developers: "['Square Enix']", + genres: "['Sports', 'Traditional', 'Team', 'Basketball', 'Arcade', 'Arcade']", + }, + { + meta_score: 76, + title: 'Star Fox Command', + platform: 'DS', + date: 1156712400000, + user_score: 6.8, + link: '/game/ds/star-fox-command', + esrb_rating: 'E10+', + developers: "['Q-Games']", + genres: "['Action', 'Simulation', 'Shooter', 'Flight', 'Shooter', 'Third-Person', 'Combat', 'Sci-Fi', 'Sci-Fi', 'Arcade']", + }, + { + meta_score: 37, + title: 'Tenchu: Dark Secret', + platform: 'DS', + date: 1156107600000, + user_score: 5.6, + link: '/game/ds/tenchu-dark-secret', + esrb_rating: 'T', + developers: "['From Software', ' Polygon Magic']", + genres: "['Action Adventure', 'Historic', 'General', 'Historic']", + }, + { + meta_score: 62, + title: 'Sudoku Gridmaster', + platform: 'DS', + date: 1151269200000, + user_score: 6, + link: '/game/ds/sudoku-gridmaster', + esrb_rating: 'E', + developers: "['AI']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Puzzle', 'Logic', 'Logic']", + }, + { + meta_score: 74, + title: 'Big Brain Academy', + platform: 'DS', + date: 1149454800000, + user_score: 7.4, + link: '/game/ds/big-brain-academy', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: 68, + title: 'Magnetica', + platform: 'DS', + date: 1149454800000, + user_score: 7.7, + link: '/game/ds/magnetica', + esrb_rating: 'E', + developers: "['Mitchell']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'Matching', 'General']", + }, + { + meta_score: 89, + title: 'New Super Mario Bros.', + platform: 'DS', + date: 1147640400000, + user_score: 8.6, + link: '/game/ds/new-super-mario-bros', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 77, + title: 'Brain Age: Train Your Brain in Minutes a Day!', + platform: 'DS', + date: 1145221200000, + user_score: 7.5, + link: '/game/ds/brain-age-train-your-brain-in-minutes-a-day!', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: 62, + title: 'Odama', + platform: 'GC', + date: 1144616400000, + user_score: 7.6, + link: '/game/gamecube/odama', + esrb_rating: 'E10+', + developers: "['Vivarium']", + genres: "['Miscellaneous', 'Parlor', 'Pinball']", + }, + { + meta_score: 85, + title: 'Metroid Prime: Hunters', + platform: 'DS', + date: 1142805600000, + user_score: 7.7, + link: '/game/ds/metroid-prime-hunters', + esrb_rating: 'T', + developers: "['Nintendo', ' Nintendo Software Technology']", + genres: "['Action', 'Shooter', 'Shooter', 'First-Person', 'Sci-Fi', 'Sci-Fi', 'Arcade']", + }, + { + meta_score: 84, + title: 'Tetris DS', + platform: 'DS', + date: 1142805600000, + user_score: 7.9, + link: '/game/ds/tetris-ds', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Puzzle', 'Stacking', 'Stacking']", + }, + { + meta_score: 74, + title: 'Pokemon Trozei!', + platform: 'DS', + date: 1141596000000, + user_score: 7.2, + link: '/game/ds/pokemon-trozei!', + esrb_rating: 'E', + developers: "['Genius Sonority Inc.']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Puzzle', 'Matching', 'Matching']", + }, + { + meta_score: 76, + title: 'Tales of Phantasia', + platform: 'GBA', + date: 1141596000000, + user_score: 8.1, + link: '/game/game-boy-advance/tales-of-phantasia', + esrb_rating: 'E10+', + developers: "['Namco']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 75, + title: 'Super Princess Peach', + platform: 'DS', + date: 1140991200000, + user_score: 8, + link: '/game/ds/super-princess-peach', + esrb_rating: 'E', + developers: "['TOSE']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 75, + title: 'Chibi-Robo!', + platform: 'GC', + date: 1139176800000, + user_score: 8.8, + link: '/game/gamecube/chibi-robo!', + esrb_rating: 'E10+', + developers: "['Skip Ltd.']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: 81, + title: 'Drill Dozer', + platform: 'GBA', + date: 1139176800000, + user_score: 8.7, + link: '/game/game-boy-advance/drill-dozer', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 66, + title: 'True Swing Golf', + platform: 'DS', + date: 1137967200000, + user_score: 7.7, + link: '/game/ds/true-swing-golf', + esrb_rating: 'E', + developers: "['T&E Soft']", + genres: "['Sports', 'Traditional', 'Individual', 'Golf', 'Arcade', 'Arcade', 'Sim']", + }, + { + meta_score: 71, + title: 'Electroplankton', + platform: 'DS', + date: 1136757600000, + user_score: 7, + link: '/game/ds/electroplankton', + esrb_rating: 'E', + developers: "['indieszero']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music Maker', 'Music Maker', 'Application', 'Music']", + }, + { + meta_score: 85, + title: 'Final Fantasy IV Advance', + platform: 'GBA', + date: 1134338400000, + user_score: 8.4, + link: '/game/game-boy-advance/final-fantasy-iv-advance', + esrb_rating: 'E10+', + developers: "['TOSE']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 86, + title: 'Animal Crossing: Wild World', + platform: 'DS', + date: 1133733600000, + user_score: 8.5, + link: '/game/ds/animal-crossing-wild-world', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual', 'Virtual Life']", + }, + { + meta_score: 76, + title: 'Super Mario Strikers', + platform: 'GC', + date: 1133733600000, + user_score: 8.6, + link: '/game/gamecube/super-mario-strikers', + esrb_rating: 'E', + developers: "['Next Level Games']", + genres: "['Sports', 'Traditional', 'Soccer', 'Arcade']", + }, + { + meta_score: 81, + title: 'Mario Tennis: Power Tour', + platform: 'GBA', + date: 1133733600000, + user_score: 8.6, + link: '/game/game-boy-advance/mario-tennis-power-tour', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Traditional', 'Tennis']", + }, + { + meta_score: 86, + title: 'Mario & Luigi: Partners in Time', + platform: 'DS', + date: 1133128800000, + user_score: 8.5, + link: '/game/ds/mario-luigi-partners-in-time', + esrb_rating: 'E', + developers: "['Alphadream Corporation']", + genres: "['Role-Playing', 'Console-style RPG', 'Console-style RPG', 'Japanese-Style']", + }, + { + meta_score: 74, + title: 'Dr. Mario / Puzzle League', + platform: 'GBA', + date: 1133128800000, + user_score: 8, + link: '/game/game-boy-advance/dr-mario-puzzle-league', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Puzzle', 'Matching']", + }, + { + meta_score: 91, + title: 'Mario Kart DS', + platform: 'DS', + date: 1131919200000, + user_score: 8.7, + link: '/game/ds/mario-kart-ds', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Arcade', 'Kart', 'Kart', 'Automobile']", + }, + { + meta_score: 64, + title: 'Mario Party 7', + platform: 'GC', + date: 1131314400000, + user_score: 7.7, + link: '/game/gamecube/mario-party-7', + esrb_rating: 'E', + developers: "['Hudson']", + genres: "['Miscellaneous', 'Party']", + }, + { + meta_score: 77, + title: 'Donkey Kong Country 3', + platform: 'GBA', + date: 1131314400000, + user_score: 8.2, + link: '/game/game-boy-advance/donkey-kong-country-3', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 79, + title: 'Metroid Prime Pinball', + platform: 'DS', + date: 1130101200000, + user_score: 7.9, + link: '/game/ds/metroid-prime-pinball', + esrb_rating: 'E', + developers: "['Fuse Games Limited']", + genres: "['Action', 'Miscellaneous', 'Parlor', 'Pinball', 'Pinball']", + }, + { + meta_score: null, + title: 'Nintendogs: Best Friends', + platform: 'DS', + date: 1130101200000, + user_score: 7.3, + link: '/game/ds/nintendogs-best-friends', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual Life', 'Virtual', 'Pet']", + }, + { + meta_score: 69, + title: 'Dance Dance Revolution: Mario Mix', + platform: 'GC', + date: 1130101200000, + user_score: 8.1, + link: '/game/gamecube/dance-dance-revolution-mario-mix', + esrb_rating: 'E', + developers: "['Hudson']", + genres: "['Miscellaneous', 'Rhythm', 'Dancing']", + }, + { + meta_score: 85, + title: 'Fire Emblem: Path of Radiance', + platform: 'GC', + date: 1129496400000, + user_score: 9.1, + link: '/game/gamecube/fire-emblem-path-of-radiance', + esrb_rating: 'T', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy']", + }, + { + meta_score: 64, + title: 'Pokemon XD: Gale of Darkness', + platform: 'GC', + date: 1127854800000, + user_score: 8.2, + link: '/game/gamecube/pokemon-xd-gale-of-darkness', + esrb_rating: 'E', + developers: "['Genius Sonority Inc.']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 70, + title: 'Trace Memory', + platform: 'DS', + date: 1127768400000, + user_score: 8.1, + link: '/game/ds/trace-memory', + esrb_rating: 'T', + developers: "['Cing']", + genres: "['Adventure', 'General', 'General', 'Point-and-Click']", + }, + { + meta_score: 76, + title: 'Battalion Wars', + platform: 'GC', + date: 1127077200000, + user_score: 8.4, + link: '/game/gamecube/battalion-wars', + esrb_rating: 'T', + developers: "['Kuju Entertainment']", + genres: "['Action', 'Shooter', 'Third-Person', 'Modern']", + }, + { + meta_score: 70, + title: 'DK: King of Swing', + platform: 'GBA', + date: 1127077200000, + user_score: 5.7, + link: '/game/game-boy-advance/dk-king-of-swing', + esrb_rating: 'E', + developers: "['Paon Corporation']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 76, + title: 'Mario Superstar Baseball', + platform: 'GC', + date: 1125262800000, + user_score: 8.4, + link: '/game/gamecube/mario-superstar-baseball', + esrb_rating: 'E', + developers: "['Namco']", + genres: "['Sports', 'Traditional', 'Baseball', 'Arcade']", + }, + { + meta_score: 56, + title: 'Dynasty Warriors Advance', + platform: 'GBA', + date: 1125262800000, + user_score: 7.6, + link: '/game/game-boy-advance/dynasty-warriors-advance', + esrb_rating: 'E', + developers: "['Koei']", + genres: "['Action', \"Beat-'Em-Up\"]", + }, + { + meta_score: 90, + title: 'Advance Wars: Dual Strike', + platform: 'DS', + date: 1124658000000, + user_score: 8.8, + link: '/game/ds/advance-wars-dual-strike', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Modern', 'Modern', 'Tactics']", + }, + { + meta_score: 83, + title: 'Nintendogs: Chihuahua & Friends', + platform: 'DS', + date: 1124658000000, + user_score: 7.8, + link: '/game/ds/nintendogs-chihuahua-friends', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual Life', 'Virtual', 'Pet']", + }, + { + meta_score: 83, + title: 'Nintendogs: Dachshund & Friends', + platform: 'DS', + date: 1124658000000, + user_score: 7.9, + link: '/game/ds/nintendogs-dachshund-friends', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual Life', 'Virtual', 'Pet']", + }, + { + meta_score: 83, + title: 'Nintendogs: Lab & Friends', + platform: 'DS', + date: 1124658000000, + user_score: 7.6, + link: '/game/ds/nintendogs-lab-friends', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Simulation', 'Miscellaneous', 'Virtual Life', 'Virtual Life', 'Virtual', 'Pet']", + }, + { + meta_score: 66, + title: 'Geist', + platform: 'GC', + date: 1124053200000, + user_score: 8, + link: '/game/gamecube/geist', + esrb_rating: 'M', + developers: "['n-Space']", + genres: "['Action', 'Shooter', 'First-Person', 'Sci-Fi']", + }, + { + meta_score: 88, + title: 'Meteos', + platform: 'DS', + date: 1119906000000, + user_score: 7.4, + link: '/game/ds/meteos', + esrb_rating: 'E', + developers: "['Q Entertainment']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Puzzle', 'Matching', 'Matching']", + }, + { + meta_score: 86, + title: 'Kirby: Canvas Curse', + platform: 'DS', + date: 1118610000000, + user_score: 7.8, + link: '/game/ds/kirby-canvas-curse', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 60, + title: 'Yoshi Topsy-Turvy', + platform: 'GBA', + date: 1118610000000, + user_score: 7.1, + link: '/game/game-boy-advance/yoshi-topsy-turvy', + esrb_rating: 'E', + developers: "['Artoon']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 85, + title: 'Fire Emblem: The Sacred Stones', + platform: 'GBA', + date: 1116795600000, + user_score: 9, + link: '/game/game-boy-advance/fire-emblem-the-sacred-stones', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy']", + }, + { + meta_score: 88, + title: 'WarioWare: Twisted!', + platform: 'GBA', + date: 1116795600000, + user_score: 8.7, + link: '/game/game-boy-advance/warioware-twisted!', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'General']", + }, + { + meta_score: 69, + title: 'Donkey Konga 2', + platform: 'GC', + date: 1115586000000, + user_score: 7, + link: '/game/gamecube/donkey-konga-2', + esrb_rating: 'T', + developers: "['Namco']", + genres: "['Miscellaneous', 'Rhythm', 'Music']", + }, + { + meta_score: 76, + title: 'Pokemon Emerald Version', + platform: 'GBA', + date: 1114808400000, + user_score: 8.9, + link: '/game/game-boy-advance/pokemon-emerald-version', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 73, + title: 'Polarium', + platform: 'DS', + date: 1113771600000, + user_score: 8.2, + link: '/game/ds/polarium', + esrb_rating: 'E', + developers: "['Mitchell']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'Stacking', 'General']", + }, + { + meta_score: 54, + title: 'Mario Party Advance', + platform: 'GBA', + date: 1111957200000, + user_score: 4.8, + link: '/game/game-boy-advance/mario-party-advance', + esrb_rating: 'E', + developers: "['Hudson']", + genres: "['Miscellaneous', 'Party']", + }, + { + meta_score: 73, + title: 'Yoshi Touch & Go', + platform: 'DS', + date: 1110751200000, + user_score: 6.8, + link: '/game/ds/yoshi-touch-go', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '2D', '2D']", + }, + { + meta_score: 46, + title: 'Pokemon Dash', + platform: 'DS', + date: 1110751200000, + user_score: 5.3, + link: '/game/ds/pokemon-dash', + esrb_rating: 'E', + developers: "['Ambrella']", + genres: "['Driving', 'Racing', 'Arcade', 'On-foot', 'Other', 'On-foot']", + }, + { + meta_score: 80, + title: 'Donkey Kong Jungle Beat', + platform: 'GC', + date: 1110751200000, + user_score: 8.3, + link: '/game/gamecube/donkey-kong-jungle-beat', + esrb_rating: 'E10+', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 81, + title: 'WarioWare: Touched!', + platform: 'DS', + date: 1108332000000, + user_score: 8.2, + link: '/game/ds/warioware-touched!', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'General', 'Puzzle', 'Party / Minigame', 'General']", + }, + { + meta_score: 67, + title: 'Star Fox: Assault', + platform: 'GC', + date: 1108332000000, + user_score: 8.2, + link: '/game/gamecube/star-fox-assault', + esrb_rating: 'T', + developers: "['Namco']", + genres: "['Action', 'Shooter', 'Third-Person', 'Sci-Fi']", + }, + { + meta_score: 89, + title: 'The Legend of Zelda: The Minish Cap', + platform: 'GBA', + date: 1105308000000, + user_score: 8.9, + link: '/game/game-boy-advance/the-legend-of-zelda-the-minish-cap', + esrb_rating: 'E', + developers: "['Flagship']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: 71, + title: 'Mario Party 6', + platform: 'GC', + date: 1102284000000, + user_score: 7.9, + link: '/game/gamecube/mario-party-6', + esrb_rating: 'E', + developers: "['Hudson Soft']", + genres: "['Miscellaneous', 'Party']", + }, + { + meta_score: 79, + title: 'Final Fantasy I & II: Dawn of Souls', + platform: 'GBA', + date: 1101679200000, + user_score: 8, + link: '/game/game-boy-advance/final-fantasy-i-ii-dawn-of-souls', + esrb_rating: 'E', + developers: "['Tose Software']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: null, + title: 'PictoChat', + platform: 'DS', + date: 1100988000000, + user_score: 7.5, + link: '/game/ds/pictochat', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'Application']", + }, + { + meta_score: 85, + title: 'Super Mario 64 DS', + platform: 'DS', + date: 1100901600000, + user_score: 8.3, + link: '/game/ds/super-mario-64-ds', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', 'Platformer', '3D', '3D']", + }, + { + meta_score: null, + title: 'Nintendo DS', + platform: 'DS', + date: 1100901600000, + user_score: 8.2, + link: '/game/ds/nintendo-ds', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Hardware', 'Console']", + }, + { + meta_score: null, + title: 'Metroid Prime: Hunters - First Hunt', + platform: 'DS', + date: 1100901600000, + user_score: null, + link: '/game/ds/metroid-prime-hunters---first-hunt', + esrb_rating: 'RP', + developers: "['Nintendo Software Technology']", + genres: "['Action', 'Shooter', 'First-Person', 'Arcade']", + }, + { + meta_score: 92, + title: 'Metroid Prime 2: Echoes', + platform: 'GC', + date: 1100469600000, + user_score: 8.9, + link: '/game/gamecube/metroid-prime-2-echoes', + esrb_rating: 'T', + developers: "['Retro Studios']", + genres: "['Action', 'Shooter', 'First-Person', 'Sci-Fi']", + }, + { + meta_score: 80, + title: 'Donkey Kong Country 2', + platform: 'GBA', + date: 1100469600000, + user_score: 8.6, + link: '/game/game-boy-advance/donkey-kong-country-2', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 80, + title: 'Mario Power Tennis', + platform: 'GC', + date: 1099864800000, + user_score: 8.5, + link: '/game/gamecube/mario-power-tennis', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Traditional', 'Tennis']", + }, + { + meta_score: 66, + title: 'Classic NES Series: Dr. Mario', + platform: 'GBA', + date: 1098651600000, + user_score: 8.2, + link: '/game/game-boy-advance/classic-nes-series-dr-mario', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Matching']", + }, + { + meta_score: 74, + title: 'Classic NES Series: Castlevania', + platform: 'GBA', + date: 1098651600000, + user_score: 8.6, + link: '/game/game-boy-advance/classic-nes-series-castlevania', + esrb_rating: 'E', + developers: "['Konami']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 73, + title: 'Classic NES Series: Zelda II: The Adventure of Link', + platform: 'GBA', + date: 1098651600000, + user_score: 7, + link: '/game/game-boy-advance/classic-nes-series-zelda-ii-the-adventure-of-link', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 58, + title: 'Classic NES Series: Metroid', + platform: 'GBA', + date: 1098651600000, + user_score: 8.2, + link: '/game/game-boy-advance/classic-nes-series-metroid', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Sci-Fi']", + }, + { + meta_score: 80, + title: 'Kirby & the Amazing Mirror', + platform: 'GBA', + date: 1098046800000, + user_score: 8.6, + link: '/game/game-boy-advance/kirby-the-amazing-mirror', + esrb_rating: 'E', + developers: "['Flagship']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 87, + title: 'Paper Mario: The Thousand-Year Door', + platform: 'GC', + date: 1097442000000, + user_score: 9.1, + link: '/game/gamecube/paper-mario-the-thousand-year-door', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 62, + title: 'Mario Pinball Land', + platform: 'GBA', + date: 1096837200000, + user_score: 4.2, + link: '/game/game-boy-advance/mario-pinball-land', + esrb_rating: 'E', + developers: "['Fuse Games Limited']", + genres: "['Miscellaneous', 'Parlor', 'Pinball']", + }, + { + meta_score: 76, + title: 'Donkey Konga', + platform: 'GC', + date: 1096232400000, + user_score: 7.9, + link: '/game/gamecube/donkey-konga', + esrb_rating: 'E', + developers: "['Namco']", + genres: "['Miscellaneous', 'Rhythm', 'Music']", + }, + { + meta_score: 77, + title: 'F-Zero GP Legend', + platform: 'GBA', + date: 1095627600000, + user_score: 8.3, + link: '/game/game-boy-advance/f-zero-gp-legend', + esrb_rating: 'E', + developers: "['Suzak']", + genres: "['Driving', 'Racing', 'Futuristic']", + }, + { + meta_score: 81, + title: 'Pokemon FireRed Version', + platform: 'GBA', + date: 1094504400000, + user_score: 8.6, + link: '/game/game-boy-advance/pokemon-firered-version', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 81, + title: 'Pokemon LeafGreen Version', + platform: 'GBA', + date: 1094504400000, + user_score: 8.5, + link: '/game/game-boy-advance/pokemon-leafgreen-version', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 90, + title: 'Pikmin 2', + platform: 'GC', + date: 1093813200000, + user_score: 9.1, + link: '/game/gamecube/pikmin-2', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Strategy', 'Real-Time', 'Fantasy']", + }, + { + meta_score: 77, + title: 'Hamtaro: Ham-Ham Games', + platform: 'GBA', + date: 1090875600000, + user_score: 8.3, + link: '/game/game-boy-advance/hamtaro-ham-ham-games', + esrb_rating: 'E', + developers: "['Alphadream Corporation']", + genres: "['Sports', 'General']", + }, + { + meta_score: null, + title: 'Pokemon Box: Ruby and Sapphire', + platform: 'GC', + date: 1089579600000, + user_score: 5, + link: '/game/gamecube/pokemon-box-ruby-and-sapphire', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General']", + }, + { + meta_score: 84, + title: 'Mario Golf: Advance Tour', + platform: 'GBA', + date: 1087851600000, + user_score: 8.5, + link: '/game/game-boy-advance/mario-golf-advance-tour', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Traditional', 'Golf', 'Sim']", + }, + { + meta_score: 86, + title: 'The Legend of Zelda: Four Swords Adventures', + platform: 'GC', + date: 1086555600000, + user_score: 7.6, + link: '/game/gamecube/the-legend-of-zelda-four-swords-adventures', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: 66, + title: 'Classic NES Series: Ice Climber', + platform: 'GBA', + date: 1086123600000, + user_score: 7.8, + link: '/game/game-boy-advance/classic-nes-series-ice-climber', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 66, + title: 'Classic NES Series: Excitebike', + platform: 'GBA', + date: 1086123600000, + user_score: 7.8, + link: '/game/game-boy-advance/classic-nes-series-excitebike', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Arcade']", + }, + { + meta_score: 84, + title: 'Classic NES Series: Super Mario Bros.', + platform: 'GBA', + date: 1086123600000, + user_score: 8.4, + link: '/game/game-boy-advance/classic-nes-series-super-mario-bros', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 84, + title: 'Classic NES Series: The Legend of Zelda', + platform: 'GBA', + date: 1086123600000, + user_score: 8.4, + link: '/game/game-boy-advance/classic-nes-series-the-legend-of-zelda', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 55, + title: 'Classic NES Series: Donkey Kong', + platform: 'GBA', + date: 1086123600000, + user_score: 6.1, + link: '/game/game-boy-advance/classic-nes-series-donkey-kong', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 53, + title: 'Classic NES Series: Pac-Man', + platform: 'GBA', + date: 1086123600000, + user_score: 7.8, + link: '/game/game-boy-advance/classic-nes-series-pac-man', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'General']", + }, + { + meta_score: 81, + title: 'Mario vs. Donkey Kong', + platform: 'GBA', + date: 1085346000000, + user_score: 8.2, + link: '/game/game-boy-advance/mario-vs-donkey-kong', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 65, + title: 'Custom Robo', + platform: 'GC', + date: 1084136400000, + user_score: 8.1, + link: '/game/gamecube/custom-robo', + esrb_rating: 'T', + developers: "['Noise Inc.']", + genres: "['Action', 'Fighting', '3D']", + }, + { + meta_score: 76, + title: 'WarioWare, Inc.: Mega Party Game$!', + platform: 'GC', + date: 1081198800000, + user_score: 8, + link: '/game/gamecube/warioware-inc-mega-party-game!', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'General']", + }, + { + meta_score: 73, + title: 'Pokemon Colosseum', + platform: 'GC', + date: 1079906400000, + user_score: 8, + link: '/game/gamecube/pokemon-colosseum', + esrb_rating: 'E', + developers: "['Genius Sonority Inc.']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 80, + title: 'Final Fantasy Crystal Chronicles', + platform: 'GC', + date: 1076277600000, + user_score: 8.9, + link: '/game/gamecube/final-fantasy-crystal-chronicles', + esrb_rating: 'T', + developers: "['Square Enix']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 89, + title: 'Metroid: Zero Mission', + platform: 'GBA', + date: 1076277600000, + user_score: 9.1, + link: '/game/game-boy-advance/metroid-zero-mission', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 78, + title: 'Pac-Man vs.', + platform: 'GC', + date: 1070316000000, + user_score: 8.3, + link: '/game/gamecube/pac-man-vs', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'General']", + }, + { + meta_score: 73, + title: '1080: Avalanche', + platform: 'GC', + date: 1070229600000, + user_score: 7.8, + link: '/game/gamecube/1080-avalanche', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Sports', 'Alternative', 'Snowboarding']", + }, + { + meta_score: 72, + title: 'Sword of Mana', + platform: 'GBA', + date: 1070229600000, + user_score: 8.5, + link: '/game/game-boy-advance/sword-of-mana', + esrb_rating: 'E', + developers: "['Brownie Brown']", + genres: "['Role-Playing', 'Action RPG']", + }, + { + meta_score: 55, + title: 'Pokemon Channel', + platform: 'GC', + date: 1070229600000, + user_score: 6.4, + link: '/game/gamecube/pokemon-channel', + esrb_rating: 'E', + developers: "['Ambrella']", + genres: "['Adventure', 'First-Person', 'Fantasy']", + }, + { + meta_score: 87, + title: 'Mario Kart: Double Dash!!', + platform: 'GC', + date: 1069020000000, + user_score: 8.6, + link: '/game/gamecube/mario-kart-double-dash!!', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Kart']", + }, + { + meta_score: 90, + title: 'Mario & Luigi: Superstar Saga', + platform: 'GBA', + date: 1069020000000, + user_score: 8.8, + link: '/game/game-boy-advance/mario-luigi-superstar-saga', + esrb_rating: 'E', + developers: "['Alphadream Corporation']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 95, + title: "The Legend of Zelda Collector's Edition", + platform: 'GC', + date: 1069020000000, + user_score: 8.9, + link: '/game/gamecube/the-legend-of-zelda-collectors-edition', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: 69, + title: 'Mario Party 5', + platform: 'GC', + date: 1068415200000, + user_score: 7.7, + link: '/game/gamecube/mario-party-5', + esrb_rating: 'E', + developers: "['Hudson']", + genres: "['Miscellaneous', 'Party']", + }, + { + meta_score: 88, + title: 'Fire Emblem', + platform: 'GBA', + date: 1067810400000, + user_score: 9.1, + link: '/game/game-boy-advance/fire-emblem', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Fantasy']", + }, + { + meta_score: 78, + title: 'Top Gear Rally', + platform: 'GBA', + date: 1067292000000, + user_score: 7.5, + link: '/game/game-boy-advance/top-gear-rally', + esrb_rating: 'E', + developers: "['Tantalus']", + genres: "['Driving', 'Racing', 'Rally / Offroad']", + }, + { + meta_score: 94, + title: 'Super Mario Advance 4: Super Mario Bros. 3', + platform: 'GBA', + date: 1066683600000, + user_score: 9.1, + link: '/game/game-boy-advance/super-mario-advance-4-super-mario-bros-3', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 61, + title: 'Kirby Air Ride', + platform: 'GC', + date: 1065992400000, + user_score: 8.2, + link: '/game/gamecube/kirby-air-ride', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Driving', 'Racing', 'Kart']", + }, + { + meta_score: 87, + title: 'Final Fantasy Tactics Advance', + platform: 'GBA', + date: 1062968400000, + user_score: 9, + link: '/game/game-boy-advance/final-fantasy-tactics-advance', + esrb_rating: 'E', + developers: "['Square Enix']", + genres: "['Strategy', 'Turn-Based', 'Fantasy']", + }, + { + meta_score: 89, + title: 'F-Zero GX', + platform: 'GC', + date: 1061845200000, + user_score: 8.6, + link: '/game/gamecube/f-zero-gx', + esrb_rating: 'T', + developers: "['Amusement Vision']", + genres: "['Driving', 'Racing', 'Futuristic']", + }, + { + meta_score: 81, + title: 'Pokemon Pinball: Ruby & Sapphire', + platform: 'GBA', + date: 1061845200000, + user_score: 7.7, + link: '/game/game-boy-advance/pokemon-pinball-ruby-sapphire', + esrb_rating: 'E', + developers: "['Jupiter Corporation']", + genres: "['Miscellaneous', 'Parlor', 'Pinball']", + }, + { + meta_score: 81, + title: 'Mario Golf: Toadstool Tour', + platform: 'GC', + date: 1059426000000, + user_score: 8.1, + link: '/game/gamecube/mario-golf-toadstool-tour', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Traditional', 'Golf', 'Arcade']", + }, + { + meta_score: 71, + title: 'Wario World', + platform: 'GC', + date: 1056402000000, + user_score: 7.6, + link: '/game/gamecube/wario-world', + esrb_rating: 'E', + developers: "['Treasure']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: 89, + title: 'Advance Wars 2: Black Hole Rising', + platform: 'GBA', + date: 1056402000000, + user_score: 8.8, + link: '/game/game-boy-advance/advance-wars-2-black-hole-rising', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Sci-Fi']", + }, + { + meta_score: 78, + title: 'Donkey Kong Country', + platform: 'GBA', + date: 1055106000000, + user_score: 8.7, + link: '/game/game-boy-advance/donkey-kong-country', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 89, + title: 'WarioWare, Inc.: Mega Microgame$!', + platform: 'GBA', + date: 1053464400000, + user_score: 8.6, + link: '/game/game-boy-advance/warioware-inc-mega-microgame!', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'General']", + }, + { + meta_score: 86, + title: 'Golden Sun: The Lost Age', + platform: 'GBA', + date: 1050267600000, + user_score: 9, + link: '/game/game-boy-advance/golden-sun-the-lost-age', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 72, + title: 'Hamtaro: Ham Ham Heartbreak', + platform: 'GBA', + date: 1049749200000, + user_score: 8.4, + link: '/game/game-boy-advance/hamtaro-ham-ham-heartbreak', + esrb_rating: 'E', + developers: "['Pax Softonica']", + genres: "['Action', 'General']", + }, + { + meta_score: 96, + title: 'The Legend of Zelda: The Wind Waker', + platform: 'GC', + date: 1048456800000, + user_score: 9, + link: '/game/gamecube/the-legend-of-zelda-the-wind-waker', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: 82, + title: 'Pokemon Ruby Version', + platform: 'GBA', + date: 1047938400000, + user_score: 8.5, + link: '/game/game-boy-advance/pokemon-ruby-version', + esrb_rating: 'E', + developers: "['Game Freak']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 91, + title: 'The Legend of Zelda: Ocarina of Time / Master Quest', + platform: 'GC', + date: 1046383200000, + user_score: 8.9, + link: '/game/gamecube/the-legend-of-zelda-ocarina-of-time-master-quest', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: 95, + title: 'The Legend of Zelda: A Link to the Past', + platform: 'GBA', + date: 1038866400000, + user_score: 9, + link: '/game/game-boy-advance/the-legend-of-zelda-a-link-to-the-past', + esrb_rating: 'E', + developers: "['Capcom']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: 81, + title: 'Kirby: Nightmare in Dream Land', + platform: 'GBA', + date: 1038780000000, + user_score: 8.6, + link: '/game/game-boy-advance/kirby-nightmare-in-dream-land', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 97, + title: 'Metroid Prime', + platform: 'GC', + date: 1037484000000, + user_score: 9, + link: '/game/gamecube/metroid-prime', + esrb_rating: 'T', + developers: "['Retro Studios']", + genres: "['Action', 'Shooter', 'First-Person', 'Sci-Fi']", + }, + { + meta_score: 92, + title: 'Metroid Fusion', + platform: 'GBA', + date: 1037484000000, + user_score: 9, + link: '/game/game-boy-advance/metroid-fusion', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Sci-Fi']", + }, + { + meta_score: 71, + title: 'Cubivore: Survival of the Fittest', + platform: 'GC', + date: 1036447200000, + user_score: 8.1, + link: '/game/gamecube/cubivore-survival-of-the-fittest', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'General']", + }, + { + meta_score: 71, + title: 'Game & Watch Gallery 4', + platform: 'GBA', + date: 1035756000000, + user_score: 8.1, + link: '/game/game-boy-advance/game-watch-gallery-4', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Compilation']", + }, + { + meta_score: 70, + title: 'Mario Party 4', + platform: 'GC', + date: 1035147600000, + user_score: 7.7, + link: '/game/gamecube/mario-party-4', + esrb_rating: 'E', + developers: "['Hudson']", + genres: "['Miscellaneous', 'Party']", + }, + { + meta_score: 91, + title: "Yoshi's Island: Super Mario Advance 3", + platform: 'GBA', + date: 1032814800000, + user_score: 9.1, + link: '/game/game-boy-advance/yoshis-island-super-mario-advance-3', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 82, + title: 'Star Fox Adventures', + platform: 'GC', + date: 1032642000000, + user_score: 8, + link: '/game/gamecube/star-fox-adventures', + esrb_rating: 'T', + developers: "['Rare Ltd.']", + genres: "['Action Adventure', 'Sci-Fi']", + }, + { + meta_score: 87, + title: 'Animal Crossing', + platform: 'GC', + date: 1032037200000, + user_score: 8.8, + link: '/game/gamecube/animal-crossing', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Virtual Life']", + }, + { + meta_score: 92, + title: 'Super Mario Sunshine', + platform: 'GC', + date: 1030222800000, + user_score: 8.3, + link: '/game/gamecube/super-mario-sunshine', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: 50, + title: "Disney's Magical Mirror Starring Mickey Mouse", + platform: 'GC', + date: 1029186000000, + user_score: 7.6, + link: '/game/gamecube/disneys-magical-mirror-starring-mickey-mouse', + esrb_rating: 'E', + developers: "['Capcom']", + genres: "['Adventure', 'Third-Person', 'Fantasy']", + }, + { + meta_score: 70, + title: "Disney's Magical Quest", + platform: 'GBA', + date: 1029186000000, + user_score: null, + link: '/game/game-boy-advance/disneys-magical-quest', + esrb_rating: 'E', + developers: "['Sun-Tec']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 92, + title: "Eternal Darkness: Sanity's Requiem", + platform: 'GC', + date: 1024779600000, + user_score: 8.8, + link: '/game/gamecube/eternal-darkness-sanitys-requiem', + esrb_rating: 'M', + developers: "['Silicon Knights']", + genres: "['Action Adventure', 'Horror']", + }, + { + meta_score: 92, + title: 'Super Mario World: Super Mario Advance 2', + platform: 'GBA', + date: 1013205600000, + user_score: 9.1, + link: '/game/game-boy-advance/super-mario-world-super-mario-advance-2', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 71, + title: 'NBA Courtside 2002', + platform: 'GC', + date: 1010872800000, + user_score: 7.4, + link: '/game/gamecube/nba-courtside-2002', + esrb_rating: 'E', + developers: "['Left Field Productions']", + genres: "['Sports', 'Traditional', 'Basketball', 'Sim']", + }, + { + meta_score: 92, + title: 'Super Smash Bros. Melee', + platform: 'GC', + date: 1007244000000, + user_score: 9, + link: '/game/gamecube/super-smash-bros-melee', + esrb_rating: 'T', + developers: "['HAL Labs']", + genres: "['Action', 'Fighting', '3D']", + }, + { + meta_score: 89, + title: 'Pikmin', + platform: 'GC', + date: 1007244000000, + user_score: 8.7, + link: '/game/gamecube/pikmin', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Strategy', 'Real-Time', 'Fantasy']", + }, + { + meta_score: 88, + title: 'Wario Land 4', + platform: 'GBA', + date: 1006034400000, + user_score: 8.8, + link: '/game/game-boy-advance/wario-land-4', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 80, + title: 'Wave Race: Blue Storm', + platform: 'GC', + date: 1005948000000, + user_score: 8, + link: '/game/gamecube/wave-race-blue-storm', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Snow / Water']", + }, + { + meta_score: 78, + title: "Luigi's Mansion", + platform: 'GC', + date: 1005948000000, + user_score: 8.6, + link: '/game/gamecube/luigis-mansion', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: 91, + title: 'Golden Sun', + platform: 'GBA', + date: 1005429600000, + user_score: 9, + link: '/game/game-boy-advance/golden-sun', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 92, + title: 'Advance Wars', + platform: 'GBA', + date: 999982800000, + user_score: 8.8, + link: '/game/game-boy-advance/advance-wars', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Strategy', 'Turn-Based', 'Modern']", + }, + { + meta_score: 93, + title: 'Mario Kart Super Circuit', + platform: 'GBA', + date: 998773200000, + user_score: 8, + link: '/game/game-boy-advance/mario-kart-super-circuit', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Driving', 'Racing', 'Kart']", + }, + { + meta_score: 86, + title: 'F-Zero: Maximum Velocity', + platform: 'GBA', + date: 992293200000, + user_score: 7.8, + link: '/game/game-boy-advance/f-zero-maximum-velocity', + esrb_rating: 'E', + developers: "['Nd Cube']", + genres: "['Driving', 'Racing', 'Futuristic']", + }, + { + meta_score: 84, + title: 'Super Mario Advance', + platform: 'GBA', + date: 992120400000, + user_score: 8.2, + link: '/game/game-boy-advance/super-mario-advance', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 74, + title: 'Mario Party 3', + platform: 'N64', + date: 989096400000, + user_score: 8.2, + link: '/game/nintendo-64/mario-party-3', + esrb_rating: 'E', + developers: "['Hudson']", + genres: "['Miscellaneous', 'Party']", + }, + { + meta_score: 71, + title: 'Dr. Mario 64', + platform: 'N64', + date: 986677200000, + user_score: 7.3, + link: '/game/nintendo-64/dr-mario-64', + esrb_rating: 'E', + developers: "['Newcom']", + genres: "['Miscellaneous', 'Puzzle', 'Matching']", + }, + { + meta_score: 78, + title: 'Pokemon Stadium 2', + platform: 'N64', + date: 985726800000, + user_score: 8.4, + link: '/game/nintendo-64/pokemon-stadium-2', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Strategy', 'General']", + }, + { + meta_score: 93, + title: 'Paper Mario', + platform: 'N64', + date: 981324000000, + user_score: 9, + link: '/game/nintendo-64/paper-mario', + esrb_rating: 'E', + developers: "['Intelligent Systems']", + genres: "['Role-Playing', 'Console-style RPG']", + }, + { + meta_score: 90, + title: 'Banjo-Tooie', + platform: 'N64', + date: 974584800000, + user_score: 8.8, + link: '/game/nintendo-64/banjo-tooie', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: 71, + title: "Mickey's Speedway USA", + platform: 'N64', + date: 974066400000, + user_score: 7.7, + link: '/game/nintendo-64/mickeys-speedway-usa', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Driving', 'Racing', 'Kart']", + }, + { + meta_score: 57, + title: 'Hey You, Pikachu!', + platform: 'N64', + date: 973375200000, + user_score: 6.3, + link: '/game/nintendo-64/hey-you-pikachu!', + esrb_rating: 'E', + developers: "['Ambrella']", + genres: "['Adventure', 'General']", + }, + { + meta_score: 95, + title: "The Legend of Zelda: Majora's Mask", + platform: 'N64', + date: 972424800000, + user_score: 9.1, + link: '/game/nintendo-64/the-legend-of-zelda-majoras-mask', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: 81, + title: 'Pokemon Puzzle League', + platform: 'N64', + date: 967759200000, + user_score: 8.4, + link: '/game/nintendo-64/pokemon-puzzle-league', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Puzzle', 'Matching']", + }, + { + meta_score: 91, + title: 'Mario Tennis', + platform: 'N64', + date: 967413600000, + user_score: 8.7, + link: '/game/nintendo-64/mario-tennis', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Traditional', 'Tennis']", + }, + { + meta_score: 77, + title: 'Kirby 64: The Crystal Shards', + platform: 'N64', + date: 961970400000, + user_score: 8.1, + link: '/game/nintendo-64/kirby-64-the-crystal-shards', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: 80, + title: 'Starcraft 64', + platform: 'N64', + date: 960847200000, + user_score: 7.6, + link: '/game/nintendo-64/starcraft-64', + esrb_rating: 'T', + developers: "['Mass Media']", + genres: "['Strategy', 'Real-Time', 'Sci-Fi']", + }, + { + meta_score: 97, + title: 'Perfect Dark', + platform: 'N64', + date: 958946400000, + user_score: 8.8, + link: '/game/nintendo-64/perfect-dark', + esrb_rating: 'M', + developers: "['Rare Ltd.']", + genres: "['Action', 'Shooter', 'First-Person', 'Sci-Fi']", + }, + { + meta_score: 88, + title: 'Excitebike 64', + platform: 'N64', + date: 957045600000, + user_score: 8.2, + link: '/game/nintendo-64/excitebike-64', + esrb_rating: 'E', + developers: "['Left Field Productions']", + genres: "['Driving', 'Racing', 'Motorcycle', 'Motocross']", + }, + { + meta_score: 82, + title: 'Ridge Racer 64', + platform: 'N64', + date: 950479200000, + user_score: 8.1, + link: '/game/nintendo-64/ridge-racer-64', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Arcade']", + }, + { + meta_score: 91, + title: 'Mario Golf', + platform: 'N64', + date: 930690000000, + user_score: 7.8, + link: '/game/nintendo-64/mario-golf', + esrb_rating: 'E', + developers: "['Camelot Software Planning']", + genres: "['Sports', 'Traditional', 'Golf', 'Arcade']", + }, + { + meta_score: 77, + title: 'Pokemon Snap', + platform: 'N64', + date: 930690000000, + user_score: 7.7, + link: '/game/nintendo-64/pokemon-snap', + esrb_rating: 'E', + developers: "['Hal']", + genres: "['Action', 'General']", + }, + { + meta_score: 79, + title: 'Super Smash Bros.', + platform: 'N64', + date: 925074000000, + user_score: 8.6, + link: '/game/nintendo-64/super-smash-bros', + esrb_rating: 'E', + developers: "['HAL Labs']", + genres: "['Action', 'Fighting', '3D']", + }, + { + meta_score: 79, + title: 'Mario Party', + platform: 'N64', + date: 918424800000, + user_score: 8, + link: '/game/nintendo-64/mario-party', + esrb_rating: 'E', + developers: "['Hudson']", + genres: "['Miscellaneous', 'Party']", + }, + { + meta_score: 99, + title: 'The Legend of Zelda: Ocarina of Time', + platform: 'N64', + date: 911772000000, + user_score: 9.1, + link: '/game/nintendo-64/the-legend-of-zelda-ocarina-of-time', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action Adventure', 'Fantasy']", + }, + { + meta_score: 85, + title: 'F-Zero X', + platform: 'N64', + date: 907102800000, + user_score: 8.7, + link: '/game/nintendo-64/f-zero-x', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Futuristic']", + }, + { + meta_score: 92, + title: 'Banjo-Kazooie', + platform: 'N64', + date: 896562000000, + user_score: 9.2, + link: '/game/nintendo-64/banjo-kazooie', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: 65, + title: "Yoshi's Story", + platform: 'N64', + date: 888703200000, + user_score: 7.4, + link: '/game/nintendo-64/yoshis-story', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '2D']", + }, + { + meta_score: 88, + title: 'Diddy Kong Racing', + platform: 'N64', + date: 880322400000, + user_score: 8.4, + link: '/game/nintendo-64/diddy-kong-racing', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Driving', 'Racing', 'Kart']", + }, + { + meta_score: 96, + title: 'GoldenEye 007', + platform: 'N64', + date: 872456400000, + user_score: 8.9, + link: '/game/nintendo-64/goldeneye-007', + esrb_rating: 'T', + developers: "['Rare Ltd.']", + genres: "['Action', 'Shooter', 'First-Person', 'Modern']", + }, + { + meta_score: 88, + title: 'Star Fox 64', + platform: 'N64', + date: 867704400000, + user_score: 8.8, + link: '/game/nintendo-64/star-fox-64', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Shooter', 'Rail']", + }, + { + meta_score: 90, + title: 'Blast Corps', + platform: 'N64', + date: 857080800000, + user_score: 8.4, + link: '/game/nintendo-64/blast-corps', + esrb_rating: 'E', + developers: "['Rare Ltd.']", + genres: "['Action', 'General']", + }, + { + meta_score: 83, + title: 'Mario Kart 64', + platform: 'N64', + date: 855525600000, + user_score: 8.6, + link: '/game/nintendo-64/mario-kart-64', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Kart']", + }, + { + meta_score: 92, + title: 'Wave Race 64', + platform: 'N64', + date: 846799200000, + user_score: 8.3, + link: '/game/nintendo-64/wave-race-64', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Driving', 'Racing', 'Snow / Water']", + }, + { + meta_score: 80, + title: 'Pilotwings 64', + platform: 'N64', + date: 843944400000, + user_score: 7.9, + link: '/game/nintendo-64/pilotwings-64', + esrb_rating: 'E', + developers: "['Paradigm Entertainment']", + genres: "['Simulation', 'General']", + }, + { + meta_score: 94, + title: 'Super Mario 64', + platform: 'N64', + date: 843685200000, + user_score: 9.1, + link: '/game/nintendo-64/super-mario-64', + esrb_rating: 'E', + developers: "['Nintendo']", + genres: "['Action', 'Platformer', '3D']", + }, + { + meta_score: null, + title: 'Project H.A.M.M.E.R.', + platform: 'WII', + date: null, + user_score: null, + link: '/game/wii/project-hammer', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', \"Beat-'Em-Up\", \"Beat-'Em-Up\", '2D']", + }, + { + meta_score: null, + title: 'Jet Impulse', + platform: 'DS', + date: null, + user_score: null, + link: '/game/ds/jet-impulse', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Simulation', 'Flight', 'Modern Jet', 'Combat']", + }, + { + meta_score: null, + title: 'Line Attack Heroes', + platform: 'WII', + date: null, + user_score: null, + link: '/game/wii/line-attack-heroes', + esrb_rating: '', + developers: "['GREZZO']", + genres: "['Action', 'General', 'General']", + }, + { + meta_score: null, + title: 'Wii U Play', + platform: 'WIIU', + date: null, + user_score: null, + link: '/game/wii-u/wii-u-play', + esrb_rating: 'RP', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'Party', 'Party / Minigame']", + }, + { + meta_score: null, + title: 'Measure Up', + platform: 'WIIU', + date: null, + user_score: null, + link: '/game/wii-u/measure-up', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General']", + }, + { + meta_score: null, + title: 'Make 10', + platform: 'DS', + date: null, + user_score: null, + link: '/game/ds/make-10', + esrb_rating: '', + developers: "['MuuMuu']", + genres: "['Miscellaneous', 'Puzzle', 'Puzzle', 'Logic', 'Logic']", + }, + { + meta_score: null, + title: 'ASH: Archaic Sealed Heat', + platform: 'DS', + date: null, + user_score: null, + link: '/game/ds/ash-archaic-sealed-heat', + esrb_rating: 'E10+', + developers: "['Mistwalker']", + genres: "['Role-Playing', 'Strategy', 'Turn-Based', 'General', 'General', 'Fantasy', 'Tactics']", + }, + { + meta_score: null, + title: 'Nintendo Letterbox', + platform: 'DS', + date: null, + user_score: null, + link: '/game/ds/nintendo-letterbox', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Miscellaneous', 'General', 'General', 'Application']", + }, + { + meta_score: null, + title: 'Art Academy: Lessons for Everyone', + platform: 'WIIU', + date: null, + user_score: null, + link: '/game/wii-u/art-academy-lessons-for-everyone', + esrb_rating: '', + developers: "['Nintendo', ' Headstrong Games']", + genres: "['Miscellaneous', 'Edutainment', 'Edutainment']", + }, + { + meta_score: 68, + title: 'Wii Karaoke U', + platform: 'WIIU', + date: null, + user_score: 7.8, + link: '/game/wii-u/wii-karaoke-u', + esrb_rating: '', + developers: "['TOSE']", + genres: "['Action', 'Miscellaneous', 'Rhythm', 'Music', 'Music']", + }, + { + meta_score: null, + title: 'Art Academy', + platform: 'WIIU', + date: null, + user_score: null, + link: '/game/wii-u/art-academy', + esrb_rating: '', + developers: "['Headstrong Games']", + genres: "['Miscellaneous', 'Edutainment']", + }, + { + meta_score: null, + title: 'Project Giant Robot', + platform: 'WIIU', + date: null, + user_score: null, + link: '/game/wii-u/project-giant-robot', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Simulation', 'Fighting', 'Vehicle', '3D', 'Combat']", + }, + { + meta_score: null, + title: 'Zero: Tsukihami no Kamen', + platform: 'WII', + date: null, + user_score: null, + link: '/game/wii/zero-tsukihami-no-kamen', + esrb_rating: '', + developers: "['Grasshopper Manufacture']", + genres: "['Action Adventure', 'Horror', 'Survival']", + }, + { + meta_score: null, + title: 'Blast Ball', + platform: '3DS', + date: null, + user_score: null, + link: '/game/3ds/blast-ball', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Sports', 'General']", + }, + { + meta_score: null, + title: 'FAST Racing Neo', + platform: '3DS', + date: null, + user_score: null, + link: '/game/3ds/fast-racing-neo', + esrb_rating: '', + developers: '["Shin\'en"]', + genres: "['Racing', 'Arcade', 'Futuristic']", + }, + { + meta_score: null, + title: 'Seasons of Heaven', + platform: 'Switch', + date: null, + user_score: null, + link: '/game/switch/seasons-of-heaven', + esrb_rating: '', + developers: "['AnyArts Productions']", + genres: "['Action Adventure', 'Survival', 'Open-World']", + }, + { + meta_score: null, + title: 'Metroid Prime 4', + platform: 'Switch', + date: null, + user_score: null, + link: '/game/switch/metroid-prime-4', + esrb_rating: '', + developers: "['Nintendo', ' Retro Studios']", + genres: "['Action', 'Shooter', 'First-Person', 'Arcade']", + }, + { + meta_score: null, + title: 'Yo-kai Watch 4', + platform: 'Switch', + date: null, + user_score: null, + link: '/game/switch/yo-kai-watch-4', + esrb_rating: 'E10+', + developers: "['Level 5']", + genres: "['Role-Playing', 'Trainer']", + }, + { + meta_score: null, + title: 'Splatoon 3: Expansion Pass Wave 2 - Side Order', + platform: 'Switch', + date: null, + user_score: null, + link: '/game/switch/splatoon-3-expansion-pass-wave-2---side-order', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Action', 'Shooter', 'Third-Person', 'Arcade']", + }, + { + meta_score: null, + title: 'Mario Kart 8 Deluxe: Booster Course Pass - Wave 6', + platform: 'Switch', + date: null, + user_score: null, + link: '/game/switch/mario-kart-8-deluxe-booster-course-pass---wave-6', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Racing', 'Arcade', 'Automobile']", + }, + { + meta_score: null, + title: 'Princess Peach for Nintendo Switch', + platform: 'Switch', + date: 1704060000000, + user_score: null, + link: '/game/switch/princess-peach-for-nintendo-switch', + esrb_rating: '', + developers: "['Nintendo']", + genres: "['Adventure', 'General']", + }, + { + meta_score: null, + title: "Luigi's Mansion: Dark Moon", + platform: 'Switch', + date: 1704060000000, + user_score: null, + link: '/game/switch/luigis-mansion-dark-moon', + esrb_rating: '', + developers: "['Next Level Games']", + genres: "['Action Adventure', 'General']", + }, +]; diff --git a/src/plugins/d3/examples/pie/Basic.tsx b/src/plugins/d3/examples/pie/Basic.tsx new file mode 100644 index 00000000..829610cd --- /dev/null +++ b/src/plugins/d3/examples/pie/Basic.tsx @@ -0,0 +1,35 @@ +import React from 'react'; +import {ChartKit} from '../../../../components/ChartKit'; +import type {ChartKitWidgetData} from '../../../../types'; +import nintendoGames from '../nintendoGames'; +import {groups} from 'd3'; + +function prepareData() { + const gamesByPlatform = groups(nintendoGames, (item) => item.platform); + return gamesByPlatform.map(([platform, games]) => ({ + name: platform, + value: games.length, + })); +} + +export const BasicPie = () => { + const data = prepareData(); + + const widgetData: ChartKitWidgetData = { + series: { + data: [ + { + type: 'pie', + data: data, + }, + ], + }, + legend: {enabled: true}, + title: { + text: 'Platforms', + style: {fontSize: '12px', fontWeight: 'normal'}, + }, + }; + + return ; +}; diff --git a/src/plugins/d3/examples/pie/Donut.tsx b/src/plugins/d3/examples/pie/Donut.tsx new file mode 100644 index 00000000..28e142e1 --- /dev/null +++ b/src/plugins/d3/examples/pie/Donut.tsx @@ -0,0 +1,36 @@ +import React from 'react'; +import {ChartKit} from '../../../../components/ChartKit'; +import type {ChartKitWidgetData} from '../../../../types'; +import nintendoGames from '../nintendoGames'; +import {groups} from 'd3'; + +function prepareData() { + const gamesByPlatform = groups(nintendoGames, (d) => d.esrb_rating || 'unknown'); + return gamesByPlatform.map(([value, games]) => ({ + name: value, + value: games.length, + })); +} + +export const Donut = () => { + const data = prepareData(); + + const widgetData: ChartKitWidgetData = { + series: { + data: [ + { + type: 'pie', + innerRadius: '50%', + data: data, + }, + ], + }, + legend: {enabled: true}, + title: { + text: 'ESRB ratings', + style: {fontSize: '12px', fontWeight: 'normal'}, + }, + }; + + return ; +}; diff --git a/src/plugins/d3/examples/scatter/Basic.tsx b/src/plugins/d3/examples/scatter/Basic.tsx new file mode 100644 index 00000000..828d9db6 --- /dev/null +++ b/src/plugins/d3/examples/scatter/Basic.tsx @@ -0,0 +1,70 @@ +import React from 'react'; +import {ChartKit} from '../../../../components/ChartKit'; +import type {ChartKitWidgetData, ScatterSeries, ScatterSeriesData} from '../../../../types'; +import nintendoGames from '../nintendoGames'; +import {dateTime} from '@gravity-ui/date-utils'; + +function prepareData() { + const dataset = nintendoGames.filter((d) => d.date && d.user_score); + const data = dataset.map((d) => ({ + x: d.date || undefined, + y: d.user_score || undefined, + custom: d, + })); + + return { + series: [ + { + data, + name: 'Nintendo games', + }, + ], + }; +} + +export const Basic = () => { + const {series} = prepareData(); + + const widgetData: ChartKitWidgetData = { + series: { + data: series.map((s) => ({ + type: 'scatter', + data: s.data.filter((d) => d.x), + name: s.name, + })), + }, + yAxis: [ + { + title: { + text: 'User score', + }, + }, + ], + xAxis: { + type: 'datetime', + title: { + text: 'Release dates', + }, + }, + tooltip: { + renderer: (d) => { + const point = d.hovered.data as ScatterSeriesData; + const title = point.custom.title; + const score = point.custom.user_score; + const date = dateTime({input: point.custom.date}).format('DD MMM YYYY'); + + return ( + + {title} +
+ Release date: {date} +
+ User score: {score} +
+ ); + }, + }, + }; + + return ; +}; diff --git a/src/plugins/d3/renderer/components/Title.tsx b/src/plugins/d3/renderer/components/Title.tsx index bbe85f94..ac31ce88 100644 --- a/src/plugins/d3/renderer/components/Title.tsx +++ b/src/plugins/d3/renderer/components/Title.tsx @@ -19,7 +19,10 @@ export const Title = (props: Props) => { dy={height / 2} dominantBaseline="middle" textAnchor="middle" - style={{fontSize: style?.fontSize, lineHeight: `${height}px`}} + style={{ + lineHeight: `${height}px`, + ...style, + }} > {text} diff --git a/src/plugins/d3/renderer/hooks/useChartOptions/title.ts b/src/plugins/d3/renderer/hooks/useChartOptions/title.ts index 7220cb1a..d2cda3e8 100644 --- a/src/plugins/d3/renderer/hooks/useChartOptions/title.ts +++ b/src/plugins/d3/renderer/hooks/useChartOptions/title.ts @@ -1,6 +1,6 @@ import get from 'lodash/get'; -import type {BaseTextStyle, ChartKitWidgetData} from '../../../../../types/widget-data'; +import type {BaseTextStyle, ChartKitWidgetData} from '../../../../../types'; import {getHorisontalSvgTextHeight} from '../../utils'; import type {PreparedTitle} from './types'; @@ -16,6 +16,7 @@ export const getPreparedTitle = ({ const titleText = get(title, 'text'); const titleStyle: BaseTextStyle = { fontSize: get(title, 'style.fontSize', DEFAULT_TITLE_FONT_SIZE), + fontWeight: get(title, 'style.fontWeight'), }; const titleHeight = titleText ? getHorisontalSvgTextHeight({text: titleText, style: titleStyle}) + TITLE_PADDINGS