mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
92 lines
2.3 KiB
TypeScript
92 lines
2.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Undaunted'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Rotom",
|
||
fr: "Motisma",
|
||
de: "Rotom"
|
||
},
|
||
|
||
illustrator: "MAHOU",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
479,
|
||
],
|
||
|
||
hp: 60,
|
||
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-POWER",
|
||
name: {
|
||
en: "Mischievous Trick",
|
||
fr: "Sournoiserie",
|
||
de: "Spitzbube"
|
||
},
|
||
effect: {
|
||
en: "Once during your turn (before your attack), you may switch 1 of your face-down Prize cards with the top card of your deck. This power can’t be used if Rotom is affected by a Special Condition.",
|
||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez échanger l’une de vos cartes Récompense qui est face cachée avec la carte du dessus de votre deck. Ce pouvoir ne peut pas être utilisé si Motisma est affecté par un État Spécial.",
|
||
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du 1 deiner mit der Bildseite nach unten liegenden Preiskarten gegen die oberste Karte deines Decks austauschen. Diese Poké-Power kann nicht benutzt werden, falls Rotom von einem Speziellen Zustand betroffen ist."
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Plasma Arrow",
|
||
fr: "Flèche plasma",
|
||
de: "Plasmapfeil"
|
||
},
|
||
effect: {
|
||
en: "Choose 1 of your opponent’s Pokémon. This attack does 20 damage for each Energy attached to that Pokémon. This attack’s damage isn’t affected by Weakness or Resistance.",
|
||
fr: "Choisissez l’un des Pokémon de votre adversaire. Cette attaque inflige 20 dégâts pour chaque carte Énergie attachée à ce Pokémon. Les dégâts infligés par cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
|
||
de: "Wähle ein Pokémon deines Gegners. Dieser Angriff fügt 20 Schadenspunkte für jede an das gewählte Pokémon angelegte Energie zu."
|
||
},
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Colorless",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
en: "Research continues on this Pokémon, which could be the power source of a unique motor."
|
||
},
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|