mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
101 lines
2.0 KiB
TypeScript
101 lines
2.0 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "bwp-BW53",
|
||
localId: "BW53",
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Flygon",
|
||
fr: "Libégon",
|
||
},
|
||
|
||
hp: 140,
|
||
|
||
type: [
|
||
Type.DRAGON,
|
||
],
|
||
|
||
dexId: 330,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bwp/BW53/low",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW53/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bwp/BW53/high",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW53/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Vibrava",
|
||
fr: "Vibraninf",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: "BERUBURI",
|
||
|
||
abilities: [{
|
||
id: 265,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Sand Slammer",
|
||
fr: "Prison de Sable",
|
||
},
|
||
text: {
|
||
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: [
|
||
Type.GRASS,
|
||
Type.FIGHTING,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Flying Beatdown",
|
||
fr: "Dérouillée Volante",
|
||
},
|
||
text: {
|
||
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: Type.DRAGON,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "BW Black Star Promos",
|
||
code: "bwp"
|
||
}
|
||
}
|
||
|
||
export default card
|