mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 13:59:55 +00:00
45 lines
697 B
TypeScript
45 lines
697 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Mow Rotom"
|
|
},
|
|
|
|
illustrator: "kawayoo",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Grass"],
|
|
|
|
description: {
|
|
en: "The lawn mower is one of the household appliances that led to the development of the Rotom Dex."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Energy Cutoff"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Grass", "Colorless"],
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, discard a random Energy from your opponent's Active Pokémon."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card
|