mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
101 lines
1.8 KiB
TypeScript
101 lines
1.8 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-BW86",
|
||
localId: "BW86",
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Genesect",
|
||
fr: "Genesect",
|
||
},
|
||
|
||
hp: 100,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 649,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bwp/BW86/low",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW86/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bwp/BW86/high",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW86/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "5ban Graphics",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Signal Beam",
|
||
fr: "Rayon Signal",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus.",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.GRASS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Overdrive Smash",
|
||
fr: "Boost Atomisant",
|
||
},
|
||
text: {
|
||
en: "During your next turn, this Pokémon's Overdrive Smash attack does 60 more damage (before applying Weakness and Resistance).",
|
||
fr: "Pendant votre prochain tour, l'attaque Boost Atomisant de ce Pokémon inflige 60 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.COMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "BW Black Star Promos",
|
||
code: "bwp"
|
||
}
|
||
}
|
||
|
||
export default card
|