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

77 lines
1.0 KiB
TypeScript
Raw Permalink 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 '../Emerald'
const card: Card = {
name: {
en: "Kirlia",
fr: "Kirlia",
de: "Kirlia"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
281,
],
hp: 70,
types: [
"Psychic",
],
evolveFrom: {
en: "Ralts",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Psypunch",
fr: "Coup de poing psy",
de: "Psypunch"
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Mind Shock",
fr: "Choc cérébral",
de: "Mind Shock"
},
effect: {
en: "This attack's damage isn't affected by Weakness or Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
de: "This attack's damage isn't affected by Weakness or Resistance."
},
damage: 40,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card