1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

78 lines
1.2 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 '../Delta Species'
const card: Card = {
name: {
en: "Kirlia",
fr: "Kirlia",
de: "Kirlia"
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
281,
],
hp: 70,
types: [
"Psychic",
],
evolveFrom: {
en: "Ralts",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Calm Mind",
fr: "Plénitude",
de: "Calm Mind"
},
effect: {
en: "Remove 3 damage counters from Kirlia.",
fr: "Retirez à Kirlia 3 marqueurs de dégât.",
de: "Remove 3 damage counters from Kirlia."
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Psychic Boom",
fr: "Psycho-boom",
de: "Psychic Boom"
},
effect: {
en: "Does 20 damage plus 10 more damage for each Energy attached to the Defending Pokémon.",
fr: "Inflige 20 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Défenseur.",
de: "Does 20 damage plus 10 more damage for each Energy attached to the Defending Pokémon."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card