mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 12:09:53 +00:00
96 lines
1.8 KiB
TypeScript
96 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Diamond & Pearl'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Beautifly",
|
|
fr: "Charmillon",
|
|
de: "Papinella"
|
|
},
|
|
|
|
illustrator: "Atsuko Nishida",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
267,
|
|
],
|
|
|
|
hp: 100,
|
|
|
|
types: [
|
|
"Grass",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Silcoon",
|
|
fr: "Armulys",
|
|
},
|
|
|
|
stage: "Stage2",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Whirlwind",
|
|
fr: "Cyclone",
|
|
de: "Wirbelwind"
|
|
},
|
|
effect: {
|
|
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
|
|
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 des Pokémon de son Banc.",
|
|
de: "Dein Gegner tauscht das Verteidigende Pokémon gegen 1 Pokémon auf seiner Bank aus."
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Grass",
|
|
"Grass",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Giga Drain",
|
|
fr: "Giga-sangsue",
|
|
de: "Gigasauger"
|
|
},
|
|
effect: {
|
|
en: "After your attack, remove from Beautifly the number of damage counters equal to the damage you did to the Defending Pokémon.",
|
|
fr: "Après votre attaque, retirez à Charmillon autant de marqueurs de dégât que vous avez infligé de dégâts au Pokémon Défenseur.",
|
|
de: "Entferne nach deinem Angriff Schadensmarken von Papinella entsprechend der Höhe der Schadenspunkte, die dem Verteidigenden Pokémon zugefügt wurden."
|
|
},
|
|
damage: 50,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
description: {
|
|
fr: "Il est très agressif. Il pique sa proie avec son long museau étroit et absorbe sa vitalité."
|
|
}
|
|
}
|
|
|
|
export default card
|