1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

48 lines
1.0 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "ฮีทโรตอม",
id: "Rotom Panas"
},
illustrator: "Scav",
category: "Pokemon",
hp: 90,
types: ["Fire"],
description: {
th: "หากเตาอบไมโครเวฟทำงานไม่ปกติ โรตอมที่อยู่ข้างในก็จะอ่อนแอลงด้วยเช่นกัน",
id: "Jika ovennya berada dalam kondisi tidak bagus, Rotom yang ada di dalamnya akan kehilangan semangat."
},
stage: "Basic",
attacks: [{
name: {
th: "ฮีทแท็กเกิล",
id: "Heat Tackle"
},
effect: {
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 40 ด้วย",
id: "Pokémon ini juga menerima kerusakan sejumlah 40."
},
damage: 100,
cost: ["Fire", "Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card