mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-27 18:39:54 +00:00
47 lines
915 B
TypeScript
47 lines
915 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paldean Fates"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Heat Rotom",
|
|
fr: "Motisma Chaleur",
|
|
es: "Rotom Calor",
|
|
it: "Rotom Calore",
|
|
pt: "Rotom Calor"
|
|
},
|
|
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Fire"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fire", "Fire"],
|
|
|
|
name: {
|
|
en: "Heat Tackle",
|
|
fr: "Charge Énergétique",
|
|
es: "Placaje Ardiente",
|
|
it: "Calorazione",
|
|
pt: "Golpe de Colisão Aquecido"
|
|
},
|
|
|
|
effect: {
|
|
en: "This Pokémon also does 40 damage to itself.",
|
|
fr: "Ce Pokémon s'inflige aussi 40 dégâts.",
|
|
es: "Este Pokémon también se hace 40 puntos de daño a sí mismo.",
|
|
it: "Questo Pokémon infligge anche 40 danni a se stesso.",
|
|
pt: "Este Pokémon também causa 40 pontos de dano a si mesmo."
|
|
},
|
|
|
|
damage: 100
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |