1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

44 lines
663 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Porygon2"
},
illustrator: "sowsow",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
evolveFrom: {
en: "Porygon"
},
description: {
en: "This is a Porygon that was updated with special<br />data. Porygon2 develops itself by learning about<br />many different subjects all on its own."
},
stage: "Stage1",
attacks: [{
name: {
en: "Sharpen"
},
damage: 30,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card