1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

71 lines
2.2 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 "../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