mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-30 03:19:55 +00:00
44 lines
722 B
TypeScript
44 lines
722 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Mythical Island"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Koffing"
|
|
},
|
|
|
|
illustrator: "Naoyo Kimura",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Darkness"],
|
|
|
|
description: {
|
|
en: "Its body is full of poisonous gas. It floats into garbage dumps, seeking out the fumes of raw, rotting trash."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Division"
|
|
},
|
|
|
|
cost: ["Darkness"],
|
|
|
|
effect: {
|
|
en: "Put 1 random <a class=\"localized-string__link\" href=\"/pokemon/koffing/\">Koffing</a> from your deck onto your Bench."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2,
|
|
rarity: "One Diamond"
|
|
}
|
|
|
|
export default card
|