﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet
	version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns="http://www.w3.org/1999/xhtml"
	xmlns:am="http://www.ani-mayhem.com/"
	xmlns:db="http://www.ani-mayhem.com/database">
	<xsl:output method="text" encoding="utf-8" media-type="text/plain;charset=utf-8"/>
	<xsl:template match="/">
		<xsl:text>Ani-Mayhem Online&#0013;</xsl:text>
		<xsl:text>Database&#0013;</xsl:text>
		<xsl:text>The complete list of Ani-Mayhem cards.&#0013;</xsl:text>
		<xsl:text>&#0013;</xsl:text>
		<xsl:text>Name					Type		Rarity		Series			Set</xsl:text>
		<xsl:apply-templates/>
		<xsl:text>&#0013;</xsl:text>
		<xsl:text>&#0013;Ani-Mayhem Database (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, Ani-Mayhem Online</xsl:text>
		<xsl:text>&#0013;Ani-Mayhem (c) 1995, 1996, 1997, AnimeCafe, Inc., Pioneer Entertainment</xsl:text>
		<xsl:text>&#0013;Armitage III (c) 1995, AIC, Pioneer LDC, Inc.</xsl:text>
		<xsl:text>&#0013;Bubblegum Crisis (c) 1987, 1988, 1989, 1990, Artmic, Inc., Youmex, Inc.</xsl:text>
		<xsl:text>&#0013;Bubblegum Crisis (c) 1991, 1992, 1993, 1994, 1995, AnimEigo, Inc.</xsl:text>
		<xsl:text>&#0013;Dominion Tank Police (c) 1989, Masamune Shirow, Hakusensha Agent 21, Toshiba Video Softwares, Inc., Central Park Media</xsl:text>
		<xsl:text>&#0013;Dragon Ball Z (c) 1997, BIRD STUDIO, SHUEISHA, TOEI ANIMATION</xsl:text>
		<xsl:text>&#0013;El Hazard: The Magnificient World (c) 1995, AIC, Pioneer LDC, Inc.</xsl:text>
		<xsl:text>&#0013;Oh My Goddess! (c) 1995, Kosuke Fujishima, Kodansha, AnimEigo, Inc.</xsl:text>
		<xsl:text>&#0013;Phantom Quest Corp. (c) 1994, Madhouse, Pioneer LDC, Inc.</xsl:text>
		<xsl:text>&#0013;Project A-ko (c) 1986, Soeishinsha, Final-Nishijima</xsl:text>
		<xsl:text>&#0013;Project A-ko (c) 1992, Central Park Media, Island World Communications</xsl:text>
		<xsl:text>&#0013;Ranma 1/2 (c) 1995, Rumiko Takahashi, Shogakukan, Inc., Kitty, Fuji TV, Viz Communications, Inc.</xsl:text>
		<xsl:text>&#0013;Tenchi Muyo! (c) 1992, AIC, Pioneer LDC, Inc.</xsl:text>
	</xsl:template>
	<xsl:template match="am:ani-mayhem">
		<xsl:apply-templates select="am:card"/>
	</xsl:template>
	<xsl:template match="am:card">
		<xsl:text>&#0013;</xsl:text>
		<xsl:apply-templates/>
	</xsl:template>
	<xsl:template match="db:Name">
		<xsl:apply-templates/>
		<xsl:choose>
			<xsl:when test="string-length() &gt;= '32'"><xsl:text>&#0009;</xsl:text></xsl:when>
			<xsl:when test="string-length() &gt;= '24'"><xsl:text>&#0009;&#0009;</xsl:text></xsl:when>
			<xsl:when test="string-length() &gt;= '16'"><xsl:text>&#0009;&#0009;&#0009;</xsl:text></xsl:when>
			<xsl:when test="string-length() &gt;= '08'"><xsl:text>&#0009;&#0009;&#0009;&#0009;</xsl:text></xsl:when>
			<xsl:when test="string-length() &gt;= '00'"><xsl:text>&#0009;&#0009;&#0009;&#0009;&#0009;</xsl:text></xsl:when>
		</xsl:choose>
	</xsl:template>
	<xsl:template match="db:Type | db:Rarity">
		<xsl:apply-templates/>
		<xsl:choose>
			<xsl:when test="string-length() &gt;= '08'"><xsl:text>&#0009;</xsl:text></xsl:when>
			<xsl:when test="string-length() &gt;= '00'"><xsl:text>&#0009;&#0009;</xsl:text></xsl:when>
		</xsl:choose>
	</xsl:template>
	<xsl:template match="db:Series">
		<xsl:apply-templates/>
		<xsl:choose>
			<xsl:when test="string-length() &gt;= '16'"><xsl:text>&#0009;</xsl:text></xsl:when>
			<xsl:when test="string-length() &gt;= '08'"><xsl:text>&#0009;&#0009;</xsl:text></xsl:when>
			<xsl:when test="string-length() &gt;= '00'"><xsl:text>&#0009;&#0009;&#0009;</xsl:text></xsl:when>
		</xsl:choose>
	</xsl:template>
	<xsl:template match="db:Set">
		<xsl:apply-templates/>
	</xsl:template>
</xsl:stylesheet>