1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

74 lines
904 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Piplup",
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
393,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
name: {
en: "Peck",
},
damage: 10,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Water Splash",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
},
damage: "20+",
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
description: {
en: "Because it is very proud, it hates accepting food from people. Its thick down guards it from cold."
},
retreat: 1,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card