# HG changeset patch # User Robert McIntyre # Date 1320238423 25200 # Node ID 3f26fc68ffbc33616470a69c9dfcac9fe3c7467f # Parent ff9655688ddbde45230c655d6d0c7b4791c12fea give better descriptions to the tables diff -r ff9655688ddb -r 3f26fc68ffbc org/types.org --- a/org/types.org Wed Nov 02 05:41:49 2011 -0700 +++ b/org/types.org Wed Nov 02 05:53:43 2011 -0700 @@ -49,9 +49,9 @@ Here are the the definitions of the two type systems. -* Pokemon Table Data +* The Pok\eacute{}mon Type Systems -#+caption: The rows are attack types, while the columns are defense types. To see the multiplier for a pokemon attack against a certain type, follow the row for the attack type to the column of the defending type. +** Generation II Type System #+label: pokemon-matchups #+tblname: pokemon-table-gen-two | | normal | fire | water | electric | grass | ice | fighting | poison | ground | flying | psychic | bug | rock | ghost | dragon | dark | steel | @@ -74,9 +74,12 @@ | dark | 1 | 1 | 1 | 1 | 1 | 1 | .5 | 1 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | .5 | .5 | | steel | 1 | .5 | .5 | .5 | 1 | 2 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 1 | 1 | .5 | -#+caption: this is the old table from generation 1. The differences are: dark and ghost are missing, Bus is super against Poison, Poison is super against Bug, Bug is regularly effective against Ghost, and Ice is normally effective against Fire. Ghost is not effective against psychic. -#+label: pokemon-matchups-gen-1 -#+tblname: pokemon-table-gen-one +The rows are attack types, while the columns are defense types. To +see the multiplier for a pokemon attack against a certain type, follow +the row for the attack type to the column of the defending type. + +** Generation I Type System +#+label: pokemon-matchups-gen-1 +tblname: pokemon-table-gen-one | | normal | fire | water | electric | grass | ice | fighting | poison | ground | flying | psychic | bug | rock | ghost | dragon | |----------+--------+------+-------+----------+-------+-----+----------+--------+--------+--------+---------+-----+------+-------+--------| | normal | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | .5 | 0 | 1 | @@ -95,6 +98,21 @@ | ghost | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 2 | 1 | | dragon | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 2 | + +This is the old table from Generation I. The differences from +Generation II are: + - Dark and Steel are missing. + - Bug is super-effective against Poison. + - Poison is super-effective against Bug. + - Bug is regularly effective against Ghost (instead of + super-effective like in Generation II). + - Ice is normally effective against Fire, (it's not-very-effective in + Generation II). + - Ghost is completely ineffective against Psychic. This is considered + to be a programning glitch. + + + * Representing the Data After creating the Pok\eacute{}mon types namespace, we store the table