1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

68 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "サーフゴーex",
'zh-tw': "賽富豪ex",
th: "ซาร์ฟโกex"
},
illustrator: "Akira Komayama",
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