mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 13:22:15 +00:00
102 lines
1.7 KiB
TypeScript
102 lines
1.7 KiB
TypeScript
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: "xy10-28",
|
||
localId: 28,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Weezing",
|
||
fr: "Smogogo",
|
||
},
|
||
|
||
hp: 110,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 110,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy10/28/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy10/28/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy10/28/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy10/28/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Koffing",
|
||
fr: "Smogo",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "Shin Nagasawa",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Balloon Bomb",
|
||
fr: "Bombe Ballon",
|
||
},
|
||
text: {
|
||
en: "Flip 2 coins. For each heads, discard 2 cards from the top of your opponent's deck.",
|
||
fr: "Lancez 2 pièces. Pour chaque côté face, défaussez 2 cartes du dessus du deck de votre adversaire.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Thick Liquid",
|
||
fr: "Liquide Épais",
|
||
},
|
||
text: {
|
||
en: "Both Active Pokémon are now Confused and Poisoned.",
|
||
fr: "Les deux Pokémon Actifs sont maintenant Confus et Empoisonnés.",
|
||
},
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.UNCOMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Fates Collide",
|
||
code: "xy10"
|
||
}
|
||
}
|
||
|
||
export default card
|