mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
55 lines
980 B
TypeScript
55 lines
980 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paradox Rift"
|
|
|
|
const card: Card = {
|
|
dexId: [233],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Porygon2",
|
|
fr: "Porygon2",
|
|
es: "Porygon2",
|
|
it: "Porygon2",
|
|
pt: "Porygon2",
|
|
de: "Porygon2"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Colorless"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Powered Ball",
|
|
fr: "Boule Puissante",
|
|
es: "Bola Cargada",
|
|
it: "Palla Potenziata",
|
|
pt: "Bola Energizada",
|
|
de: "Angetriebener Ball"
|
|
},
|
|
|
|
effect: {
|
|
en: "Discard an Energy from this Pokémon.",
|
|
fr: "Défaussez une Énergie de ce Pokémon.",
|
|
es: "Descarta 1 Energía de este Pokémon.",
|
|
it: "Scarta un'Energia da questo Pokémon.",
|
|
pt: "Descarte uma Energia deste Pokémon.",
|
|
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |