1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

87 lines
1.4 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: "dp1-41",
localId: 41,
// Card informations
name: {
en: "Wobbuffet",
fr: "Qulbutoké",
},
hp: 80,
type: [
Type.PSYCHIC,
],
dexId: 202,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp1/41/low",
fr: "https://assets.tcgdex.net/fr/dp/dp1/41/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp1/41/high",
fr: "https://assets.tcgdex.net/fr/dp/dp1/41/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Countercharge",
fr: "Contre-charge",
},
text: {
en: "Flip a coin. If heads, move all damage counters from Wobbuffet to the Defending Pokémon.",
fr: "Lancez une pièce. Si c'est face, déplacez tous les marqueurs de dégât de Qulbutoké sur le Pokémon Défenseur.",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+20"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Diamond & Pearl",
code: "dp1"
}
}
export default card