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

69
data-asia/SV/SV1S/049.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "イダイナキバex",
'zh-tw': "雄偉牙ex",
th: "งายักษ์ex",
id: "Great Tusk ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 250,
types: ["Fighting"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Fighting"],
name: {
ja: "がんばんくずし",
'zh-tw': "岩盤崩裂",
th: "ทำลายฐานราก",
id: "Peruntuh Batuan Dasar"
},
damage: 40,
effect: {
ja: "場に出ているスタジアムをトラッシュする。",
'zh-tw': "將場上的競技場卡丟棄。",
th: "ทิ้งการ์ดสเตเดียมที่วางอยู่บนกระดานที่ตำแหน่งทิ้งการ์ด",
id: "Buang Stadium yang ada di Arena ke Trash."
}
}, {
cost: ["Fighting", "Fighting", "Fighting"],
name: {
ja: "ギガントタスク",
'zh-tw': "巨烈長牙",
th: "ปฏิบัติการใหญ่",
id: "Gigant Tusk"
},
damage: 250,
effect: {
ja: "このポケモンにも50ダメージ。",
'zh-tw': "這隻寶可夢也受到50點傷害。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 50 ด้วย",
id: "Pokémon ini juga menerima kerusakan sejumlah 50."
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card