1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 05:09:53 +00:00

40 lines
596 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Wash Rotom"
},
illustrator: "Saboteri",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Water"],
description: {
en: "This Rotom has entered a washing machine.<br />It nods with satisfaction after it floods the<br />surrounding area."
},
stage: "Basic",
attacks: [{
name: {
en: "Wave Splash"
},
damage: 30,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card