1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-10 07:09:54 +00:00

77 lines
1.0 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Platinum'
const card: Card = {
name: {
en: "Prinplup",
fr: "Prinplouf",
de: "Pliprin"
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
394,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Piplup",
fr: "Tiplouf",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Surf",
fr: "Surf",
de: "Surf"
},
damage: 30,
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Bubblebeam",
fr: "Bulles d'O",
de: "Bubblebeam"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "+20"
},
],
retreat: 1,
}
export default card