1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,80 @@
import { Card } from '../../../interfaces'
import Set from '../Celestial Storm'
const card: Card = {
name: {
en: "Pelipper",
fr: "Bekipan",
},
illustrator: "Shigenori Negishi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
279,
],
hp: 120,
types: [
"Colorless",
],
evolveFrom: {
en: "Wingull",
fr: "Goélise",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Firefighting",
fr: "Anti-Flammes",
},
effect: {
en: "Discard a Fire Energy from your opponent's Active Pokémon.",
fr: "Défaussez une Énergie Fire du Pokémon Actif de votre adversaire.",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Water Pulse",
fr: "Vibraqua",
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card