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

70 lines
1.8 KiB
TypeScript
Raw Permalink 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ハカドッグ",
'zh-tw': "墓揚犬",
th: "ฮากาด็อก"
},
illustrator: "Saya Tsuruta",
rarity: "Uncommon",
category: "Pokemon",
dexId: [972],
hp: 140,
types: ["Psychic"],
description: {
ja: "普段は 墓場で 眠っている。 数いる 犬ポケモンの中でも もっとも 主に 忠実だ。",
'zh-tw': "平時都在墳場裡睡覺。在為數眾多的犬寶可夢中,牠是對主人最為忠實的。",
th: "ปกติจะนอนอยู่ในสุสาน มีความซื่อสัตย์ต่อเจ้านายมากที่สุดในบรรดาโปเกมอนหมาทั้งหมด"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "うしろげり",
'zh-tw': "後踢",
th: "เตะกลับหลัง"
},
damage: 30
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "しにものぐるい",
'zh-tw': "拼命",
th: "สู้แค่ตาย"
},
damage: "80+",
effect: {
ja: "相手のサイドの残り枚数が4枚・2枚なら、120ダメージ追加。",
'zh-tw': "若對手剩餘獎賞卡的張數為4張・2張則增加120點傷害。",
th: "ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามเป็น 4 ใบหรือ 2 ใบ การโจมตีนี้จะเพิ่มแดเมจอีก 120"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "G"
}
export default card