1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19: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

58
data-asia/S/S12/071.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "哈克龍",
th: "ฮาคุริว",
ja: "ハクリュー"
},
illustrator: "Shinya Komatsu",
category: "Pokemon",
hp: 100,
types: ["Dragon"],
description: {
'zh-tw': "棲息在清澈的海洋或湖泊。能利用操縱天氣的力量, 乘著風升上天空。",
th: "อาศัยอยู่ตามทะเลหรือทะเลสาบที่สวยสะอาด ใช้พลังควบคุมสภาพอากาศขี่ลมแล้วบินขึ้นท้องฟ้า",
ja: "きれいな 海や 湖に 棲む。 天候を 操る 力で 風に 乗り 空へと 昇る。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "緊束",
th: "รัด",
ja: "まきつく"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
th: "ทอยเหรียญ 1 ครั้ง ถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]",
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "衝浪",
th: "โต้คลื่น",
ja: "なみのり"
},
damage: 80,
cost: ["Water", "Lightning", "Colorless"]
}],
retreat: 2,
regulationMark: "F",
rarity: "Uncommon",
dexId: [148]
}
export default card