mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
70
data-asia/SV/SV3/054.ts
Normal file
70
data-asia/SV/SV3/054.ts
Normal file
@ -0,0 +1,70 @@
|
||||
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
|
Reference in New Issue
Block a user