1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

103 lines
1.8 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: "dp4-31",
localId: 31,
// Card informations
name: {
en: "Weezing",
fr: "Smogogo",
},
hp: 80,
type: [
Type.PSYCHIC,
],
dexId: 110,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp4/31/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp4/31/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp4/31/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp4/31/high.png",
},
},
evolveFrom: {
en: "Koffing",
fr: "Smogo",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
abilities: [{
id: 434,
type: AbilityType.POKEBODY,
name: {
en: "Toxic Virus",
fr: "Virus toxik",
},
text: {
en: "At any time between turns, each player puts 1 more damage counter on his or her Poisoned Pokémon.",
fr: "N'importe quand entre deux tours, chaque joueur place 1 marqueur de dégât supplémentaire sur ses Pokémon Empoisonnés.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Offensive Gas",
fr: "Gaz offensif",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused and Poisoned.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus et Empoisonné.",
},
damage: 30
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+20"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Great Encounters",
code: "dp4"
}
}
export default card