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

74 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../BW Black Star Promos'
const card: Card = {
name: {
en: "Flygon",
fr: "Libégon",
},
illustrator: "BERUBURI",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
330,
],
hp: 140,
types: [
"Dragon",
],
evolveFrom: {
en: "Vibrava",
fr: "Vibraninf",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Sand Slammer",
fr: "Prison de Sable",
},
effect: {
en: "At any time between turns, if this Pokémon is your Active Pokémon, put 1 damage counter on each of your opponent's Pokémon.",
fr: "N'importe quand entre chaque tour, si ce Pokémon est votre Pokémon Actif, placez 1 marqueur de dégâts sur chacun des Pokémon de votre adversaire.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Flying Beatdown",
fr: "Dérouillée Volante",
},
effect: {
en: "You may discard a Grass Energy and a Fighting Energy attached to this Pokémon. If you do, the Defending Pokémon is now Paralyzed.",
fr: "Vous pouvez défausser une Énergie Grass et une Énergie Fighting attachées à ce Pokémon. Dans ce cas, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 1,
}
export default card