1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

69 lines
2.1 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 "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "チヲハウハネ",
'zh-tw': "爬地翅",
th: "ปีกไล้พสุธา"
},
illustrator: "Anesaki Dynamic",
rarity: "Uncommon",
category: "Pokemon",
dexId: [988],
hp: 140,
types: ["Fighting"],
description: {
ja: "古い 本で チヲハウハネと 紹介されている 生物に 似た点が ある 謎のポケモン。",
'zh-tw': "與古老書籍裡介紹的一種叫做爬地翅的生物有著 相似點的神秘寶可夢。",
th: "โปเกมอนปริศนาที่มีบางจุดคล้ายคลึงกับสิ่งมีชีวิตที่ถูกเรียกว่าปีกไล้พสุธาในหนังสือเก่าแก่เล่มหนึ่ง"
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "ふみならす",
'zh-tw': "踩落",
th: "กระทืบ"
},
effect: {
ja: "相手の山札を上から1枚トラッシュする。",
'zh-tw': "將對手的牌庫上方1張卡丟棄。",
th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด"
}
}, {
cost: ["Fighting", "Fighting"],
name: {
ja: "ねっしょうどとう",
'zh-tw': "燙傷怒濤",
th: "แผลไหม้โหมกระหน่ำ"
},
damage: 120,
effect: {
ja: "このポケモンにも90ダメージ。相手のバトルポケモンをやけどにする。",
'zh-tw': "這隻寶可夢也受到90點傷害。將對手的戰鬥寶可夢【灼傷】。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 90 ด้วย ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card