1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 03:29:17 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

99
cards/xy/g1/RC11.ts Normal file
View File

@ -0,0 +1,99 @@
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: "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.png",
fr: "https://assets.tcgdex.net/fr/xy/g1/RC11/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/g1/RC11/high.png",
fr: "https://assets.tcgdex.net/fr/xy/g1/RC11/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 22,
name: "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