1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00

Make Each Promos Series Names unique to be clearly identifiable (#15)

* Changed folder and the automatics imports changes

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Fixed SM promos missing the correct set

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-04-29 12:04:12 +02:00
committed by GitHub
parent f73c11d5ef
commit f4af0d04be
571 changed files with 580 additions and 580 deletions

View File

@@ -0,0 +1,73 @@
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",
"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