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

68
data-asia/SV/SV3a/079.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "サーフゴーex",
'zh-tw': "賽富豪ex",
th: "ซาร์ฟโกex"
},
illustrator: "takuyoa",
category: "Pokemon",
hp: 260,
types: ["Metal"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "ボーナスコイン",
'zh-tw': "紅利硬幣",
th: "เหรียญโบนัส"
},
effect: {
ja: "自分の番に1回使える。自分の山札を1枚引く。このポケモンがバトル場にいるなら、さらに1枚引く。",
'zh-tw': "在自己的回合時可使用1次。從自己的牌庫抽出1張卡。若這隻寶可夢在戰鬥場上則再抽出1張卡。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา ถ้าโปเกมอนนี้อยู่บนตำแหน่งต่อสู้ จะจั่วการ์ดเพิ่มได้ 1 ใบ"
}
}],
attacks: [{
cost: ["Metal"],
name: {
ja: "ゴールドラッシュ",
'zh-tw': "淘金潮",
th: "โปรยทอง"
},
damage: "50×",
effect: {
ja: "自分の手札から基本エネルギーを好きなだけトラッシュし、その枚数×50ダメージ。",
'zh-tw': "從自己的手牌將任意數量的基本能量卡丟棄造成其張數×50點傷害。",
th: "ทิ้งการ์ดพลังงานพื้นฐานจากบนมือฝ่ายเราตามจำนวนที่ชอบที่ตำแหน่งทิ้งการ์ด แดเมจจะเท่ากับจำนวนการ์ดนั้น x50"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card