1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

70 lines
2.0 KiB
TypeScript
Raw Permalink 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ケーシィ",
'zh-tw': "凱西",
th: "เคซี"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Kariya",
dexId: [63],
hp: 40,
types: ["Psychic"],
description: {
ja: "寝ながら 超能力を 操る。 夢の 内容が 使う 力に 影響する。",
'zh-tw': "會一邊睡覺一邊操控超能力。 夢的內容會影響牠使用的能力。",
th: "ขณะที่นอนอยู่ก็ใช้พลังจิตไปด้วย เรื่องในฝันจะส่งผลกระทบกับพลังที่จะใช้"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "テレポーター",
'zh-tw': "瞬間移動者",
th: "เทเลพอร์เตอร์"
},
effect: {
ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。このポケモンと、ついているすべてのカードを、自分の山札にもどして切る。",
'zh-tw': "若這隻寶可夢在戰鬥場上則在自己的回合時可使用1次。將這隻寶可夢與附加的卡全部放回自己的牌庫並重洗。",
th: "ถ้าโปเกมอนนี้อยู่บนตำแหน่งต่อสู้ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา นำโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดฝ่ายเราแล้วสับ"
}
}],
attacks: [{
cost: ["Psychic"],
name: {
ja: "ビーム",
'zh-tw': "光束",
th: "ลำแสง"
},
damage: 10
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card