1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

47 lines
703 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: "Mitsuhiro Arita",
category: "Pokemon",
hp: 100,
types: ["Fighting"],
description: {
'zh-tw': "能在體內製造煤炭。在過去,伽勒爾人曾經用牠身上掉下來的煤炭生活。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "衝撞"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "高溫重壓"
},
damage: 60,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card