1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

87 lines
1.8 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",
},
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",
},
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.",
},
},
],
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Plasma Arrow",
fr: "Flèche plasma",
},
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.",
},
},
],
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