1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

69
data-asia/SV/SV4K/041.ts Normal file
View File

@ -0,0 +1,69 @@
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