1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

96 lines
1.9 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: "g1-RC11",
localId: "RC11",
// Card informations
name: {
en: "Wobbuffet",
fr: "Qulbutoké",
},
hp: 110,
type: [
Type.PSYCHIC,
],
dexId: 202,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/g1/RC11/low",
fr: "https://assets.tcgdex.net/fr/xy/g1/RC11/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/g1/RC11/high",
fr: "https://assets.tcgdex.net/fr/xy/g1/RC11/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Yukiko Baba",
abilities: [{
id: 821,
type: AbilityType.TALENT,
name: {
en: "Bide Barricade",
fr: "Épreuve d'Endurance",
},
text: {
en: "As long as this Pokémon is your Active Pokémon, each Pokémon in play, in each player's hand, and in each player's discard pile has no Abilities (except for Psychic Pokémon).",
fr: "Tant que ce Pokémon est votre Pokémon Actif, chacun des Pokémon en jeu, dans la main de chaque joueur et dans la pile de défausse de chaque joueur, n'a pas de talent (à part les Pokémon Psychic).",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Psychic Assault",
fr: "Assaut Psychique",
},
text: {
en: "This attack does 10 more damage for each damage counter on your opponent's Active Pokémon.",
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur le Pokémon Actif de votre adversaire.",
},
damage: 10
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.COMMON,
category: Category.POKEMON,
set: {
name: "Generations",
code: "g1"
}
}
export default card