1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 12:59:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Boundaries Crossed'
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",
"Fightning",
"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