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

57
data-asia/SV/SV5K/093.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "ウガツホムラex",
'zh-tw': "破空焰ex",
th: "เพลิงทะลวงex"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 230,
types: ["Fire"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Fire", "Colorless"],
name: {
ja: "ヒートブラスト",
'zh-tw': "高溫爆破",
th: "ฮีทบลาสต์"
},
damage: 60
}, {
cost: ["Fire", "Fire", "Colorless"],
name: {
ja: "れっかばくしん",
'zh-tw': "烈火爆進",
th: "ไฟลุกบุกทะลวง"
},
damage: 260,
effect: {
ja: "このワザを使ったなら、このポケモンは、バトル場をはなれるまで「れっかばくしん」が使えない。",
'zh-tw': "若使用了這個招式,則這隻寶可夢離開戰鬥場前無法使用「烈火爆進」。",
th: "ถ้าใช้ท่าต่อสู้นี้แล้ว โปเกมอนนี้ จะใช้ [ไฟลุกบุกทะลวง] ไม่ได้จนกว่าจะออกจากตำแหน่งต่อสู้"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card