1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

78 lines
1.5 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Secret Wonders'
const card: Card = {
name: {
en: "Flygon",
fr: "Libegon",
},
illustrator: "Daisuke Ito",
rarity: "Rare",
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",
},
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.",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Sand Sonic",
fr: "Sable sonique",
},
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.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Water",
value: "+30"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
}
export default card