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

40 lines
611 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 "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "水水獺"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
'zh-tw': "棲息在合眾地區的寶可夢。 會將腹部貝殼作為兵刃斬擊敵手, 因而吾人將此貝殼命名為扇貝貝刀。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "敲擊"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card