import { Link } from 'wouter-preact' import GameEntry from '~/src/components/GameEntry/GameEntry' import top2019 from './top2019' import * as s from './GamesView.module.scss' const tutorialGame = { name: 'The Dreamhold', ifdb: 'https://ifdb.org/viewgame?id=3myqnrs64nbtwdaz', url: 'https://mirror.ifarchive.org/if-archive/games/zcode/dreamhold.z8', } export default function GamesView () { return (

IFDB Games

Choose one or go back.

Tutorial

If you are not familiar with Interactive Fiction, you should start with this tutorial game by Andrew Plotkin:

Interactive Fiction Top 50 of All Time

Every four years , Victor Gijsbers puts together a list of the top 50 IF games of all time. Here is an almost complete and slightly rearranged version of the list from 2019:

    {top2019.map((game) => (
  1. ))}
) }