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

56 lines
1.2 KiB
TypeScript
Raw 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: "Charmeleon"
},
illustrator: "GIDORA",
category: "Pokemon",
hp: 100,
types: ["Fire"],
description: {
th: "เมื่อตื่นเต้นจากการต่อสู้จะพ่นเปลวเพลิงร้อนแรงแผดเผารอบข้าง",
id: "Ketika pertarungan membuat semangat Charmeleon bergejolak, Pokémon ini meniupkan api berpijar dan membakar daerah sekelilingnya."
},
stage: "Stage1",
attacks: [{
name: {
th: "เผาไหม้",
id: "Lidah Api"
},
damage: 20,
cost: ["Fire"]
}, {
name: {
th: "เพลิงอัคคี",
id: "Ledakan Api Besar"
},
effect: {
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด",
id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash."
},
damage: 90,
cost: ["Fire", "Fire", "Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card