1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

70
data-asia/SV/SV2a/005.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "リザード",
'zh-tw': "火恐龍",
th: "ลิซาร์โดะ",
id: "Charmeleon"
},
illustrator: "GIDORA",
rarity: "Uncommon",
category: "Pokemon",
dexId: [5],
hp: 100,
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",
attacks: [{
cost: ["Fire"],
name: {
ja: "かえん",
'zh-tw': "烈焰",
th: "เผาไหม้",
id: "Lidah Api"
},
damage: 20
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "だいもんじ",
'zh-tw': "大字爆炎",
th: "เพลิงอัคคี",
id: "Ledakan Api Besar"
},
damage: 90,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด",
id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card