1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

106 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "bw9-98",
localId: 98,
// Card informations
name: {
en: "Tornadus-EX",
fr: "Boréas-EX",
},
hp: 180,
type: [
Type.COLORLESS,
],
dexId: 641,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw9/98/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw9/98/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw9/98/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw9/98/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 38,
name: "Eske Yoshinob"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Windfall",
fr: "Rafale de Vent",
},
text: {
en: "Shuffle your hand into your deck. Then, draw 6 cards.",
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 6 cartes.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Jet Blast",
fr: "Rafale d'Explosions",
},
text: {
en: "Does 30 more damage for each Plasma Energy attached to this Pokémon.",
fr: "Inflige 30 dégâts supplémentaires pour chaque Énergie Plasma attachée à ce Pokémon.",
},
damage: 60
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Plasma Freeze",
code: "bw9"
}
}
export default card