mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
83 lines
1.9 KiB
TypeScript
83 lines
1.9 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Secret Wonders'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Flygon",
|
|
fr: "Libegon",
|
|
de: "Libelldra"
|
|
},
|
|
illustrator: "Daisuke Ito",
|
|
rarity: "Rare Holo",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
330,
|
|
],
|
|
hp: 120,
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
evolveFrom: {
|
|
en: "Vibrava",
|
|
fr: "Vibraninf",
|
|
},
|
|
stage: "Stage2",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Poke-BODY",
|
|
name: {
|
|
en: "Irritating Buzz",
|
|
fr: "Bourdonnement irritant",
|
|
de: "Lästiges Gebrumm"
|
|
},
|
|
effect: {
|
|
en: "As long as Flygon is your Active Pokémon, put 1 damage counter on each of your opponent's Active Pokémon between turns, excluding Fighting Pokémon.",
|
|
fr: "Tant que Libegon est votre Pokémon Actif, placez 1 marqueur de dégât sur chacun des Pokémon Actifs de votre adversaire entre deux tours, Pokémon Fighting exclus.",
|
|
de: "Solange Libelldra dein Aktives Pokémon ist, lege zwischen Zügen 1 Schadensmarke auf jedes Aktive Pokémon deines Gegners (außer -Pokémon)."
|
|
},
|
|
},
|
|
],
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Sand Sonic",
|
|
fr: "Sable sonique",
|
|
de: "Schmirgelschall"
|
|
},
|
|
effect: {
|
|
en: "If you attach a Fighting Energy card from your hand to Flygon during this turn, this attack does 60 damage plus 20 more damage.",
|
|
fr: "Si vous attachez une carte Énergie Fighting de votre main à Libegon lors de ce tour, cette attaque inflige 60 dégâts plus 20 dégâts supplémentaires.",
|
|
de: "Wenn du in diesem Zug eine -Energiekarte von deiner Hand an Libelldra angelegt hast, fügt dieser Angriff 60 Schadenspunkte plus 20 weitere Schadenspunkte zu."
|
|
},
|
|
damage: "60+",
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+30"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Lightning",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|