1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

76 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 '../FireRed & LeafGreen'
const card: Card = {
name: {
en: "Porygon",
fr: "Porygon",
de: "Porygon"
},
illustrator: "Tomoaki Imakuni",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
137,
],
hp: 50,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Data Retrieval",
fr: "Récupération d'informations",
de: "Data Retrieval"
},
effect: {
en: "If you have less than 4 cards in your hand, draw cards until you have 4 cards in your hand.",
fr: "Si vous avez moins de 4 cartes dans votre main, piochez des cartes jusqu'à ce que vous ayez 4 cartes en main.",
de: "If you have less than 4 cards in your hand, draw cards until you have 4 cards in your hand."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Confuse Ray",
fr: "Onde folie",
de: "Confuse Ray"
},
effect: {
en: "The Defending Pokémon is now Confused.",
fr: "Le Pokémon Défenseur est maintenant Confus.",
de: "The Defending Pokémon is now Confused."
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card