1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

97 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
name: {
en: "Pelipper",
fr: "Bekipan",
es: "Pelipper",
it: "Pelipper",
pt: "Pelipper",
de: "Pelipper"
},
illustrator: "Eri Yamaki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Wingull",
fr: "Goélise"
},
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Wing Attack",
fr: "Cru-Ailes",
es: "Ataque Ala",
it: "Attacco dAla",
pt: "Ataque de Asa",
de: "Flügelschlag"
},
damage: 50,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Power Cyclone",
fr: "Cyclone dÉnergie",
es: "Ciclón Poderoso",
it: "Ciclone Potente",
pt: "Ciclone Poderoso",
de: "Kraftwirbel"
},
effect: {
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
fr: "Déplacez une Énergie de ce Pokémon vers lun de vos Pokémon de Banc.",
es: "Mueve 1 Energía de este Pokémon a 1 de tus Pokémon en Banca.",
it: "Sposta unEnergia da questo Pokémon a uno di quelli nella tua panchina.",
pt: "Mova 1 Energia deste Pokémon para 1 dos seus Pokémon no Banco.",
de: "Verschiebe 1 Energie von diesem Pokémon auf 1 Pokémon auf deiner Bank."
},
damage: 110,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 2,
hp: 120,
types: ["Water"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card