1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

66 lines
670 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Piplup",
fr: "Tiplouf",
},
illustrator: "Hajime Kusajima",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
393,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Pound",
fr: "Écras'face",
},
damage: 10,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Surf",
fr: "Surf",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
retreat: 1,
}
export default card