mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
87 lines
1.2 KiB
TypeScript
87 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unbroken Bonds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Porygon2",
|
||
fr: "Porygon2",
|
||
es: "Porygon2",
|
||
it: "Porygon2",
|
||
pt: "Porygon2",
|
||
de: "Porygon2"
|
||
},
|
||
illustrator: "sowsow",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
233,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
evolveFrom: {
|
||
en: "Porygon",
|
||
fr: "Porygon",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Double Draw",
|
||
fr: "Double Pioche",
|
||
es: "Roba Doble",
|
||
it: "Pescata Doppia",
|
||
pt: "Compra Dupla",
|
||
de: "Zweifachzug"
|
||
},
|
||
effect: {
|
||
en: "Draw 2 cards.",
|
||
fr: "Piochez 2 cartes.",
|
||
es: "Roba 2 cartas.",
|
||
it: "Pesca due carte.",
|
||
pt: "Compre 2 cartas.",
|
||
de: "Ziehe 2 Karten."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Spinning Attack",
|
||
fr: "Attaque Tournante",
|
||
es: "Ataque Giratorio",
|
||
it: "Attacco Rotante",
|
||
pt: "Ataque Giratório",
|
||
de: "Rundumangriff"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|