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

53 lines
993 B
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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ケーシィ",
'zh-tw': "凱西",
id: "Abra"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
dexId: [63],
hp: 50,
types: ["Psychic"],
description: {
ja: "眠ったまま テレポート できる。 眠りが 深いほど 離れた 場所に 移動する という。",
'zh-tw': "就算在睡夢中也能使用瞬間移動。據說當牠睡得越熟, 瞬間移動的距離就會越遠。",
id: "Abra dapat melakukan teleportasi sambil tidur. Konon, makin nyenyak tidurnya, makin jauh jarak teleportasinya."
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "サイコショット",
'zh-tw': "精神射擊",
id: "Psyshot"
},
damage: 20
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card