package baf.guide;
import java.util.*;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class Genre extends Item {

  public static Genre forName(String name) throws IOException {
    return new Genre("/genres/"+nameToUrl(name));
  }

  public Genre(String path) throws IOException {
    super(path);
  }

  public String getTag() {
    return ":g";
  }

  public String getDescription() {
    return name+" adventure games";
  }

}
