1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

108 lines
1.9 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 = {
dexId: [279],
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",
es: "Wingull",
it: "Wingull",
pt: "Wingull",
de: "Wingull"
},
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Wing Attack",
fr: "Cru-Ailes",
es: "Ataque Ala",
it: "Attacco d'Ala",
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 l'un 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 un'Energia 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
},
stage: "Stage1",
description: {
en: "It is a messenger of the skies, carrying small Pokémon and eggs to safety in its bill."
}
}
export default card