1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

92 lines
2.3 KiB
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 '../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 cant be used if Rotom is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez échanger lune 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 opponents Pokémon. This attack does 20 damage for each Energy attached to that Pokémon. This attacks damage isnt affected by Weakness or Resistance.",
fr: "Choisissez lun 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