1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
2024-12-19 11:52:36 +01:00

72 lines
886 B
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 '../Dragon Frontiers'
const card: Card = {
name: {
en: "Ralts δ",
fr: "Tarsal δ",
de: "Trasla"
},
illustrator: "Kyoko Umemoto",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
280,
],
hp: 50,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Calm Mind",
fr: "Plénitude",
de: "Gedankengut"
},
effect: {
en: "Remove 2 damage counters from Ralts.",
fr: "Retirez à Tarsal 2 marqueurs de dégât.",
de: "Entferne 2 Schadensmarken von Trasla."
},
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Will-o'-the-wisp",
fr: "Feu follet",
de: "Irrlicht"
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card