mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* fix: Added most of the translations Some translations aren't available or are user made without a card image depicted Signed-off-by: Avior <github@avior.me> * fix: Add sets French translations Signed-off-by: Avior <github@avior.me>
77 lines
1.0 KiB
TypeScript
77 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 1'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Beautifly",
|
|
fr: "Charmillon"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
267,
|
|
],
|
|
|
|
hp: 100,
|
|
|
|
types: [
|
|
"Grass",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Silcoon",
|
|
},
|
|
|
|
stage: "Stage2",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Grass",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Blot",
|
|
fr: "Pâté"
|
|
},
|
|
effect: {
|
|
en: "Remove 1 damage counter from Beautifly.",
|
|
fr: "Retirez à Charmillon 1 marqueur de dégât."
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Whirlwind",
|
|
fr: "Cyclone"
|
|
},
|
|
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."
|
|
},
|
|
damage: 40,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Fire"
|
|
},
|
|
],
|
|
|
|
retreat: 0
|
|
}
|
|
|
|
export default card
|