mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
67 lines
853 B
TypeScript
67 lines
853 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../HGSS Black Star Promos'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Porygon2",
|
||
},
|
||
illustrator: "TOKIYA",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
233,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
evolveFrom: {
|
||
en: "Porygon",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Shortcut",
|
||
},
|
||
effect: {
|
||
en: "The Retreat Cost for each Porygon, Porygon2, and Porygon-Z you have in play is Colorless less.",
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Reckless Charge",
|
||
},
|
||
effect: {
|
||
en: "Porygon2 does 10 damage to itself.",
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|