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

67 lines
1.6 KiB
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 "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ヒトカゲ",
'zh-tw': "小火龍",
th: "ฮิโตคาเงะ",
id: "Charmander"
},
illustrator: "miki kudo",
category: "Pokemon",
dexId: [4],
hp: 70,
types: ["Fire"],
description: {
ja: "生まれたときから しっぽに 炎が ともっている。 炎が 消えたとき その 命は 終わって しまう。",
'zh-tw': "從出生時開始尾巴上就有火焰在燃燒。火焰熄滅時,生命也會結束。",
th: "มีหางที่ติดไฟตั้งแต่เกิด หากไฟดับนั่นหมายถึงการจบชีวิต",
id: "Sejak lahir, api menyala di ekor Charmander. Hidupnya berakhir saat api tersebut padam."
},
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
ja: "まるやけ",
'zh-tw': "全部燒光",
th: "เผาเตียน",
id: "Bakar Bulat-bulat"
},
effect: {
ja: "場に出ているスタジアムをトラッシュする。",
'zh-tw': "將場上的競技場卡丟棄。",
th: "ทิ้งการ์ดสเตเดียมที่วางอยู่บนกระดานที่ตำแหน่งทิ้งการ์ด",
id: "Buang Stadium yang ada di Arena ke Trash."
}
}, {
cost: ["Fire", "Fire"],
name: {
ja: "ひをはく",
'zh-tw': "吐火",
th: "พ่นอัคคี",
id: "Memuntahkan Api"
},
damage: 30
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card