mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
48 lines
1.0 KiB
TypeScript
48 lines
1.0 KiB
TypeScript
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 |