1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

57 lines
1.4 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 "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ケーシィ",
'zh-tw': "凱西",
th: "เคซี",
id: "Abra"
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
dexId: [63],
hp: 50,
types: ["Psychic"],
description: {
ja: "眠ったまま テレポート できる。 眠りが 深いほど 離れた 場所に 移動する という。",
'zh-tw': "就算在睡夢中也能使用瞬間移動。據說當牠睡得越熟, 瞬間移動的距離就會越遠。",
th: "สามารถเทเลพอร์ทได้ระหว่างที่หลับอยู่ ว่ากันว่ายิ่งหลับลึกก็จะยิ่งเคลื่อนตัวไปยังสถานที่ห่างไกลมากขึ้น",
id: "Abra dapat melakukan teleportasi sambil tidur. Dikatakan bahwa makin nyenyak tidurnya, makin jauh pula jarak teleportasinya."
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "サイコショット",
'zh-tw': "精神射擊",
th: "ไซโคช็อต",
id: "Psyshot"
},
damage: 20
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card