1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

73 lines
839 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Pelipper",
},
illustrator: "Naoyo Kimura",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
279,
],
types: [
"Water",
],
evolveFrom: {
en: "Wingull",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Water Ball",
},
effect: {
en: "Does 20 damage plus 10 more damage for each Water Energy attached to Pelipper.",
},
damage: "20+",
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Wing Attack",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "+20"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card