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

48
data-asia/SV/SV5M/017.ts Normal file
View File

@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "熔岩蟲",
th: "มักแม็ก"
},
illustrator: "Haru Akasaka",
category: "Pokemon",
hp: 80,
types: ["Fire"],
description: {
'zh-tw': "大量出現在火山地帶。為了尋找溫暖的地方, 會慢吞吞地爬來爬去。",
th: "ปรากฏตัวเป็นจำนวนมากบริเวณพื้นที่ภูเขาไฟคลานไปมาช้า ๆ คอยหาพื้นที่ที่อบอุ่น"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "炙燒",
th: "ลนไฟเผา"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢【灼傷】則增加40點傷害。",
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้] การโจมตีนี้จะเพิ่มแดเมจอีก 40"
},
damage: "10+",
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card