mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
* feat: Add A1a Signed-off-by: Avior <git@avior.me> * fix: test failing Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
43 lines
731 B
TypeScript
43 lines
731 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<br />garbage dumps, seeking out the fumes of raw,<br />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 |