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

77 lines
1003 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 '../Dragon Frontiers'
const card: Card = {
name: {
en: "Kirlia δ",
fr: "Kirlia δ ESPÈCES DELTA",
de: "Kirlia"
},
illustrator: "Kyoko Umemoto",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
281,
],
hp: 70,
types: [
"Fire",
],
evolveFrom: {
en: "Ralts",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Flickering Flames",
fr: "Flammes vacillantes",
de: "Züngelnde Flammen"
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
de: "Das Verteidigende Pokémon schläft jetzt."
},
damage: 20,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Smack",
fr: "Claque",
de: "Klatscher"
},
damage: 40,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card