1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

115
cards/bw/bwp/BW96.ts Normal file
View File

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