mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-08 10:17:50 +00:00
106 lines
1.8 KiB
TypeScript
106 lines
1.8 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: "bw8-133",
|
||
localId: 133,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Cobalion-EX",
|
||
fr: "Cobaltium-EX",
|
||
},
|
||
|
||
hp: 180,
|
||
|
||
type: [
|
||
Type.METAL,
|
||
],
|
||
|
||
dexId: 638,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw8/133/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw8/133/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw8/133/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw8/133/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.EX,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 1,
|
||
name: "Ryo Ueda"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.METAL
|
||
],
|
||
name: {
|
||
en: "Righteous Edge",
|
||
fr: "Lame Vertueuse",
|
||
},
|
||
text: {
|
||
en: "Discard a Special Energy attached to the Defending Pokémon.",
|
||
fr: "Défaussez une Énergie spéciale attachée au Pokémon Défenseur.",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.METAL,
|
||
Type.METAL,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Steel Bullet",
|
||
fr: "Balle d'Acier",
|
||
},
|
||
text: {
|
||
en: "This attack's damage isn't affected by Weakness, Resistance, or any other effects on the Defending Pokémon.",
|
||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Défenseur.",
|
||
},
|
||
damage: 100
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RareUltra,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Plasma Storm",
|
||
code: "bw8"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|