mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 13:22:15 +00:00
116 lines
2.1 KiB
TypeScript
116 lines
2.1 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "bwp-BW96",
|
||
localId: "BW96",
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Tornadus-EX",
|
||
fr: "Boréas ex",
|
||
},
|
||
|
||
hp: 170,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
dexId: 641,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bwp/BW96/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW96/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bwp/BW96/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW96/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.EX,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 1,
|
||
name: "Ryo Ueda"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Blow Through",
|
||
fr: "Grosse Bourrasque",
|
||
},
|
||
text: {
|
||
en: "If there is any Stadium card in play, this attack does 30 more damage.",
|
||
fr: "S'il y a une carte Stade en jeu, cette attaque inflige 30 dégâts supplémentaires.",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Power Blast",
|
||
fr: "Violente Déflagration",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If tails, discard an Energy attached to this Pokémon.",
|
||
fr: "Lancez une pièce. Si c'est pile, défaussez une Énergie attachée à ce Pokémon.",
|
||
},
|
||
damage: 100
|
||
},{
|
||
name: {
|
||
en: "Pokémon EX Rule",
|
||
fr: "Règle pour les Pokémon ex",
|
||
},
|
||
text: {
|
||
en: "When a Pokémon-EX has been Knocked Out, your opponent takes 2 Prize cards.",
|
||
fr: "Lorsqu'un Pokémon-EX est mis K.O., l'adversaire récupère 2 cartes Récompense.",
|
||
},
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.FIGHTING,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "BW Black Star Promos",
|
||
code: "bwp"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|