mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-05 05:09:53 +00:00
65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Kirlia",
|
|
fr: "Kirlia",
|
|
es: "Kirlia",
|
|
it: "Kirlia",
|
|
de: "Kirlia",
|
|
'pt-br': "Kirlia",
|
|
ko: "킬리아"
|
|
},
|
|
|
|
illustrator: "sowsow",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Psychic"],
|
|
stage: "Stage1",
|
|
|
|
evolveFrom: {
|
|
en: "Ralts"
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Psychic", "Colorless"],
|
|
|
|
name: {
|
|
en: "Smack",
|
|
fr: "Claque",
|
|
es: "Palmetazo",
|
|
it: "Schiaffo",
|
|
de: "Klatscher",
|
|
'pt-br': "Estalo",
|
|
ko: "수벽치기"
|
|
},
|
|
|
|
damage: "30"
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Darkness",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "Two Diamond",
|
|
|
|
description: {
|
|
en: "It has a psychic power that enables it to distort the space around it and see into the future.",
|
|
fr: "Grâce à ses pouvoirs psychiques, il peut distordre\nl'espace-temps et ainsi voir l'avenir.",
|
|
es: "Con sus poderes psíquicos puede deformar\nel espacio a su alrededor y predecir el futuro.",
|
|
it: "Sfruttando i suoi poteri psichici, può distorcere\nlo spazio circostante per prevedere l'avvenire.",
|
|
de: "Seine Psycho-Kräfte erlauben es ihm,\nden Raum um sich selbst zu verformen\nund so in die Zukunft zu sehen.",
|
|
'pt-br': "Possui um poder psíquico que lhe permite distorcer\no espaço ao seu redor e ver o futuro.",
|
|
ko: "사이코 파워를 조작해\n주변의 공간을 일그러뜨려\n미래를 내다볼 수 있다."
|
|
},
|
|
|
|
boosters: ["mewtwo"]
|
|
}
|
|
|
|
export default card
|