1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

83 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Neo Revelation'
const card: Card = {
name: {
en: "Farfetch'd",
fr: "Canarticho",
de: "Porenta"
},
illustrator: "Miki Tanaka",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
83,
],
hp: 50,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Gust",
fr: "Tornade",
de: "Gust"
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Leek Jab",
fr: "Coud'poireau",
de: "Leek Jab"
},
effect: {
en: "This attack can't be used during your next turn. (Benching Farfetch'd ends this effect.)",
fr: "Cette attaque ne peut pas être utilisée à nouveau durant votre prochain tour. (Envoyer Canarticho sur le Banc met fin à cet effet.)",
de: "This attack can´t be used during your next turn. (Benching Farfetch´d ends this effect.)"
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
description: {
fr: "Si quelqu'un tente de s'introduire dans son jardin de poireaux, il utilise son arme pour le faire partir."
}
}
export default card