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

73 lines
944 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 '../Power Keepers'
const card: Card = {
name: {
en: "Ralts",
fr: "Tarsal",
de: "Trasla"
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
280,
],
hp: 50,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Slap",
fr: "Gifle",
de: "Hieb"
},
damage: 10,
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Teleportation Burst",
fr: "Téléportation explosive",
de: "Blitz-Teleportation"
},
effect: {
en: "Switch Ralts with 1 of your Benched Pokémon.",
fr: "Échangez Tarsal avec 1 des Pokémon de votre Banc.",
de: "Tausche Trasla gegen 1 Pokémon auf deiner Bank aus."
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card