mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-08 10:17:50 +00:00
79 lines
1.4 KiB
TypeScript
79 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Majestic Dawn'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Rotom",
|
|
fr: "Motisma",
|
|
de: "Rotom"
|
|
},
|
|
illustrator: "Kagemaru Himeno",
|
|
rarity: "Rare Holo",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
479,
|
|
],
|
|
hp: 60,
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
en: "Dual Trans",
|
|
fr: "Double trans",
|
|
de: "Doppel-Transfer"
|
|
},
|
|
effect: {
|
|
en: "Search your discard pile for up to 2 basic Energy cards and attach them to 1 of your Pokémon.",
|
|
fr: "Choisissez dans votre pile de défausse jusqu'à 2 cartes Énergie et attachez-les à 1 de vos Pokémon.",
|
|
de: "Durchsuche deinen Ablagestapel nach bis zu 2 Basis-Energiekarten und lege sie an 1 deiner Pokémon an."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Reflect Energy",
|
|
fr: "Renvoi d'énergie",
|
|
de: "Energiereflektion"
|
|
},
|
|
effect: {
|
|
en: "Move an Energy card attached to Rotom to 1 of your Benched Pokémon.",
|
|
fr: "Déplacez une carte Énergie attachée à Motisma sur 1 des Pokémon de votre Banc.",
|
|
de: "Entferne 1 an Rotom angelegte Energiekarte und lege sie an 1 Pokémon auf deiner Bank an."
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Darkness",
|
|
value: "+20"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Colorless",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|