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

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