1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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

55
data-asia/SV/SV5a/012.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "マグマッグ",
'zh-tw': "熔岩蟲",
th: "มักแม็ก"
},
illustrator: "Gapao",
rarity: "Common",
category: "Pokemon",
dexId: [218],
hp: 80,
types: ["Fire"],
description: {
ja: "火山が 活発だった 太古の 世界では 今よりも たくさんの マグマッグが 暮らしていたという。",
'zh-tw': "聽說在火山活動頻繁的 太古時代,世界上生活著 比現在更多的熔岩蟲。",
th: "ว่ากันว่าในโลกสมัยโบราณที่ภูเขาไฟยังคงคุกรุ่นนั้น มีมักแม็กอาศัยอยู่เป็นจำนวนมากมายยิ่งกว่าที่มีในปัจจุบัน"
},
stage: "Basic",
attacks: [{
cost: ["Fire", "Colorless"],
name: {
ja: "あついマグマ",
'zh-tw': "熾熱熔岩",
th: "แม็กมาร้อน"
},
damage: 20,
effect: {
ja: "相手のバトルポケモンをやけどにする。",
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card