mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 07:12:08 +00:00
52 lines
578 B
TypeScript
52 lines
578 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 1'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Surskit",
|
|
},
|
|
|
|
illustrator: "Kagemaru Himeno",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
283,
|
|
],
|
|
|
|
hp: 50,
|
|
|
|
types: [
|
|
"Water",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Water",
|
|
],
|
|
name: {
|
|
en: "Bubble",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
|
},
|
|
damage: 10,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Lightning"
|
|
},
|
|
],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card
|