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

51 lines
798 B
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 "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "古空棘魚"
},
illustrator: "MAHOU",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "從1億年前就長這個樣子。因為體內積存著厚厚的脂肪,所以能承受深海的水壓。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "化石搜索"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張「稀有化石」卡放置於備戰區。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "衝浪"
},
damage: 40,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card