1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 20:39:55 +00:00

44 lines
706 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Heat Rotom"
},
illustrator: "Kedamahadaitai Yawarakai",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Fire"],
description: {
en: "If the convection microwave oven is not working<br />properly, then the Rotom inhabiting it will<br />become lethargic."
},
stage: "Basic",
attacks: [{
name: {
en: "Heat Breath"
},
damage: 30,
cost: ["Fire", "Colorless"],
effect: {
en: "Flip a coin. If heads, this attack does 30 more damage."
}
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 1
}
export default card