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

64
data-asia/SV/SV4M/040.ts Normal file
View File

@ -0,0 +1,64 @@
import { Card } from "../../../interfaces"
import Set from "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "ストリンダーex",
'zh-tw': "顫弦蠑螈ex",
th: "สตรินเดอร์ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 260,
types: ["Fighting"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Lightning", "Lightning"],
name: {
ja: "ノックハンマー",
'zh-tw': "敲擊之錘",
th: "น็อกแฮมเมอร์"
},
damage: 70,
effect: {
ja: "相手の山札を上から1枚トラッシュする。",
'zh-tw': "將對手的牌庫上方1張卡丟棄。",
th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด"
}
}, {
cost: ["Lightning", "Lightning", "Lightning"],
name: {
ja: "ガイアパンク",
'zh-tw': "蓋亞龐克",
th: "ไกอาพังก์"
},
damage: 270,
effect: {
ja: "自分の場のポケモンについているエネルギーを3個選び、トラッシュする。",
'zh-tw': "選擇3個自己的場上寶可夢身上附加的【雷】能量將其丟棄。",
th: "เลือกพลังงาน[สายฟ้า]ที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายเรา 3 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card