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

69 lines
1.5 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "キルリア",
'zh-tw': "奇魯莉安",
id: "Kirlia"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
dexId: [281],
hp: 90,
types: ["Psychic"],
description: {
ja: "サイコパワーを 操り まわりの 空間を ねじ曲げることで 未来を 見通すことができる。",
'zh-tw': "能夠操縱精神力量來扭曲周圍的空間, 讓自己看見未來。",
id: "Dengan membengkokkan dimensi ruang di sekitarnya menggunakan kekuatan psikokinesis, Kirlia dapat melihat masa depan."
},
stage: "Stage1",
attacks: [{
cost: ["Psychic", "Colorless"],
name: {
ja: "マジカルショット",
'zh-tw': "魔法射擊",
id: "Magical Shot"
},
damage: 30
}, {
cost: ["Psychic", "Psychic", "Colorless"],
name: {
ja: "サイコキネシス",
'zh-tw': "精神強念",
id: "Psikis"
},
damage: "60+",
effect: {
ja: "相手のバトルポケモンについているエネルギーの数×20ダメージ追加。",
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×20點傷害。",
id: "Kerusakan yang diberikan bertambah sejumlah 20 untuk tiap Energi yang dikenakan pada Pokémon Bertarung lawan."
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card