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

52 lines
826 B
TypeScript
Raw Permalink 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 "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "獵斑魚"
},
illustrator: "otumami",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
'zh-tw': "棲息在深海中。傳說如果有獵斑魚被沖上沙灘,就會有不好的事發生。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "妨礙一擊者"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上對手的「一擊」寶可夢使用招式所需的能量增加1個【無】能量。"
}
}],
attacks: [{
name: {
'zh-tw': "深咬"
},
damage: 80,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card