1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

73 lines
860 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 3'
const card: Card = {
name: {
en: "Forretress",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
205,
],
hp: 70,
types: [
"Grass",
],
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tackle",
},
damage: 20,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Toxic",
},
effect: {
en: "The Defending Pokémon is now Poisoned. Put 2 damage counters instead of 1 on the Defending Pokémon between turns.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire"
},
],
retreat: 2,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card