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

100 lines
1.7 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: "pl2-68",
localId: 68,
// Card informations
name: {
en: "Koffing",
fr: "Smogo Niv. 22",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 109,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/68/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/68/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/68/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/68/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 22,
name: "Yukiko Baba"
},
attacks: [{
cost: [
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é.",
},
},{
cost: [
Type.PSYCHIC
],
name: {
en: "Gas Bomb",
fr: "Bombe à gaz",
},
text: {
en: "Koffing does 30 damage to itself, and don't apply Weakness and Resistance to this damage.",
fr: "Smogo s'inflige 30 dégâts. N'appliquez pas la Faiblesse et la Résistance à ces dégâts.",
},
damage: 30
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+10"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card