mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
62 lines
728 B
TypeScript
62 lines
728 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolutions'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Surfing Pikachu",
|
||
fr: "Pikachu Surfeur",
|
||
es: "Pikachu Surf",
|
||
it: "Pikachu Surf",
|
||
pt: "Pikachu Surfista",
|
||
de: "Surfendes Pikachu"
|
||
},
|
||
illustrator: "Toshinao Aoki",
|
||
rarity: "Secret Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
25,
|
||
],
|
||
hp: 50,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Surf",
|
||
fr: "Surf",
|
||
es: "Surf",
|
||
it: "Surf",
|
||
pt: "Surfe",
|
||
de: "Surfer"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|