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

61 lines
1.9 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 風速狗",
th: "ฮิซุย วินดี",
ja: "ヒスイ ウインディ"
},
illustrator: "Oswaldo KATO",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "將猛烈燃燒的火焰纏繞在牙齒上撲向獵物。 雖然體型很大,卻能以靈巧的假動作戲弄敵手, 那姿態就像是舞蹈一般。",
th: "เอาเปลวเพลิงลุกโชนคลุมเขี้ยวไว้แล้วกัดไม่ปล่อย มีรูปร่างใหญ่โต แต่ท่วงท่าที่หันเหความสนใจได้อย่างคล่องแคล่วเพื่อหลอกล่อศัตรูนั้นประดุจดังการแสดงร่ายรำ",
ja: "燃え盛る炎 牙に纏わせ 食らい付く。 体躯 大柄なれど 陽動 鮮やかなりて 敵 翻弄せしむる姿 演舞の如し。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "城破突圍",
th: "จนตรอก",
ja: "はっぽうやぶれ"
},
effect: {
'zh-tw': "若自己1張手牌都沒有則增加150點傷害。",
th: "ถ้าบนมือฝ่ายเราไม่มีการ์ดเลยแม้แต่ 1 ใบ การโจมตีนี้จะเพิ่มแดเมจอีก 150",
ja: "自分の手札が1枚もないなら、150ダメージ追加。"
},
damage: "10"
}, {
name: {
'zh-tw': "銳利之牙",
th: "เขี้ยวคม",
ja: "するどいキバ"
},
damage: 100,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
dexId: [59]
}
export default card