mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 03:29:51 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
57
data-asia/S/S9a/040.ts
Normal file
57
data-asia/S/S9a/040.ts
Normal file
@ -0,0 +1,57 @@
|
||||
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
|
Reference in New Issue
Block a user