mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-29 15:29:18 +00:00
* Fix Triumphant Light card data and formatting Fix card data including attack damage modifiers, Palkia and Dalgia Origin forme names and incorrect weakness for Giratina. Also remove unnecessary HTML formatting from card descriptions * Remove HTML anchor tags around referenced Pokemon names --------- Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
44 lines
655 B
TypeScript
44 lines
655 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 Koffing from your deck onto your Bench."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2,
|
|
rarity: "One Diamond"
|
|
}
|
|
|
|
export default card
|