1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

40 lines
581 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "小炭仔"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "大約400年前在煤礦坑中被人們發現。身體絕大部分的成分都和煤炭相同。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "衝撞"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card