1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

71
data-asia/SV/SV3/003.ts Normal file
View File

@ -0,0 +1,71 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "キレイハナ",
'zh-tw': "美麗花",
th: "คิเรอิฮานะ"
},
illustrator: "sui",
rarity: "Uncommon",
category: "Pokemon",
dexId: [182],
hp: 130,
types: ["Grass"],
description: {
ja: "ときおり キレイハナが 集まって 踊るような しぐさを みせる。 太陽を呼ぶ 儀式と 言われる。",
'zh-tw': "有時美麗花們會聚在一起,做出像是跳舞的動作。據說這是呼喚太陽的儀式。",
th: "บางครั้งคิเรอิฮานะจะมารวมตัวกันและแสดงท่าทางเหมือนเต้นรำให้ดู ว่ากันว่าเป็นพิธีกรรมเพื่อเรียกดวงอาทิตย์"
},
stage: "Stage2",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ねむりごな",
'zh-tw': "催眠粉",
th: "ผงนิทรา"
},
damage: 30,
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]"
}
}, {
cost: ["Grass"],
name: {
ja: "パワフルダンス",
'zh-tw': "強力舞",
th: "พาวเวอร์ฟูลแดนซ์"
},
damage: "90×",
effect: {
ja: "このポケモンについているエネルギーの数ぶんコインを投げ、オモテの数×90ダメージ。",
'zh-tw': "擲與這隻寶可夢身上附加的能量的數量相同次數的硬幣造成正面出現的次數×90點傷害。",
th: "ทอยเหรียญตามจำนวนพลังงานที่ติดอยู่กับโปเกมอนนี้ แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x90"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card