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

57 lines
1.1 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 "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "古空棘魚",
ja: "ジーランス"
},
illustrator: "ryoma uratsuka",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
description: {
'zh-tw': "如岩石般堅硬的鱗片以及裝滿了油脂的鰾囊, 讓牠能承受深海的水壓。",
ja: "岩のように 硬い ウロコと 脂の 詰まった 浮袋で 深海の 水圧に 耐える。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "深潛",
ja: "ふかもぐり"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張基本能量卡在給對手看過後加入手牌。",
ja: "自分のトラッシュから基本エネルギーを2枚まで選び、相手に見せて、手札に加える。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "撞擊",
ja: "たいあたり"
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Uncommon",
dexId: [369]
}
export default card