1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 20:32:11 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

100 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 '@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: "bw10-35",
localId: 35,
// Card informations
name: {
en: "Drifblim",
fr: "Grodrive",
},
hp: 100,
type: [
Type.PSYCHIC,
],
dexId: 426,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw10/35/low",
fr: "https://assets.tcgdex.net/fr/bw/bw10/35/low",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw10/35/high",
fr: "https://assets.tcgdex.net/fr/bw/bw10/35/high",
},
},
evolveFrom: {
en: "Drifloon",
fr: "Baudrive",
},
tags: [
Tag.STAGE1,
],
illustrator: "Akira Komayama",
abilities: [{
id: 912,
type: AbilityType.TALENT,
name: {
en: "Drifting Balloon",
fr: "Ballon Flottant",
},
text: {
en: "This Pokémon's attacks cost Colorless less for each of your opponent's Team Plasma Pokémon in play.",
fr: "Les attaques de ce Pokémon coûtent Colorless de moins pour chaque Pokémon de la Team Plasma de votre adversaire en jeu.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Derail",
fr: "Déraillement",
},
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: 70
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Plasma Blast",
code: "bw10"
}
}
export default card