1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

69 lines
1.8 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "リザード",
'zh-tw': "火恐龍",
th: "ลิซาร์โดะ",
id: "Charmeleon"
},
illustrator: "Tonji Matsuno",
category: "Pokemon",
dexId: [5],
hp: 90,
types: ["Fire"],
description: {
ja: "戦いで 気持ちが たかぶると 灼熱の 炎を 吹きながら あたりを 燃やしてまわる。",
'zh-tw': "如果牠在戰鬥中亢奮起來,就會噴出灼熱的火焰, 把周圍的東西燒得一乾二淨。",
th: "เมื่อตื่นเต้นจากการต่อสู้จะพ่นเปลวเพลิงร้อนแรงแผดเผารอบข้าง",
id: "Ketika pertarungan membuat semangat Charmeleon bergejolak, Pokémon ini meniupkan api berpijar dan membakar daerah sekelilingnya."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "フレアヴェール",
'zh-tw': "閃焰之幕",
th: "ม่านเพลิง",
id: "Tudung Berkobar"
},
effect: {
ja: "このポケモンは、相手のポケモンが使うワザの効果を受けない。",
'zh-tw': "這隻寶可夢不會受到對手的寶可夢使用招式的效果的影響。",
th: "โปเกมอนนี้ จะไม่ได้รับเอฟเฟกต์ของท่าต่อสู้ที่โปเกมอนฝ่ายตรงข้ามใช้",
id: "Pokémon ini tidak menerima efek akibat serangan yang digunakan oleh Pokémon lawan."
}
}],
attacks: [{
cost: ["Fire", "Fire"],
name: {
ja: "かえん",
'zh-tw': "烈焰",
th: "เผาไหม้",
id: "Lidah Api"
},
damage: 50
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card