1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,87 @@
import { Card } from '../../../interfaces'
import Set from '../Rising Rivals'
const card: Card = {
name: {
en: "Mow Rotom",
fr: "Motisma Tonte Niv. 46",
},
illustrator: "Yusuke Ohmura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
479,
],
hp: 90,
types: [
"Lightning",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Mow Shift",
fr: "Mutation tonte",
},
effect: {
en: "Once during your turn (before your attack), you may use this power. Mow Rotom's type is Grass until the end of your turn.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez utiliser ce pouvoir. Motisma Tonte est de type Grass jusqu'à la fin de votre tour.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
},
damage: 20,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Mow Down",
fr: "Faucher",
},
effect: {
en: "Flip a coin. If heads, discard an Energy card attached to each of your opponent's Pokémon.",
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée à chacun des Pokémon de votre adversaire.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Darkness",
value: "+20"
},
],
resistances: [
{
type: "Colorless",
value: "-20"
},
],
retreat: 2,
}
export default card