mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
73 lines
944 B
TypeScript
73 lines
944 B
TypeScript
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
|